/* PosUp by Sabrimex - Shared Styles */

:root {
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --text-body: #424245;
    --background: #fff;
    --background-secondary: #f5f5f7;
    --background-dark: #1d1d1f;
    --border-color: #d2d2d7;
    --accent-color: #7C3AED;
    --accent-hover: #6D28D9;
    --accent-light: #EDE9FE;
    --success-color: #10B981;
    --gradient-start: #7C3AED;
    --gradient-end: #EC4899;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-body);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================
   Navigation
   ================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.nav-logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--accent-color);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 980px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

/* ================================
   Hero Section
   ================================ */
.hero {
    padding: 160px 24px 100px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, var(--background-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 22px;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.hero .last-updated {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    font-size: 14px;
    color: var(--text-secondary);
}

.company-badge strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ================================
   Buttons
   ================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--background);
    color: var(--text-primary);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--background-secondary);
    border-color: var(--text-secondary);
}

.btn-white {
    background: #fff;
    color: var(--accent-color);
    padding: 16px 32px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ================================
   Section Styles
   ================================ */
section {
    padding: 100px 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-header p {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================
   Content Container (for text pages)
   ================================ */
.container {
    max-width: 740px;
    margin: 0 auto;
    padding: 80px 22px;
}

.section-content {
    margin-bottom: 64px;
}

.section-content:last-child {
    margin-bottom: 0;
}

.section-content h2 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.004em;
    line-height: 1.125;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.section-content p {
    font-size: 17px;
    line-height: 1.52947;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: var(--text-body);
    margin-bottom: 20px;
}

.section-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.section-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.52947;
    color: var(--text-body);
}

.section-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.section-content li strong {
    font-weight: 600;
}

/* ================================
   Info Card
   ================================ */
.info-card {
    background: var(--background-secondary);
    border-radius: 18px;
    padding: 32px;
    margin: 32px 0;
}

.info-card h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.info-card p {
    margin-bottom: 12px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card ul {
    margin-bottom: 0;
}

/* ================================
   Contact Card
   ================================ */
.contact-card {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    color: #fff;
    margin-top: 48px;
}

.contact-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.contact-card a {
    display: inline-block;
    background: #fff;
    color: var(--accent-color);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-card a:hover {
    background: #f5f5f7;
    transform: scale(1.02);
}

/* ================================
   Features Grid
   ================================ */
#features {
    background: var(--background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--background-secondary);
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 10px;
    padding-left: 0;
}

.feature-list li::before {
    content: "✓";
    color: var(--success-color);
    font-weight: 700;
    flex-shrink: 0;
    position: static;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
}

/* ================================
   Capabilities Grid
   ================================ */
#capabilities {
    background: var(--background-secondary);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-item {
    background: var(--background);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-2px);
}

.capability-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.capability-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.capability-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ================================
   Technology Grid
   ================================ */
#technology {
    background: var(--background-dark);
    color: #fff;
}

#technology .section-header h2 {
    color: #fff;
}

#technology .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(124, 58, 237, 0.5);
}

.tech-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.tech-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ================================
   Use Cases Grid
   ================================ */
#use-cases {
    background: var(--background);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.use-case-card {
    background: linear-gradient(135deg, var(--accent-light) 0%, #FDF4FF 100%);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.use-case-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.use-case-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================
   About Section
   ================================ */
#about {
    background: var(--background-secondary);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 24px;
}

.sabrimex-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.sabrimex-badge .logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.sabrimex-badge .sabrimex-logo {
    height: 140px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.sabrimex-badge .tagline {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ================================
   CTA Section
   ================================ */
#cta {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    text-align: center;
    color: #fff;
}

#cta h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

#cta p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   Footer
   ================================ */
footer {
    background: var(--background-dark);
    padding: 60px 24px 40px;
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer-sabrimex-logo {
    height: 100px;
    width: auto;
    margin: 16px 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-links-section {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
    padding-left: 0;
}

.footer-column li::before {
    display: none;
}

.footer-column a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer simple (for content pages) */
.footer-simple {
    text-align: center;
    padding: 48px 22px;
}

.footer-simple .footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-simple .footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-simple .footer-links a:hover {
    color: var(--accent-color);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 140px 20px 80px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-value {
        font-size: 36px;
    }

    section {
        padding: 80px 20px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .section-content h2 {
        font-size: 28px;
    }

    .container {
        padding: 60px 22px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    #cta h2 {
        font-size: 36px;
    }

    .contact-card {
        padding: 32px 24px;
    }

    .contact-card h3 {
        font-size: 24px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-links-section {
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 34px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .section-content h2 {
        font-size: 24px;
    }

    .feature-card {
        padding: 28px;
    }

    .info-card {
        padding: 24px;
        border-radius: 14px;
    }

    .sabrimex-badge {
        flex-direction: column;
        text-align: center;
    }

    .sabrimex-badge .tagline {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 12px;
        margin-left: 0;
    }

    .footer-simple .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

/* ================================
   Animations
   ================================ */
@media (prefers-reduced-motion: no-preference) {
    .feature-card, .capability-item, .tech-item, .use-case-card {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .feature-card:nth-child(1) { animation-delay: 0.1s; }
    .feature-card:nth-child(2) { animation-delay: 0.2s; }
    .feature-card:nth-child(3) { animation-delay: 0.3s; }
    .feature-card:nth-child(4) { animation-delay: 0.4s; }
    .feature-card:nth-child(5) { animation-delay: 0.5s; }
    .feature-card:nth-child(6) { animation-delay: 0.6s; }

    .section-content {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .section-content:nth-child(1) { animation-delay: 0.1s; }
    .section-content:nth-child(2) { animation-delay: 0.2s; }
    .section-content:nth-child(3) { animation-delay: 0.3s; }
    .section-content:nth-child(4) { animation-delay: 0.4s; }
    .section-content:nth-child(5) { animation-delay: 0.5s; }
    .section-content:nth-child(6) { animation-delay: 0.6s; }
    .section-content:nth-child(7) { animation-delay: 0.7s; }
    .section-content:nth-child(8) { animation-delay: 0.8s; }
    .section-content:nth-child(9) { animation-delay: 0.9s; }
    .section-content:nth-child(10) { animation-delay: 1.0s; }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ================================
   Sabrimex Home Specifics
   ================================ */

.home-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); /* Cleaner, more corporate look for wholesale */
    color: var(--text-primary);
}

.home-hero h1 span {
    background: linear-gradient(135deg, #0F172A, #334155); /* Darker slate for wholesale */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-banner {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

.trust-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-body);
}

.trust-icon {
    font-size: 24px;
}

.section-bg-white {
    background-color: #fff;
}

/* ================================
   Technology Bridge Section
   ================================ */
.technology-bridge {
    background: #111827; /* Dark background for contrast */
    color: #fff;
    overflow: hidden;
}

.bridge-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.bridge-text {
    flex: 1;
    min-width: 300px;
}

.bridge-text h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 24px;
}

.bridge-text p {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 32px;
}

.bridge-list {
    list-style: none;
    margin-bottom: 40px;
}

.bridge-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 18px;
    color: #e2e8f0;
}

.bridge-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.bridge-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.app-icon-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
}

.app-icon-placeholder span {
    color: #fff;
}

/* ================================
   Support Page
   ================================ */
.support-hero {
    padding: 100px 24px 60px;
    min-height: auto;
}

.form-container input,
.form-container textarea {
    transition: border-color 0.2s;
}

.form-container input:focus,
.form-container textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-light);
}
