.elementor-8563 .elementor-element.elementor-element-bc3be51{--display:flex;}.elementor-8563 .elementor-element.elementor-element-bb48358{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-bb48358 *//* ═══════════════════════════════════════════════════════════════
   SpaceCraft Pro — Landing Page CSS
   WordPress-Ready: Separate CSS file
   Color Palette: White + Dark Navy + Gold
═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --navy: #0A1628;
    --navy-mid: #112240;
    --navy-light: #1a3260;
    --gold: #C9A84C;
    --gold-light: #E8C870;
    --gold-dark: #A8893A;
    --white: #FFFFFF;
    --off-white: #F8F6F1;
    --gray-100: #F2F0EB;
    --gray-300: #D4CFC3;
    --gray-500: #9B9485;
    --gray-700: #5C5750;
    --text-dark: #1A1712;
    --text-body: #3D3A34;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --radius: 4px;
    --radius-lg: 12px;
    --shadow: 0 4px 24px rgba(10,22,40,0.12);
    --shadow-lg: 0 12px 48px rgba(10,22,40,0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    /* SPEED: GPU compositing for images */
    transform: translateZ(0);
}
/* Images always visible - lazy just controls when they load */
img[loading="lazy"] { opacity: 1; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: var(--font-body); background: none; }
input, select, textarea { font-family: var(--font-body); }

/* ── Container ── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ── */
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
}
.section-tag.light { color: var(--gold-light); border-color: rgba(201,168,76,0.4); }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-title em {
    font-style: italic;
    color: var(--gold);
}
.section-title.light { color: var(--white); }
.section-sub {
    font-size: 17px;
    color: var(--gray-700);
    max-width: 580px;
    margin-bottom: 48px;
    line-height: 1.8;
}
.section-sub.light { color: rgba(255,255,255,0.7); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.5);
    color: var(--navy);
}
.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--white);
    background: rgba(255,255,255,0.08); /* SPEED: removed backdrop-filter - expensive GPU op */
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}
.btn-white-outline {
    border: 1.5px solid rgba(255,255,255,0.5);
    color: var(--white);
    background: transparent;
}
.btn-white-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }
.btn-large { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── Scroll Animation Classes (GPU-optimized) ── */
[data-animate] {
    opacity: 0;
    /* SPEED: will-change hints GPU to prepare layer ONLY during animation */
    will-change: opacity, transform;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fadeUp"] { transform: translateY(32px); }
[data-animate="fadeLeft"] { transform: translateX(-32px); }
[data-animate="fadeRight"] { transform: translateX(32px); }
[data-animate].animated {
    opacity: 1;
    transform: translate3d(0,0,0);
    /* SPEED: Release GPU layer after animation completes */
    will-change: auto;
}

/* ════════════════════════════════════════
   STICKY HEADER
════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}
.site-header.scrolled {
    background: rgba(10,22,40,0.97);
    padding: 12px 0;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}
.logo-icon {
    color: var(--gold);
    font-size: 22px;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.logo-text em {
    font-style: italic;
    color: var(--gold);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.3px;
}
.main-nav a:hover { color: var(--gold); }
.header-cta {
    background: var(--gold);
    color: var(--navy);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.header-cta:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-1px);
}
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--navy);
    padding: 16px 24px;
    gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-cta {
    margin-top: 12px;
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 14px 20px !important;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700 !important;
    border-bottom: none !important;
}

/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0d1e3a 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 75% 60%, rgba(201,168,76,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 30%, rgba(26,50,96,0.5) 0%, transparent 70%);
    pointer-events: none;
}
.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(120px, 20vw, 280px);
    font-weight: 700;
    color: rgba(255,255,255,0.02);
    letter-spacing: 20px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    padding: 7px 16px;
    border-radius: 40px;
    margin-bottom: 24px;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-headline em {
    font-style: italic;
    color: var(--gold);
}
.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 500px;
}
.hero-sub strong { color: var(--gold-light); font-weight: 600; }
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.hero-form {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form-input, .hero-form select {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--white);
    font-size: 14px;
    width: 100%;
    transition: var(--transition);
    outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.4); }
.form-input:focus, .hero-form select:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
}
.form-select option { background: var(--navy); color: var(--white); }
.trust-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.badge {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 40px;
    letter-spacing: 0.3px;
}

/* Before/After Slider */
.hero-visual { position: relative; }
.before-after-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201,168,76,0.2);
}
.ba-image { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba-image img { width: 100%; height: 100%; object-fit: cover; }
.ba-img-before { z-index: 1; }
.ba-img-after { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-label {
    position: absolute;
    top: 16px;
    z-index: 10;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 40px;
}
.ba-before { left: 16px; background: rgba(10,22,40,0.8); color: var(--white); }
.ba-after { right: 16px; background: var(--gold); color: var(--navy); }
.ba-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 20;
    appearance: none;
}
.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--gold);
    z-index: 15;
    pointer-events: none;
}
.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--navy);
    font-weight: 700;
    box-shadow: 0 0 0 4px rgba(201,168,76,0.3);
}
.hero-stat-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--navy);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}
.stat-text {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ════════════════════════════════════════
   SOCIAL PROOF BAR
════════════════════════════════════════ */
.proof-bar {
    background: var(--navy);
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 28px 0;
}
.proof-bar-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
}
.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.proof-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}
.proof-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.3px;
}
.proof-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.1);
}

