/* ================================================
   QSIGN — DESIGN SYSTEM & STYLES
   ================================================ */

/* ----- Reset & Base ----- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1629;
    --bg-card: rgba(15, 23, 42, 0.6);
    --bg-card-hover: rgba(20, 30, 55, 0.8);
    --border: rgba(96, 165, 250, 0.08);
    --border-hover: rgba(96, 165, 250, 0.2);
    --text-primary: #f1f5f9;
    --text-secondary: rgba(203, 213, 225, 0.7);
    --text-muted: rgba(148, 163, 184, 0.5);
    --accent-blue: #60A5FA;
    --accent-indigo: #818CF8;
    --accent-green: #10B981;
    --gradient-primary: linear-gradient(135deg, #60A5FA 0%, #818CF8 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(96,165,250,0.1) 0%, rgba(129,140,248,0.1) 100%);
    /* Spacing */
    --section-padding: clamp(80px, 12vw, 140px);
    --container-max: 1200px;
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ----- Utility ----- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----- Ambient Background ----- */
.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    will-change: transform;
}

.ambient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(96,165,250,0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float-orb 20s ease-in-out infinite;
}

.ambient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(129,140,248,0.06) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: float-orb 25s ease-in-out infinite reverse;
}

.ambient-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16,185,129,0.04) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-orb 30s ease-in-out infinite;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 40px) scale(0.95); }
    75% { transform: translate(30px, 20px) scale(1.02); }
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.4s var(--ease-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(96, 165, 250, 0.06);
}

.nav-link-cta {
    background: var(--gradient-subtle);
    color: var(--accent-blue);
    border: 1px solid rgba(96, 165, 250, 0.15);
    margin-left: 8px;
}

.nav-link-cta:hover {
    background: rgba(96, 165, 250, 0.12);
    border-color: rgba(96, 165, 250, 0.3);
    color: var(--accent-blue);
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================
   HERO
   ================================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 120px 24px 80px;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-green);
    margin-bottom: 28px;
    letter-spacing: 0.01em;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 24px rgba(96, 165, 250, 0.25), 0 1px 3px rgba(96, 165, 250, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(96, 165, 250, 0.35), 0 2px 6px rgba(96, 165, 250, 0.15);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-ghost {
    background: rgba(255,255,255,0.04);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    color: var(--text-primary);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

/* Trust bar */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item svg {
    color: var(--accent-blue);
    opacity: 0.6;
}

.trust-divider {
    width: 1px;
    height: 16px;
    background: var(--border);
}

/* Hero visual (SVG illustration) */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-doc-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-doc-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}

/* Signature stamp animation */
.signature-stamp {
    animation: stamp-pulse 3s ease-in-out infinite;
}

@keyframes stamp-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Float badges */
.float-badge {
    animation: float-up-down 4s ease-in-out infinite;
}

.float-badge-2 {
    animation: float-up-down 5s ease-in-out infinite 1s;
}

@keyframes float-up-down {
    0%, 100% { transform: translate(340px, 60px) translateY(0); }
    50% { transform: translate(340px, 60px) translateY(-8px); }
}

.float-badge-2 {
    animation: float-up-down-2 5s ease-in-out infinite 1s;
}

@keyframes float-up-down-2 {
    0%, 100% { transform: translate(350px, 160px) translateY(0); }
    50% { transform: translate(350px, 160px) translateY(-6px); }
}

.float-badge-3 {
    animation: float-up-down-3 4.5s ease-in-out infinite 0.5s;
}

@keyframes float-up-down-3 {
    0%, 100% { transform: translate(355px, 260px) translateY(0); }
    50% { transform: translate(355px, 260px) translateY(-7px); }
}

/* Connection lines */
.connection-line {
    animation: dash-flow 2s linear infinite;
}

@keyframes dash-flow {
    to { stroke-dashoffset: -14; }
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--gradient-subtle);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================================
   FEATURES
   ================================================ */
.features {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    position: relative;
    padding: 36px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.5s var(--ease-out);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 0%, rgba(96,165,250,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
    border-radius: inherit;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2), 0 0 0 1px rgba(96,165,250,0.1);
}

.feature-card:hover::before {
    opacity: 1;
    background: radial-gradient(circle 200px at var(--glow-x, 50%) var(--glow-y, 50%), rgba(96,165,250,0.08) 0%, transparent 70%);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-it-works {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
}

.steps-container {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 260px;
    max-width: 340px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.05em;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin: 0 auto 16px;
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.step-connector {
    position: absolute;
    right: -30px;
    top: 100px;
    z-index: 2;
}

.step:last-child .step-connector {
    display: none;
}

/* ================================================
   COMPLIANCE
   ================================================ */
.compliance {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.compliance-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

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

.compliance-badges {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s var(--ease-smooth);
}

.compliance-badge:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.compliance-badge div {
    display: flex;
    flex-direction: column;
}

.compliance-badge strong {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.compliance-badge span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Compliance visual (EU stars) */
.compliance-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.compliance-image-slot {
    width: 100%;
    max-width: 380px;
    min-height: 120px;
    border-radius: 16px;
}

.compliance-svg {
    width: 100%;
    max-width: 380px;
    height: auto;
}

.eu-stars {
    animation: rotate-slow 60s linear infinite;
    transform-origin: 200px 170px;
}

@keyframes rotate-slow {
    to { transform: rotate(360deg); }
}

.orbit-dot {
    animation: orbit 12s linear infinite;
    transform-origin: 200px 170px;
}

.orbit-dot-2 {
    animation: orbit 18s linear infinite reverse;
    transform-origin: 200px 170px;
}

@keyframes orbit {
    to { transform: rotate(360deg); }
}

/* ================================================
   SCREENSHOTS
   ================================================ */
.screenshots {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
}

.screenshots-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.screenshot-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all 0.5s var(--ease-out);
}

.screenshot-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 0 0 1px rgba(96,165,250,0.1);
}

.screenshot-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-blue);
    border-bottom: 1px solid var(--border);
    background: rgba(96, 165, 250, 0.04);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.screenshot-card:hover img {
    transform: scale(1.02);
}

/* ================================================
   CTA / CONTACT
   ================================================ */
.cta-section {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
}

.cta-card {
    position: relative;
    padding: 72px 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    text-align: center;
}

.cta-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-bg-svg {
    width: 100%;
    height: 100%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out);
    text-align: left;
    min-width: 240px;
}

.contact-card:hover {
    border-color: var(--border-hover);
    background: rgba(96, 165, 250, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: 12px;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo svg {
    flex-shrink: 0;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
}

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.3s;
    font-weight: 500;
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-legal {
    font-size: 0.72rem !important;
    color: var(--text-muted) !important;
    opacity: 0.6;
}

/* ================================================
   ANIMATIONS
   ================================================ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fade-up 0.8s var(--ease-out) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 100px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-doc-container {
        max-width: 420px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .compliance-visual {
        order: -1;
    }

    .compliance-svg {
        max-width: 300px;
    }

    .screenshots-carousel {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 14, 26, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links .nav-link {
        font-size: 1.2rem;
        padding: 14px 28px;
    }

    .nav-link-cta {
        margin-left: 0;
        margin-top: 12px;
    }

    .nav-toggle {
        display: flex;
    }

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

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .step {
        min-width: unset;
        max-width: 400px;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 340px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .cta-card {
        padding: 48px 24px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .trust-divider {
        display: none;
    }

    .hero-trust {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-badge {
        font-size: 0.72rem;
    }
}
