/* ===== Landing Page — Skill 2026 Premium Redesign ===== */

body::before { display: none; }

/* ── Layout ── */
.section-block {
    position: relative;
    padding: clamp(5rem, 8vw, 7.5rem) 0;
}

.fa { display: none; }

/* ── Section headings ── */
.section-heading {
    max-width: 820px;
    margin: 0 auto clamp(2.2rem, 4vw, 3.4rem);
    text-align: center;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: end;
    max-width: none;
    text-align: left;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 0;
    border-radius: 0;
    background: none;
    border: none;
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-eyebrow-light {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
}

.section-eyebrow-green {
    background: none;
    border: none;
    color: var(--accent-green);
}

.dot-indicator { display: none; }

.section-title {
    margin: 0;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--neutral-900);
}

.section-title.text-left { text-align: left; }

.section-text, .section-lead, .trust-copy {
    color: var(--neutral-600);
    font-size: 1rem;
    line-height: 1.85;
}

.section-lead { max-width: 420px; margin-left: auto; }

/* ── Dark section ── */
.section-dark {
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(126, 44, 200, 0.18), transparent 26%),
        linear-gradient(170deg, var(--neutral-900) 0%, #1a0822 50%, #2c0336 100%);
}

.section-dark .section-title,
.section-dark h3,
.section-dark strong { color: #fff; }

.section-dark .section-text, .section-dark .section-lead,
.section-dark p, .section-dark li, .section-dark span {
    color: rgba(255, 255, 255, 0.7);
}

/* ── Header ── */
.header-fixed {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(252, 251, 254, 0.72);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(73, 3, 86, 0.06);
    transition: box-shadow var(--duration-normal) ease;
}

.header-fixed.header-scrolled {
    box-shadow: 0 4px 24px rgba(36, 20, 56, 0.08);
}

.site-header-shell, .header-content {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: var(--space-6);
    min-height: 56px;
    padding: 0 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(73, 3, 86, 0.06);
    box-shadow: 0 4px 20px rgba(34, 19, 55, 0.04);
}

.logo { display: inline-flex; align-items: center; }
.logo img { width: 150px; height: auto; }

.main-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a, .mobile-nav-link {
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--neutral-600);
    transition: color 0.2s;
}

.main-nav a:hover { color: var(--neutral-900); }

.underline-expand { position: relative; }

.underline-expand::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1.5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), #8d48d8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-normal) cubic-bezier(0.22, 1, 0.36, 1);
}

.underline-expand:hover::after,
.underline-expand:focus-visible::after { transform: scaleX(1); }

/* ── Buttons ── */
.btn-cta, .btn-primary-solid, .btn-secondary-ghost,
.btn-primary-light, .btn-outline-light, .btn-plan, .btn-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 12px;
    border: 1px solid transparent;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-cta, .btn-primary-solid {
    color: #fff !important;
    background: var(--primary-color);
    box-shadow: 0 4px 16px rgba(73, 3, 86, 0.2);
}

.btn-cta:hover, .btn-primary-solid:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(73, 3, 86, 0.28);
}

.btn-secondary-ghost {
    color: var(--neutral-900);
    background: transparent;
    border: 1.5px solid var(--neutral-200);
}

.btn-secondary-ghost:hover {
    border-color: rgba(73, 3, 86, 0.3);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.btn-primary-light {
    color: var(--neutral-900);
    background: #fff;
}

.btn-primary-light:hover { transform: translateY(-1px); }

.btn-outline-light {
    color: #fff;
    background: transparent;
    border: var(--border-contrast);
}

.btn-plan {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: 100%;
}

.btn-plan:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.btn-plan-pop {
    background: var(--primary-color);
    border-color: var(--primary-light);
    box-shadow: 0 4px 20px rgba(73, 3, 86, 0.3);
}

.btn-plan-pop:hover {
    background: var(--primary-light);
}

.btn-inline {
    padding: 0;
    background: transparent;
    color: var(--primary-color);
    border: 0;
    font-weight: 600;
}

.btn-inline:hover { color: var(--primary-light); }

.btn-form-submit { width: 100%; }

.btn-cta-green {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-green), #1a9660);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(34, 181, 115, 0.3);
    transition: all 0.25s;
    text-align: center;
}

