/* ============================
   INDEX.CSS — Homepage Styles
   Nandini Saini Portfolio
   ============================ */

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.4rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(229, 9, 20, 0.45);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta:hover {
    box-shadow: 0 6px 32px rgba(229, 9, 20, 0.6);
    transform: translateY(-2px);
}

.sticky-cta i {
    font-size: 1rem;
}

@media (max-width: 640px) {
    .sticky-cta span {
        display: none;
    }
    .sticky-cta {
        padding: 0.85rem;
        border-radius: 50%;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .sticky-cta i {
        font-size: 1.2rem;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}

/* Ambient orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.18;
    will-change: transform;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #E50914 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #AB151D 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation: orbFloat2 15s ease-in-out infinite;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
    top: 40%;
    left: 55%;
    animation: orbFloat3 10s ease-in-out infinite;
    opacity: 0.1;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 30px) scale(1.05); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -40px) scale(1.08); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* Hero Left */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-greeting {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem;
    background: rgba(229, 9, 20, 0.08);
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    width: fit-content;
}

.greeting-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--text-primary);
    margin: 0;
}

.line-wrap {
    display: block;
    overflow: hidden;
}

.line {
    display: block;
    transform: translateY(100%);
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.line-wrap:nth-child(1) .line { animation-delay: 0.1s; }
.line-wrap:nth-child(2) .line { animation-delay: 0.25s; }

@keyframes slideUp {
    to { transform: translateY(0); }
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.5s forwards;
}

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

.hero-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.65s forwards;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-pill i {
    color: #4ade80;
    font-size: 0.7rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.8s forwards;
}

.hero-social {
    display: flex;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Hero Right (Spline iframe) */
.hero-right {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right iframe {
    width: 110%;
    height: 110%;
    margin: -5%;
    border: none;
    pointer-events: auto;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: fadeIn 1s ease 1.5s both, bounce 2s ease 2.5s infinite;
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background: var(--accent-red);
    border-radius: 3px;
    animation: scrollWheel 1.5s ease infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 1.5rem 5%;
}

.trust-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-bar-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-logo-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.trust-logo-item:hover {
    color: var(--text-secondary);
}

.trust-logo-item i {
    font-size: 1.1rem;
    color: var(--accent-red);
    opacity: 0.7;
}

/* ===== STATS STRIP ===== */
.stats-strip {
    padding: 2.5rem 5%;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--glass-border);
}

.stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1rem 2rem;
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
    flex-shrink: 0;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    background: var(--bg-secondary);
}

.problem-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.problem-header {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-sub {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    border-color: rgba(229, 9, 20, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 20px rgba(229, 9, 20, 0.05);
}

.problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(229, 9, 20, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--accent-red);
    font-size: 1.2rem;
}

.problem-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.problem-solution-cta {
    text-align: center;
    padding: 2.5rem;
    background: rgba(229, 9, 20, 0.05);
    border: 1px solid rgba(229, 9, 20, 0.12);
    border-radius: 20px;
}

.solution-teaser {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.solution-teaser strong {
    color: var(--text-primary);
}

/* ===== SERVICES SECTION ===== */
.services-full {
    background: var(--bg-primary);
}

.services-full-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-sub {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: rgba(229, 9, 20, 0.25);
    background: var(--glass-bg-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md), 0 0 30px rgba(229, 9, 20, 0.06);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(229, 9, 20, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 1.4rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(229, 9, 20, 0.18);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.service-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.service-benefits li i {
    color: #4ade80;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-red);
    margin-top: auto;
    transition: gap 0.2s ease;
}

.service-card:hover .service-link {
    gap: 0.7rem;
}

/* ===== FEATURED WORK ===== */
.featured-preview {
    background: var(--bg-secondary);
}

.fp-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.fp-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.fp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.fp-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Spotlight gradient on hover */
.fp-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mx, 50%) var(--my, 50%),
        rgba(229, 9, 20, 0.06) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.fp-card:hover::after {
    opacity: 1;
}

.fp-card:hover {
    border-color: rgba(229, 9, 20, 0.25);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md), 0 0 30px rgba(229, 9, 20, 0.06);
}

.fp-card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(229, 9, 20, 0.08);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: -0.5rem;
}

.fp-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.fp-card-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
}

.fp-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    background: rgba(229, 9, 20, 0.08);
    border: 1px solid rgba(229, 9, 20, 0.18);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ff6b6b;
    width: fit-content;
}

.fp-result-badge i {
    font-size: 0.7rem;
}

.fp-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.fp-card-cta {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    align-self: flex-end;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.fp-card:hover .fp-card-cta {
    border-color: var(--accent-red);
    color: var(--accent-red);
    background: rgba(229, 9, 20, 0.08);
}

.fp-more {
    text-align: center;
}

/* ===== WHY SECTION ===== */
.why-section {
    background: var(--bg-primary);
}

.why-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    border-color: rgba(229, 9, 20, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(229, 9, 20, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--bg-secondary);
}

.testimonials-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(229, 9, 20, 0.2);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    color: #fbbf24;
    font-size: 0.85rem;
}

.testimonial-card blockquote {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: var(--bg-primary);
}

.process-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.process-step {
    flex: 1;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.process-step:hover {
    border-color: rgba(229, 9, 20, 0.25);
    transform: translateY(-4px);
}

.process-step-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(229, 9, 20, 0.12);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.05em;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

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

.process-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), transparent);
    flex-shrink: 0;
    margin-top: 4rem;
    opacity: 0.3;
}

/* ===== CTA BAND ===== */
.cta-band {
    padding: 5rem 5%;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.08) 0%, rgba(8, 8, 8, 0) 100%);
    border-top: 1px solid rgba(229, 9, 20, 0.1);
    border-bottom: 1px solid rgba(229, 9, 20, 0.1);
}

.cta-band-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-band-text {
    flex: 1;
    min-width: 280px;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.25);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-red);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cta-band-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.cta-band-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 500px;
}

.cta-band-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}

/* ===== SEO CONTENT SECTION ===== */
.seo-content-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 5%;
}

.seo-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

.seo-content-inner h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.seo-content-inner h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.seo-content-inner p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.seo-content-inner strong {
    color: var(--text-secondary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    .process-connector {
        display: none;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-left {
        align-items: center;
    }
    .hero-sub {
        text-align: center;
    }
    .hero-right {
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .stats-inner {
        gap: 0;
    }
    .stat-item {
        padding: 1rem;
    }
    .cta-band-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-band-text p {
        max-width: 100%;
    }
    .cta-band-actions {
        justify-content: center;
    }
    .trust-bar-inner {
        justify-content: center;
    }
    .trust-logos {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-name {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-social {
        justify-content: center;
    }
    .scroll-hint {
        display: none;
    }
    .hero-right {
        aspect-ratio: 4/3;
    }
    .hero-right iframe {
        width: 130%;
        height: 130%;
        margin: -15%;
    }
    .stat-divider {
        display: none;
    }
    .stats-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