/* ════════════════════════════════════════
   PAIN SECTION
════════════════════════════════════════ */
.pain-section {
    padding: 100px 0;
    background: var(--off-white);
    contain: layout style; /* SPEED: limits repaint scope */
}
.pain-section .section-title,
.pain-section .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.pain-section .section-tag { display: block; text-align: center; }
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.pain-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}
.pain-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.pain-card:hover::before { transform: scaleX(1); }
.pain-icon { font-size: 40px; margin-bottom: 16px; }
.pain-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}
.pain-card p { font-size: 14px; color: var(--gray-700); margin-bottom: 16px; font-style: italic; line-height: 1.7; }
.pain-list { display: flex; flex-direction: column; gap: 8px; }
.pain-list li {
    font-size: 13px;
    color: var(--text-body);
    padding-left: 20px;
    position: relative;
}
.pain-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.pain-quote {
    text-align: center;
    padding: 32px;
    background: var(--navy);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold);
}
.pain-quote p {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 30px);
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
}
.pain-quote strong { color: var(--gold); font-style: normal; }

/* ════════════════════════════════════════
   SOLUTION SECTION
════════════════════════════════════════ */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}
.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.benefit-check {
    width: 28px;
    height: 28px;
    background: rgba(201,168,76,0.15);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.benefit-item strong {
    display: block;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.benefit-item p { font-size: 13px; color: rgba(255,255,255,0.55); margin: 0; }
.solution-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}
.solution-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}
.solution-img-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: 1;
}
.solution-stat {
    position: absolute;
    bottom: -16px;
    left: -20px;
    background: var(--gold);
    color: var(--navy);
    padding: 16px 22px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    z-index: 3;
}
.s-num {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}
.s-txt {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

/* ════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════ */
.services-section {
    padding: 100px 0;
    background: var(--white);
    contain: layout style;
}
.services-section .section-title,
.services-section .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.services-section .section-tag { display: block; text-align: center; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured {
    background: var(--navy);
    border-color: var(--gold);
    color: var(--white);
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.6); }
.service-card.featured .service-link { color: var(--gold); }
.service-card.featured .service-icon-wrap { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.3); color: var(--gold); }
.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 40px;
}
.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--off-white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--navy);
    transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
    color: var(--gold);
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.3px;
    transition: var(--transition);
}
.service-link:hover { gap: 8px; padding-left: 4px; }