.btn-cta-green:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(34, 181, 115, 0.4);
}

.blog-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
}

.blog-more svg { transition: transform 0.2s; }
.blog-more:hover svg { transform: translateX(4px); }

.header-cta { display: flex; }

/* ── Hamburger ── */
.hamburger-menu { display: none; }

.hamburger-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(73, 3, 86, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.74);
    cursor: pointer;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 999px;
    transition: transform var(--duration-fast) ease, opacity var(--duration-fast) ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger-btn.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    display: none;
    padding: 110px 20px 20px;
    background: var(--surface-overlay);
    z-index: 999;
}

.mobile-menu-overlay.active { display: block; }

.mobile-nav {
    max-width: 520px;
    margin: 0 auto;
    padding: 22px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-lg);
}

.mobile-nav ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }

.mobile-nav-link {
    display: block;
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--neutral-50);
}

.mobile-nav-link.mobile-cta {
    background: var(--primary-gradient);
    color: #fff !important;
}

/* ═══════════ HERO ═══════════ */
.hero-section {
    position: relative;
    padding: 56px 0 80px;
    overflow: clip;
}

.commercial-hero {
    padding: 48px 0 72px;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(138, 58, 171, 0.1), transparent 40%),
        radial-gradient(ellipse at 80% 10%, rgba(34, 181, 115, 0.06), transparent 35%),
        radial-gradient(ellipse at 50% 80%, rgba(73, 3, 86, 0.04), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f7f3fb 100%);
}

.hero-mesh-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-mesh-1 {
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at 30% 40%, rgba(138, 58, 171, 0.12), rgba(73, 3, 86, 0.04) 40%, transparent 70%);
    filter: blur(60px);
}

.hero-mesh-2 {
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 181, 115, 0.06), transparent 60%);
    filter: blur(40px);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: center;
    gap: clamp(40px, 6vw, 84px);
    position: relative;
    z-index: 1;
}

.hero-grid.hero-grid-commercial {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: clamp(32px, 5vw, 64px);
}

.hero-copy { padding: 18px 0 0; }

.hero-title {
    margin: 0 0 20px;
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: var(--neutral-900);
}

.hero-title em {
    font-style: normal;
    color: var(--primary-color);
    position: relative;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(73, 3, 86, 0.08);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    max-width: 480px;
    margin: 0 0 28px;
    color: var(--neutral-500);
    font-size: 1rem;
    line-height: 1.75;
}

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

.hero-proof-inline {
    display: flex;
    gap: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(73, 3, 86, 0.08);
}

.hero-proof-inline article {
    position: relative;
    padding-left: 16px;
}

.hero-proof-inline article::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-300));
    border-radius: 2px;
}

.hero-proof-inline strong {
    display: block;
    margin-bottom: 4px;
    color: var(--neutral-900);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.hero-proof-inline span {
    color: var(--neutral-500);
    font-size: 0.82rem;
    font-weight: 500;
}

/* ── Hero form card ── */
.hero-lead-card {
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(73, 3, 86, 0.08);
    box-shadow: 0 20px 60px rgba(48, 24, 74, 0.08), 0 4px 12px rgba(48, 24, 74, 0.04);
    position: relative;
    overflow: hidden;
}

.hero-lead-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-300), var(--accent-green));
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.hero-card-header h2 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.12;
}

.hero-card-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-green);
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(34, 181, 115, 0.08);
    border: 1px solid rgba(34, 181, 115, 0.15);
    font-family: var(--font-body);
}

.hero-lead-top {
    margin-bottom: 20px;
}

.hero-lead-top p, .hero-form-note {
    color: var(--neutral-500);
    font-size: 0.88rem;
    line-height: 1.6;
}

.hero-form-note {
    margin: 14px 0 0;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--neutral-400);
}

.hero-form-note svg { color: var(--accent-green); }

.hero-lead-form { display: grid; gap: 12px; }

.form-field { display: grid; gap: 6px; }

.form-field span {
    color: var(--neutral-700);
    font-size: 0.8rem;
    font-weight: 600;
}