/* ════════════════════════════════════════
   PORTFOLIO SECTION
════════════════════════════════════════ */
.portfolio-section {
    padding: 100px 0;
    background: var(--off-white);
    contain: layout style;
}
.portfolio-section .section-title,
.portfolio-section .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.portfolio-section .section-tag { display: block; text-align: center; }
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.portfolio-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.p-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
    /* SPEED: promote to own layer to avoid full page repaint */
    transform: translateZ(0);
}
.p-before { opacity: 1; z-index: 1; }
.p-after { opacity: 0; z-index: 2; will-change: opacity; }
/* SPEED: GPU-composited opacity transition only */
.portfolio-card:hover .p-after { opacity: 1; }
.portfolio-card:hover .p-before { opacity: 0; }
.p-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    background: linear-gradient(transparent 60%, rgba(10,22,40,0.8));
}
.p-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.4);
    padding: 4px 10px;
    border-radius: 40px;
    transition: var(--transition);
}
.portfolio-card:hover .p-tag {
    background: var(--gold);
    color: var(--navy);
    content: 'AFTER VIEW';
}
.portfolio-info { padding: 20px 20px 24px; }
.p-type {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    display: block;
}
.portfolio-info h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
}
.portfolio-cta { text-align: center; }

/* ════════════════════════════════════════
   PROCESS SECTION
════════════════════════════════════════ */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
}
.process-section .section-title,
.process-section .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.process-section .section-tag { display: block; text-align: center; }
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    padding-top: 60px;
}
.process-line {
    position: absolute;
    top: 80px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    opacity: 0.4;
}
.process-step {
    padding: 0 24px;
    text-align: center;
    position: relative;
}
.step-num {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 700;
    color: rgba(255,255,255,0.04);
    letter-spacing: -4px;
    pointer-events: none;
}
.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}
.process-step h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}
.process-step p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ════════════════════════════════════════
   AUTHORITY SECTION
════════════════════════════════════════ */
.authority-section {
    padding: 100px 0;
    background: var(--white);
}
.authority-section .section-title,
.authority-section .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.authority-section .section-tag { display: block; text-align: center; }
.authority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.authority-card {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.authority-card:hover {
    border-color: var(--gold);
    background: var(--off-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.auth-icon { font-size: 44px; margin-bottom: 16px; }
.authority-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}
.authority-card p { font-size: 14px; color: var(--gray-700); line-height: 1.7; }

/* ════════════════════════════════════════
   REVIEWS SECTION
════════════════════════════════════════ */
.reviews-section {
    padding: 100px 0;
    background: var(--off-white);
}
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
}
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}
.big-rating {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}
.rating-stars { font-size: 24px; margin-bottom: 8px; }
.rating-count {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 28px;
}
.rating-count strong { color: var(--navy); }
.rating-bars { display: flex; flex-direction: column; gap: 8px; }
.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-700);
}
.bar-row span:first-child { width: 42px; text-align: right; }
.bar-row span:last-child { width: 32px; }
.bar-track {
    flex: 1;
    height: 6px;
    background: var(--gray-300);
    border-radius: 3px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    transition: width 1s ease;
}
.reviews-carousel { position: relative; min-height: 220px; }
.review-card {
    display: none;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 36px;
    animation: reviewFadeIn 0.5s ease;
    box-shadow: var(--shadow);
}
.review-card.active { display: block; }
@keyframes reviewFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.review-stars { font-size: 18px; margin-bottom: 16px; }
.review-text {
    font-family: var(--font-display);
    font-size: 17px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.reviewer-avatar {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.review-author strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
    font-weight: 600;
}
.review-author span {
    font-size: 13px;
    color: var(--gray-500);
}
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}
.carousel-btn {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--navy);
    transition: var(--transition);
    cursor: pointer;
    background: var(--white);
}
.carousel-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.05);
}
.carousel-dots { display: flex; gap: 8px; }
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════ */
.cta-section {
    padding: 100px 0;
    background: var(--navy);
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.cta-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.cta-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.cta-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(201,168,76,0.15), transparent);
}
.cta-body {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 28px;
}
.cta-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}
.cta-features span {
    font-size: 14px;
    font-weight: 500;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 8px;
}
.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.urgency-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 40px;
}

/* ════════════════════════════════════════
   LEAD FORM SECTION
════════════════════════════════════════ */
.lead-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
}
.lead-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.lead-info p {
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 36px;
}
.lead-benefits { display: flex; flex-direction: column; gap: 20px; }
.lb-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.lb-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-item strong {
    display: block;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.lb-item p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }
.lead-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
}
.lead-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 28px;
    text-align: center;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.file-upload-area {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-500);
}
.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.03);
    color: var(--gold);
}
.file-upload-area.has-file { border-color: #4CAF50; color: #4CAF50; background: rgba(76,175,80,0.03); }
.file-upload-area svg { margin: 0 auto 10px; }
.file-upload-area span { display: block; font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.file-upload-area small { font-size: 12px; opacity: 0.7; }
.form-privacy {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 12px;
}
.form-success {
    text-align: center;
    padding: 40px;
}
.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 auto 24px;
}
.success-icon.small {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 16px;
}
.form-success h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 12px;
}
.form-success p {
    color: var(--gray-700);
    margin-bottom: 24px;
    text-align: center !important;
}



/* ════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.5);
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.whatsapp-float.pulse { animation: waPulse 2.5s ease-in-out infinite; }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 24px rgba(37,211,102,0.5), 0 0 0 16px rgba(37,211,102,0); }
}
/* SPEED: only animate box-shadow, GPU-friendly */
.whatsapp-float { transform: translateZ(0); }
.wa-tooltip {
    position: absolute;
    right: 72px;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow);
}
.wa-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--navy);
}
.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ════════════════════════════════════════
   CALLBACK POPUP