.form-field input, .form-field select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1.5px solid rgba(73, 3, 86, 0.1);
    border-radius: 10px;
    background: var(--neutral-50);
    color: var(--neutral-900);
    font: inherit;
    font-size: 0.88rem;
    transition: border-color 0.2s;
}

.form-field input:focus, .form-field select:focus {
    outline: 0;
    border-color: var(--primary-300);
    box-shadow: 0 0 0 4px rgba(73, 3, 86, 0.06);
}

/* ── Dark form fields ── */
.form-field-dark span { color: rgba(255, 255, 255, 0.7); }

.form-field-dark input, .form-field-dark select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-field-dark input::placeholder { color: rgba(255, 255, 255, 0.35); }

.form-field-dark input:focus, .form-field-dark select:focus {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

/* ═══════════ TRUST BAND ═══════════ */
.trust-band {
    position: relative;
    z-index: 2;
    padding: 0;
    margin-top: -16px;
}

.trust-band-shell-commercial {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 28px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(73, 3, 86, 0.06);
    box-shadow: 0 8px 28px rgba(34, 19, 55, 0.04);
    overflow: hidden;
    max-width: 100%;
}

.trust-band-shell-commercial .marquee-container {
    flex: 1;
    min-width: 0;
}

.trust-label {
    font-size: 0.72rem;
    color: var(--neutral-400);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-sep {
    width: 1px;
    height: 24px;
    background: var(--neutral-200);
    flex-shrink: 0;
}

.client-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-100);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--neutral-700);
    white-space: nowrap;
    margin-right: 12px;
    transition: all 0.2s;
}

.client-chip:hover {
    border-color: rgba(73, 3, 86, 0.15);
    background: rgba(73, 3, 86, 0.03);
}

/* ═══════════ SERVICES BENTO ═══════════ */
.services-grid, .services-bento {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.services-bento .service-card-featured {
    grid-column: span 2;
}

.service-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(73, 3, 86, 0.08);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-300));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    border-color: rgba(73, 3, 86, 0.12);
    box-shadow: 0 12px 40px rgba(73, 3, 86, 0.06);
    transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-card-featured {
    background: linear-gradient(135deg, #1a0822, #2c0336, #490356);
    border-color: transparent;
    color: #fff;
}


.service-card-featured .card-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.service-card-featured .card-icon svg { color: var(--primary-200); }

.service-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.featured-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.featured-stat {
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
}

.featured-stat span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(73, 3, 86, 0.04);
    border: 1px solid rgba(73, 3, 86, 0.08);
    margin-bottom: 16px;
}

.card-icon svg { width: 22px; height: 22px; color: var(--primary-color); }

.service-kicker, .feature-index, .plan-topline, .blog-preview-category {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    background: rgba(73, 3, 86, 0.06);
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── Feature index large gradient ── */
.feature-index {
    display: block;
    margin-bottom: 16px;
    padding: 0;
    background: none;
    border-radius: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, var(--primary-200), var(--primary-50));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.service-card h3, .feature-card h3, .blog-preview-card h3 {
    display: block;
    margin-bottom: 10px;
    font-size: var(--fs-title);
    color: var(--neutral-900);
}

.service-card p, .feature-card p, .blog-preview-card p {
    color: var(--neutral-500);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* Featured card overrides — must come after generic card styles */
.service-card-featured h3,
.service-card-featured .service-kicker,
.service-card-featured p,
.service-card-featured .card-icon svg { color: inherit; }

.service-card-featured h3 { color: #fff; }
.service-card-featured p { color: rgba(255, 255, 255, 0.65); }
.service-card-featured .service-kicker {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ═══════════ CTA DARK SECTION ═══════════ */
.cta-dark-section {
    padding: clamp(5rem, 8vw, 7.5rem) 0;
    background: linear-gradient(160deg, var(--neutral-900) 0%, #1a0822 40%, #2c0336 100%);
    color: #fff;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.cta-orb-1 {
    top: -100px;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(106, 26, 139, 0.3), transparent 70%);
    filter: blur(80px);
}

.cta-orb-2 {
    bottom: -80px;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 181, 115, 0.12), transparent 60%);
    filter: blur(60px);
}

.cta-dark-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-dark-copy h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 16px;
    color: #fff;
}

.cta-dark-copy .section-text {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 14px;
    font-weight: 500;
}

.cta-features li svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.cta-form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 32px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
}