════════════════════════════════════════ */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.popup-overlay.show { opacity: 1; pointer-events: all; }
.popup-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 440px;
    width: 100%;
    position: relative;
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.4s ease;
    box-shadow: var(--shadow-lg);
}
.popup-overlay.show .popup-box { transform: translateY(0); }
.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-700);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.popup-close:hover { background: var(--gray-300); }
.popup-icon { font-size: 48px; margin-bottom: 16px; }
.popup-box h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}
.popup-box > p {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.7;
}
.popup-box form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}
.popup-box .form-input {
    background: var(--off-white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 13px 16px;
    font-size: 14px;
    color: var(--text-dark);
    width: 100%;
    outline: none;
    transition: var(--transition);
}
.popup-box .form-input:focus { border-color: var(--gold); }
.popup-box .form-input::placeholder { color: var(--gray-500); }
.popup-box .form-input option { background: var(--white); }
.popup-success { padding: 20px; }
.popup-success p { color: var(--gray-700); font-size: 15px; }

/* ════════════════════════════════════════
   RESPONSIVE — LARGE DESKTOP (1400px+)
════════════════════════════════════════ */
@media (min-width: 1400px) {
    :root { --container: 1320px; }
    .hero-headline { font-size: 68px; }
    .section-title { font-size: 56px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — DESKTOP (1025px – 1280px)
════════════════════════════════════════ */
@media (max-width: 1280px) {
    :root { --container: 1100px; }
    .hero-headline { font-size: clamp(34px, 4.5vw, 56px); }
    .hero-grid { gap: 40px; }
    .solution-grid { gap: 48px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .portfolio-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .authority-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .process-timeline { gap: 0; }
}

/* ════════════════════════════════════════
   RESPONSIVE — TABLET LANDSCAPE (769px – 1024px)
════════════════════════════════════════ */
@media (max-width: 1024px) {

    /* Header */
    .main-nav, .header-cta { display: none; }
    .mobile-menu-btn { display: flex; }

    /* Container */
    .container { padding: 0 32px; }

    /* Hero */
    .hero { padding: 110px 0 72px; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; max-width: 600px; margin: 0 auto; width: 100%; }
    .hero-stat-float { bottom: -16px; right: 0; }
    .hero-headline { font-size: clamp(34px, 5vw, 52px); }
    .hero-sub { font-size: 16px; max-width: 100%; }
    .hero-badge { font-size: 11px; }
    .form-row { grid-template-columns: 1fr 1fr; }
    .trust-badges { gap: 10px; }

    /* Proof Bar */
    .proof-bar-grid { gap: 16px; }
    .proof-num { font-size: 24px; }

    /* Pain Section */
    .pain-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* Solution */
    .solution-grid { grid-template-columns: 1fr; gap: 48px; }
    .solution-visual { order: -1; max-width: 560px; margin: 0 auto; }
    .solution-img-accent { display: none; }

    /* Services */
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

    /* Portfolio */
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

    /* Process */
    .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; padding-top: 20px; }
    .process-line { display: none; }
    .step-num { top: -30px; font-size: 60px; }

    /* Authority */
    .authority-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

    /* Reviews */
    .reviews-grid { grid-template-columns: 1fr; gap: 40px; }
    .big-rating { font-size: 72px; }

    /* CTA */
    .cta-grid { grid-template-columns: 1fr; gap: 40px; }
    .cta-image img { height: 360px; }

    /* Lead Form */
    .lead-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .lead-form-wrap { padding: 40px 36px; }

    /* Popup */
    .popup-box { padding: 40px 32px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — TABLET PORTRAIT (481px – 768px)
════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Container */
    .container { padding: 0 20px; }

    /* Sections */
    .pain-section,
    .solution-section,
    .services-section,
    .portfolio-section,
    .process-section,
    .authority-section,
    .reviews-section,
    .cta-section,
    .lead-section { padding: 72px 0; }

    /* Hero */
    .hero { padding: 96px 0 64px; }
    .hero-headline { font-size: clamp(30px, 6vw, 44px); }
    .hero-sub { font-size: 15px; }
    .hero-form { padding: 20px; }
    .form-row { grid-template-columns: 1fr; gap: 10px; }
    .hero-buttons { gap: 10px; }
    .hero-buttons .btn { padding: 13px 22px; font-size: 13px; }
    .trust-badges { flex-wrap: wrap; gap: 8px; }
    .badge { font-size: 11px; padding: 5px 12px; }

    /* Before/After */
    .before-after-container { aspect-ratio: 16/10; }
    .hero-stat-float {
        position: relative;
        bottom: auto; right: auto;
        margin-top: 12px;
        display: inline-flex;
        gap: 12px;
        align-items: center;
        padding: 14px 20px;
    }
    .stat-num { font-size: 28px; }
    .stat-text { font-size: 10px; }

    /* Proof Bar */
    .proof-bar { padding: 20px 0; }
    .proof-bar-grid { flex-wrap: wrap; gap: 16px; justify-content: center; }
    .proof-divider { display: none; }
    .proof-item { min-width: 140px; }
    .proof-num { font-size: 22px; }
    .proof-label { font-size: 12px; }

    /* Pain Section */
    .pain-grid { grid-template-columns: 1fr; gap: 16px; }
    .pain-card { padding: 28px 22px; }

    /* Solution */
    .solution-grid { gap: 36px; }
    .benefit-list { gap: 16px; }
    .benefit-item { gap: 12px; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 14px; }
    .service-card { padding: 28px 22px; }

    /* Portfolio */
    .portfolio-grid { grid-template-columns: 1fr; gap: 16px; }

    /* Process */
    .process-timeline { grid-template-columns: 1fr; gap: 28px; padding-top: 0; }
    .process-step { padding: 0; }
    .step-num { display: none; }
    .step-icon { width: 52px; height: 52px; font-size: 24px; }
    .process-step h3 { font-size: 18px; }

    /* Authority */
    .authority-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .authority-card { padding: 28px 18px; }
    .auth-icon { font-size: 36px; }

    /* Reviews */
    .reviews-grid { gap: 32px; }
    .big-rating { font-size: 64px; }
    .rating-stars { font-size: 20px; }
    .review-card { padding: 28px 24px; }
    .review-text { font-size: 15px; }

    /* CTA */
    .cta-image { display: none; }
    .cta-content { padding: 0; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; justify-content: center; }

    /* Lead Form */
    .lead-wrapper { gap: 36px; }
    .lead-form-wrap { padding: 32px 24px; }
    .lead-form-wrap h3 { font-size: 22px; margin-bottom: 22px; }
    .lead-info p { font-size: 15px; }
    .lead-benefits { gap: 16px; }

    /* Section Typography */
    .section-title { font-size: clamp(26px, 6vw, 40px); }
    .section-sub { font-size: 15px; margin-bottom: 36px; }

    /* WhatsApp */
    .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
    .whatsapp-float svg { width: 24px; height: 24px; }

    /* Popup */
    .popup-box { padding: 36px 24px; max-width: 100%; }
    .popup-box h3 { font-size: 22px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (max 480px)
════════════════════════════════════════ */
@media (max-width: 480px) {

    /* Container */
    .container { padding: 0 16px; }

    /* Sections */
    .pain-section,
    .solution-section,
    .services-section,
    .portfolio-section,
    .process-section,
    .authority-section,
    .reviews-section,
    .cta-section,
    .lead-section { padding: 56px 0; }

    /* Header */
    .logo-text { font-size: 18px; }
    .logo-icon { font-size: 18px; }

    /* Hero */
    .hero { padding: 88px 0 56px; }
    .hero-headline { font-size: clamp(26px, 7vw, 36px); line-height: 1.15; }
    .hero-sub { font-size: 14px; margin-bottom: 24px; }
    .hero-badge { font-size: 10px; padding: 6px 12px; margin-bottom: 16px; }
    .hero-form { padding: 16px; gap: 10px; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .hero-buttons .btn { width: 100%; justify-content: center; padding: 14px 20px; }
    .trust-badges { flex-direction: column; align-items: flex-start; gap: 8px; }
    .badge { font-size: 11px; }

    /* Before/After */
    .before-after-container { aspect-ratio: 4/3; }
    .ba-handle { width: 34px; height: 34px; font-size: 14px; }
    .hero-stat-float { width: 100%; justify-content: center; margin-top: 10px; }
    .stat-num { font-size: 26px; }

    /* Proof Bar */
    .proof-bar-grid { grid-template-columns: repeat(2, 1fr); display: grid; gap: 16px; }
    .proof-item { text-align: center; min-width: unset; }
    .proof-num { font-size: 20px; }
    .proof-label { font-size: 11px; }

    /* Section Typography */
    .section-title { font-size: clamp(24px, 7vw, 34px); }
    .section-sub { font-size: 14px; margin-bottom: 28px; }
    .section-tag { font-size: 10px; letter-spacing: 2px; padding: 5px 14px; }

    /* Pain Section */
    .pain-card { padding: 24px 18px; }
    .pain-icon { font-size: 34px; margin-bottom: 12px; }
    .pain-card h3 { font-size: 18px; }
    .pain-card p { font-size: 13px; }
    .pain-list li { font-size: 12px; }
    .pain-quote { padding: 24px 20px; }
    .pain-quote p { font-size: clamp(16px, 4vw, 22px); }

    /* Solution */
    .benefit-check { width: 24px; height: 24px; font-size: 11px; }
    .benefit-item strong { font-size: 14px; }
    .benefit-item p { font-size: 12px; }
    .solution-stat { left: 0; bottom: -10px; padding: 12px 16px; }
    .s-num { font-size: 26px; }
    .s-txt { font-size: 10px; }

    /* Services */
    .service-card { padding: 24px 18px; }
    .service-icon-wrap { width: 48px; height: 48px; margin-bottom: 14px; }
    .service-card h3 { font-size: 18px; }
    .service-card p { font-size: 13px; }
    .service-badge { font-size: 9px; padding: 3px 10px; }

    /* Portfolio */
    .portfolio-info h4 { font-size: 16px; }
    .p-type { font-size: 10px; }

    /* Process */
    .process-step h3 { font-size: 17px; }
    .process-step p { font-size: 13px; }
    .step-icon { width: 48px; height: 48px; font-size: 22px; margin-bottom: 14px; }

    /* Authority */
    .authority-grid { grid-template-columns: 1fr; gap: 12px; }
    .authority-card { padding: 24px 18px; }
    .auth-icon { font-size: 32px; margin-bottom: 12px; }
    .authority-card h3 { font-size: 17px; }
    .authority-card p { font-size: 13px; }

    /* Reviews */
    .big-rating { font-size: 56px; }
    .rating-stars { font-size: 18px; }
    .rating-count { font-size: 13px; }
    .review-card { padding: 24px 20px; }
    .review-text { font-size: 14px; }
    .reviewer-avatar { width: 38px; height: 38px; font-size: 12px; }
    .review-author strong { font-size: 14px; }
    .review-author span { font-size: 12px; }
    .carousel-btn { width: 34px; height: 34px; font-size: 14px; }

    /* CTA */
    .cta-body { font-size: 14px; }
    .cta-features span { font-size: 13px; }
    .urgency-badge { font-size: 12px; padding: 7px 14px; }

    /* Lead Form */
    .lead-form-wrap { padding: 28px 18px; border-radius: var(--radius-lg); }
    .lead-form-wrap h3 { font-size: 20px; margin-bottom: 20px; }
    .form-group label { font-size: 12px; }
    .form-group input,
    .form-group select { padding: 12px 14px; font-size: 13px; }
    .file-upload-area { padding: 20px 16px; }
    .file-upload-area span { font-size: 13px; }
    .file-upload-area small { font-size: 11px; }
    .btn-large { padding: 15px 24px; font-size: 14px; }
    .form-privacy { font-size: 11px; }
    .lead-benefits { gap: 14px; }
    .lb-item { gap: 12px; }
    .lb-icon { width: 38px; height: 38px; font-size: 20px; }
    .lb-item strong { font-size: 14px; }
    .lb-item p { font-size: 12px; }

    /* Popup */
    .popup-box { padding: 32px 20px; }
    .popup-icon { font-size: 40px; }
    .popup-box h3 { font-size: 20px; }
    .popup-box > p { font-size: 13px; }
    .popup-box .form-input { padding: 12px 14px; font-size: 13px; }

    /* WhatsApp */
    .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
    .wa-tooltip { display: none; }
}

/* ════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 360px)
════════════════════════════════════════ */
@media (max-width: 360px) {
    .container { padding: 0 12px; }
    .hero-headline { font-size: 24px; }
    .section-title { font-size: 22px; }
    .hero-form { padding: 14px; }
    .proof-bar-grid { grid-template-columns: 1fr 1fr; }
    .authority-grid { grid-template-columns: 1fr; }
    .lead-form-wrap { padding: 24px 14px; }
    .lead-form-wrap h3 { font-size: 18px; }
    .btn { padding: 12px 18px; font-size: 13px; }
    .btn-large { padding: 14px 20px; font-size: 13px; }
}

/* ════════════════════════════════════════
   WORDPRESS COMPATIBILITY OVERRIDES
   (prevents theme CSS conflicts)
════════════════════════════════════════ */
.sp-landing-page * { box-sizing: border-box; }
.sp-landing-page img { height: auto; }
.sp-landing-page button:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.sp-landing-page input:focus-visible { outline: none; }

/* Smooth scroll offset for fixed header */
section[id] { scroll-margin-top: 80px; }

/* ════════════════════════════════════════
   SPEED: content-visibility for off-screen sections
   (Browser skips rendering until section scrolled near)
════════════════════════════════════════ */
.pain-section,
.solution-section,
.process-section,
.authority-section,
.reviews-section,
.cta-section {
    content-visibility: auto;
    contain-intrinsic-size: 0 600px; /* estimated height prevents layout shift */
}

/* SPEED: font-display handled via Google Fonts URL param */
/* SPEED: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    [data-animate] { opacity: 1 !important; transform: none !important; transition: none !important; }
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}/* End custom CSS */