.cta-form-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 23px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    z-index: -1;
}

.cta-form-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.cta-lead-form { display: grid; gap: 12px; }

.cta-form-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    margin-top: 12px;
}

/* ═══════════ ABOUT ═══════════ */
.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(36px, 6vw, 72px);
    align-items: center;
}

.media-frame {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(236, 226, 247, 0.92));
    box-shadow: var(--shadow-lg);
}

.media-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(73, 3, 86, 0) 50%, rgba(73, 3, 86, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.media-frame img {
    width: 100%;
    aspect-ratio: 0.94 / 1;
    object-fit: cover;
}

.media-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(73, 3, 86, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.badge-stat { text-align: center; flex: 1; }

.badge-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.badge-stat span {
    font-size: 0.72rem;
    color: var(--neutral-500);
    font-weight: 500;
}

.about-highlights {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.about-highlight {
    flex: 1;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(73, 3, 86, 0.08);
    background: var(--neutral-50);
}

.about-highlight svg {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-highlight h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-highlight p {
    font-size: 0.8rem;
    color: var(--neutral-500);
    line-height: 1.5;
    margin: 0;
}

/* ── Stats grid ── */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }

.stat-card {
    padding: 20px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(73, 3, 86, 0.08);
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: var(--fs-title);
    color: var(--neutral-900);
}

.stat-card p {
    color: var(--neutral-500);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ═══════════ MISSION ═══════════ */
.mission-section {
    background: linear-gradient(180deg, var(--neutral-50), rgba(234, 226, 245, 0.4));
}

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

.feature-card {
    padding: 28px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(73, 3, 86, 0.08);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(73, 3, 86, 0.12);
    box-shadow: 0 8px 30px rgba(73, 3, 86, 0.05);
    transform: translateY(-3px);
}

/* ═══════════ TESTIMONIALS ═══════════ */
.proof-section { background: var(--neutral-50); }

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

.testimonial-card {
    padding: 28px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(73, 3, 86, 0.08);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(73, 3, 86, 0.12);
    box-shadow: 0 8px 30px rgba(73, 3, 86, 0.05);
    transform: translateY(-3px);
}

.testimonial-card::after {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(73, 3, 86, 0.06);
    font-weight: 900;
}

.test-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.test-stars svg {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
}

.testimonial-quote {
    margin: 0 0 20px;
    color: var(--neutral-700);
    font-size: 0.92rem;
    line-height: 1.75;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.test-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-200), var(--primary-100));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-color);
    flex-shrink: 0;
}

.test-author strong {
    display: block;
    font-size: 0.88rem;
    color: var(--neutral-900);
}

.test-author span {
    font-size: 0.78rem;
    color: var(--neutral-500);
}

/* ═══════════ PLANS ═══════════ */
.plans-section { overflow: hidden; }

.plans-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(73, 3, 86, 0.2), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; z-index: 2; }

.plan-card {
    padding: 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.3s;
}

.plan-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.plan-card-highlight {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(106, 26, 139, 0.4);
    box-shadow: 0 0 60px rgba(73, 3, 86, 0.15);
}

.plan-badge {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--accent-green), #1a9660);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(34, 181, 115, 0.3);
}

.plan-topline { color: rgba(255, 255, 255, 0.6); }

.plan-card h3 { color: #fff; margin-bottom: 8px; }

.plan-price {
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.plan-price small {
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

.plan-card > p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-card ul {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.plan-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
    font-weight: 500;
}

.plan-card li svg {
    width: 16px;
    height: 16px;
    color: var(--accent-green);
    flex-shrink: 0;
}

/* ═══════════ BLOG PREVIEW ═══════════ */
.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.blog-preview-card {
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(73, 3, 86, 0.08);
    text-decoration: none;
    transition: all 0.3s;
}

.blog-preview-card:hover {
    border-color: rgba(73, 3, 86, 0.12);
    box-shadow: 0 8px 30px rgba(73, 3, 86, 0.05);
    transform: translateY(-3px);
}

.blog-preview-category {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.68rem;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(73, 3, 86, 0.04);
}

.blog-preview-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--neutral-400);
    font-size: 0.78rem;
    font-weight: 500;
}

.meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--neutral-400);
    display: inline-block;
}

.section-action { margin-top: 32px; text-align: center; }

/* ═══════════ FAQ SPLIT ═══════════ */
.faq-shell { max-width: none; }

.faq-split {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: start;
}

.faq-intro .section-text { margin-top: 12px; max-width: 320px; }

.faq-list { display: grid; gap: 0; }

.faq-item {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(73, 3, 86, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border: 0;
    background: transparent;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--neutral-900);
    cursor: pointer;
}

.faq-toggle-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(73, 3, 86, 0.04);
    border: 1px solid rgba(73, 3, 86, 0.08);
    transition: all 0.25s;
}

.faq-toggle-icon svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    transition: transform 0.25s;
}

.faq-item.active .faq-toggle-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.faq-item.active .faq-toggle-icon svg {
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 20px;
}

.faq-answer p {
    color: var(--neutral-500);
    font-size: 0.88rem;
    line-height: 1.75;
    padding-right: 48px;
}

.faq-item.active .faq-answer { display: block; }

/* ═══════════ CONTACT ═══════════ */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: clamp(4rem, 6vw, 5.5rem) 0;
}

.contact-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

.contact-copy h2 { color: #fff; margin-bottom: 10px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.contact-copy p { color: rgba(255, 255, 255, 0.7); }

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-card {
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-align: center;
    transition: all 0.2s;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
}

.contact-card svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.contact-card strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 0.88rem;
}

.contact-card a, .contact-card span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    text-decoration: none;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
    padding: 64px 0 24px;
    background: #0f0a16;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand { display: grid; gap: 16px; }

.footer h3, .footer p, .footer li, .footer a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links ul, .footer-contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-links a, .footer-contact a { text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }

.footer-bottom { padding-top: 22px; text-align: center; }
.footer-bottom p { color: rgba(255, 255, 255, 0.35); font-size: 0.82rem; }

/* ═══════════ WHATSAPP FLOAT ═══════════ */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #23c45e, #159949);
    box-shadow: 0 6px 24px rgba(20, 146, 74, 0.35);
    color: #fff;
    text-decoration: none;
    transition: all 0.25s;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 32px rgba(20, 146, 74, 0.45);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1100px) {
    .hero-grid, .hero-grid.hero-grid-commercial,
    .two-column-section, .cta-dark-layout,
    .section-heading--split {
        grid-template-columns: 1fr;
    }

    .faq-split { grid-template-columns: 1fr; }

    .mission-grid, .services-grid, .services-bento,
    .plans-grid, .blog-preview-grid, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-bento .service-card-featured {
        grid-column: span 2;
    }

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

    .section-lead { max-width: none; margin-left: 0; }
}

@media (max-width: 860px) {
    .section-block { padding: 4.5rem 0; }

    .site-header-shell, .header-content {
        grid-template-columns: auto 1fr auto;
    }

    .main-nav, .header-cta { display: none; }

    .hamburger-menu { display: flex; justify-content: flex-end; }

    .commercial-hero { padding: 30px 0 48px; }

    .hero-proof-inline {
        flex-direction: column;
        gap: 16px;
    }

    .services-bento, .services-grid,
    .mission-grid, .plans-grid,
    .blog-preview-grid, .footer-grid,
    .testimonial-grid, .contact-cards,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .services-bento .service-card-featured {
        grid-column: span 1;
    }

    .service-card-inner {
        grid-template-columns: 1fr;
    }

    .cta-dark-layout { gap: 36px; }

    .about-highlights { flex-direction: column; }
}

@media (max-width: 560px) {
    .container { width: min(100% - 24px, var(--container-wide)); }

    .site-header-shell, .header-content { padding-inline: 16px; }

    .section-heading { margin-bottom: var(--space-10); }

    .section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        line-height: 1.14;
    }

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

    .hero-lead-card, .testimonial-card,
    .contact-card, .feature-card, .service-card, .plan-card {
        padding: 22px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .trust-band-shell-commercial {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
