/* ============================================
   ZEPHYRA STUDIO - Main Stylesheet
   Design: Zephyra Studio custom theme
   Font: Plus Jakarta Sans
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --gradient: linear-gradient(90deg, #ff007b, #d330e9, #6d33fd);
    --gradient-reverse: linear-gradient(90deg, #6d33fd, #d330e9, #ff007b);
    --primary: #6d33fd;
    --primary-light: #8a5cff;
    --secondary: #ff007b;
    --accent: #d330e9;
    --dark: #0c0914;
    --dark-card: #151025;
    --text: #1a1a2e;
    --text-light: #555770;
    --text-muted: #8e90a6;
    --bg: #ffffff;
    --bg-warm: #fffbf5;
    --bg-light: #faf7ff;
    --bg-section: #f3eeff;
    --bg-dark: #0c0914;
    --card-bg: #ffffff;
    --card-border: #ede8f5;
    --shadow-sm: 0 2px 8px rgba(109, 51, 253, 0.05);
    --shadow-md: 0 8px 30px rgba(109, 51, 253, 0.08);
    --shadow-lg: 0 16px 48px rgba(109, 51, 253, 0.12);
    --shadow-xl: 0 24px 64px rgba(109, 51, 253, 0.16);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 100px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset and Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; touch-action: manipulation; }
body {
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
input, button, textarea, select { font-family: inherit; font-size: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.btn-sm { padding: 12px 24px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-block { width: 100%; padding-top: 16px; padding-bottom: 16px; }

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 2px 12px rgba(109, 51, 253, 0.2);
}
.btn-primary:hover {
    box-shadow: 0 4px 20px rgba(109, 51, 253, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-ghost {
    background: rgba(109, 51, 253, 0.06);
    color: var(--text);
    border: 2px solid var(--card-border);
}
.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(109, 51, 253, 0.08);
}

.btn-arrow { font-size: 18px; transition: var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Section Common ---------- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.section-tag {
    display: inline-block;
    background: var(--bg-section);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section-header p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.7;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(237, 232, 245, 0.6);
    transition: var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(109, 51, 253, 0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--text);
}
.logo-svg { flex-shrink: 0; }
.logo-text {
    color: var(--text);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.3px;
}
.logo-img {
    height: 32px;
    width: auto;
    flex-shrink: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    letter-spacing: -0.01em;
}
.main-nav a:hover { color: var(--primary); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 999;
    padding: 32px 24px;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
    overflow-y: auto;
}
.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 998;
    opacity: 0;
    transition: var(--transition);
}
.mobile-menu-overlay.active {
    opacity: 1;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mobile-nav > a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--card-border);
}
.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.mobile-nav-cta .btn {
    text-align: center;
    width: 100%;
}

/* Mobile actions (theme toggle + hamburger) */
.mobile-actions {
    display: none;
    align-items: center;
    gap: 12px;
}
.theme-toggle-mobile {
    width: 38px;
    height: 38px;
}

/* ============================================
   1. HERO
   ============================================ */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: var(--bg-warm);
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(109, 51, 253, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.7;
}
.hero-float {
    position: absolute;
    opacity: 0.18;
    color: var(--primary);
    animation: heroFloat 8s ease-in-out infinite;
}
.hero-float-1 { top: 12%; left: 6%; animation-delay: 0s; }
.hero-float-2 { top: 25%; right: 8%; animation-delay: 1.5s; }
.hero-float-3 {
    bottom: 35%; left: 10%;
    font-family: 'Courier New', monospace;
    font-size: 32px;
    font-weight: 700;
    animation-delay: 3s;
}
.hero-float-4 { top: 45%; right: 15%; animation-delay: 2s; }
.hero-float-5 { bottom: 25%; right: 6%; animation-delay: 4s; }
.hero-float-6 { top: 55%; left: 18%; animation-delay: 5s; }
.hero-float-7 { bottom: 15%; left: 35%; animation-delay: 3.5s; }
.hero-float-8 { top: 18%; right: 22%; animation-delay: 1s; }

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(5deg); }
}

.hero-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(109, 51, 253, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 72px;
}
.hero-badge {
    display: inline-block;
    background: rgba(109, 51, 253, 0.06);
    border: 1px solid rgba(109, 51, 253, 0.12);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text);
}
.hero-sub {
    font-size: 19px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-visual {
    margin-top: 48px;
    text-align: center;
}
.hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.section-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 32px auto 0;
    border-radius: var(--radius-lg);
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 44px 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--card-border);
    position: relative;
    z-index: 2;
}
.stat-item {
    text-align: center;
    flex: 1;
    padding: 0 32px;
}
.stat-divider {
    width: 1px;
    height: 56px;
    background: var(--card-border);
    flex-shrink: 0;
}
.stat-number {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}
.stat-star {
    color: inherit;
    -webkit-text-fill-color: inherit;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 500;
}

/* ============================================
   2. TRUST BAR
   ============================================ */
.trust-bar {
    padding: 24px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--card-border);
}
.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}
.trust-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
}
.trust-divider {
    width: 1px;
    height: 20px;
    background: var(--card-border);
    flex-shrink: 0;
}

/* ============================================
   3. SOCIAL PROOF
   ============================================ */
.social-proof {
    padding: 48px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--card-border);
}
.proof-text {
    font-size: 15px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 32px;
}
.proof-text strong { color: var(--text); }

.logo-slider {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.logo-track {
    display: flex;
    gap: 60px;
    animation: slide 30s linear infinite;
    width: max-content;
}
.logo-item {
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 700;
    color: #d4cee6;
    letter-spacing: 0.5px;
    white-space: nowrap;
    padding: 8px 0;
}
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   4. SERVICES
   ============================================ */
.services-section {
    padding: 120px 0;
    background: var(--bg);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(109, 51, 253, 0.15);
}
.service-card.featured {
    border: 2px solid transparent;
    background-image: linear-gradient(var(--card-bg), var(--card-bg)), var(--gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: var(--shadow-md);
}
.service-popular {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-section);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    color: var(--primary);
}
.service-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.service-card > p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
}
.service-features { margin-bottom: 28px; }
.service-features li {
    padding: 7px 0;
    font-size: 15px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.service-features li::before {
    content: '\2713';
    color: var(--primary);
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-section);
    border-radius: 50%;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.service-link span { transition: var(--transition); }
.service-link:hover span { transform: translateX(4px); }

/* ============================================
   5. WHY ZEPHYRA
   ============================================ */
.why-section {
    padding: 120px 0;
    background: var(--bg-section);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(109, 51, 253, 0.15);
}
.why-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
}
.why-card .why-title {
    display: block;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.why-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.65;
}

/* ============================================
   6. HOW IT WORKS
   ============================================ */
.process-section {
    padding: 120px 0;
    background: var(--bg);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}
.process-step {
    text-align: center;
    position: relative;
    padding: 40px 24px;
}
.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(90deg, #e828b1, #d330e9, #9a32f3);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.process-connector {
    position: absolute;
    top: 72px;
    right: -16px;
    width: calc(100% - 64px);
    height: 2px;
    background: var(--card-border);
    z-index: 1;
    left: calc(50% + 32px);
}
.process-step:last-child .process-connector { display: none; }
.process-step .process-title {
    display: block;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.process-step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.65;
    max-width: 300px;
    margin: 0 auto;
}

/* ============================================
   7. PORTFOLIO
   ============================================ */
.portfolio-section {
    padding: 120px 0;
    background: var(--bg-light);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    aspect-ratio: 3/5;
    cursor: pointer;
}
.portfolio-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.portfolio-placeholder { opacity: 0.5; }
.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover .portfolio-image { transform: scale(1.05); }
.portfolio-cat {
    font-size: 11px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.portfolio-overlay .portfolio-title {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}
.portfolio-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transform: translate(10px, -10px);
    transition: var(--transition);
}
.portfolio-item:hover .portfolio-arrow { transform: translate(0, 0); }

/* ============================================
   8. RESULTS IN NUMBERS
   ============================================ */
.results-section {
    padding: 100px 0;
    background: var(--bg-dark);
}
.results-section .section-header { margin-bottom: 56px; }
.results-section .section-tag {
    background: rgba(109, 51, 253, 0.15);
    color: var(--accent);
}
.results-section .section-header h2 { color: #fff; }
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.result-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
}
.result-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* ============================================
   9. PRICING
   ============================================ */
.pricing-section {
    padding: 120px 0;
    background: var(--bg);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}
.pricing-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    text-align: center;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.pricing-featured {
    border: 2px solid transparent;
    background-image: linear-gradient(var(--card-bg), var(--card-bg)), var(--gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
    z-index: 1;
}
.pricing-featured:hover {
    transform: scale(1.04) translateY(-6px);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.pricing-header { margin-bottom: 24px; }
.pricing-header .pricing-title {
    display: block;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.pricing-desc {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}
.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}
.price-amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: var(--text);
    letter-spacing: -0.03em;
}
.price-type {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 24px;
}
.pricing-features {
    text-align: left;
    margin-bottom: 28px;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(237, 232, 245, 0.6);
    font-weight: 500;
}
.pricing-features li:last-child { border-bottom: none; }
.pf-check {
    flex-shrink: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 11px;
    margin-top: 3px;
}

/* Maintenance Section */
.maintenance-section {
    margin-top: 72px;
    text-align: center;
    padding: 56px;
    background: var(--bg-section);
    border-radius: var(--radius-xl);
}
.maintenance-section .maintenance-title {
    display: block;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.maintenance-section > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.maint-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
}
.maint-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.maint-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.maint-price span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
}
.maint-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-note {
    text-align: center;
    margin-top: 48px;
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}
.pricing-note a { font-weight: 700; }

/* ============================================
   10. ADD-ONS
   ============================================ */
.addons-section {
    padding: 120px 0;
    background: var(--bg-light);
}
.addons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.addon-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}
.addon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(109, 51, 253, 0.12);
}
.addon-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    height: 32px;
    color: var(--primary);
}
.addon-card .addon-title {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.addon-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   11. TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 120px 0;
    background: var(--bg);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(109, 51, 253, 0.12);
}
.testimonial-stars {
    font-size: 18px;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-section);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}
.testimonial-author strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}
.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}
.testimonials-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

/* ============================================
   12. SPECIAL OFFER
   ============================================ */
.special-offer {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}
.special-offer::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(109, 51, 253, 0.12), transparent 70%);
    border-radius: 50%;
}
.offer-card { position: relative; z-index: 1; }
.offer-badge {
    display: inline-block;
    background: var(--gradient);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    margin-bottom: 36px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 123, 0.3); }
    50% { box-shadow: 0 0 0 14px rgba(255, 0, 123, 0); }
}
.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.offer-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.offer-content > p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 17px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.offer-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 70%;
}
@media (max-width: 768px) {
    .offer-features { max-width: 100%; }
}
.offer-features li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}
.offer-features .check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(109, 51, 253, 0.2);
    color: var(--accent);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    margin-top: 2px;
}
.offer-features strong { color: #fff; }
.offer-price {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 36px;
}
.price-old {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    font-weight: 500;
}
.price-new {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-save {
    background: rgba(39, 201, 63, 0.12);
    color: #27c93f;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}
.offer-visual { position: relative; display: flex; justify-content: center; }
.offer-phone { position: relative; z-index: 1; }
.phone-frame {
    width: 260px;
    background: var(--dark-card);
    border-radius: 32px;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}
.phone-screen {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    padding: 16px;
}
[data-theme="dark"] .phone-screen {
    background: #1a1530;
}
[data-theme="dark"] .phone-product {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .phone-img-placeholder {
    background: linear-gradient(135deg, rgba(109,51,253,0.15), rgba(211,48,233,0.1));
}
.phone-header-bar {
    height: 24px;
    background: var(--gradient);
    border-radius: 8px;
    margin-bottom: 16px;
    opacity: 0.8;
}
.phone-product {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0eef5;
}
.phone-product:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.phone-img-placeholder {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #f5f0ff, #e8e0ff);
    border-radius: 10px;
    margin-bottom: 10px;
}
.phone-product-name { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.phone-product-price { font-size: 15px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.phone-btn {
    background: var(--gradient);
    color: #fff;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}
.offer-float-card {
    position: absolute;
    background: rgba(21, 16, 37, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    white-space: nowrap;
    animation: floatCard 4s ease-in-out infinite;
}
.float-1 { top: 20%; left: -20px; animation-delay: 0s; }
.float-2 { bottom: 15%; right: -20px; animation-delay: 2s; }
.float-icon { font-size: 20px; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   13. AUDIT LEAD MAGNET
   ============================================ */
.audit-section {
    padding: 120px 0;
    background: linear-gradient(160deg, #e5d6ff 0%, #dbc6ff 30%, #efe0ff 70%, #e3d0ff 100%);
    position: relative;
    overflow: hidden;
}
[data-theme="dark"] .audit-section {
    background: linear-gradient(160deg, #1a1035 0%, #150d28 50%, #1e1240 100%);
}
.audit-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(109, 51, 253, 0.10) 0%, transparent 70%);
    pointer-events: none;
}
.audit-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 123, 0.07) 0%, transparent 70%);
    pointer-events: none;
}
.audit-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 64px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--card-border);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.audit-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.audit-content p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 1.7;
}
.audit-inputs {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.input-group {
    flex: 1;
    min-width: 200px;
    position: relative;
}
.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}
.input-group input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid var(--card-border);
    border-radius: var(--radius-full);
    font-size: 15px;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
    outline: none;
    font-weight: 500;
}
.input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(109, 51, 253, 0.08);
}
.input-group input::placeholder { color: var(--text-muted); }

/* CAPTCHA */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    justify-content: center;
}
.captcha-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}
.captcha-input {
    width: 100px;
    padding: 12px 16px;
    border: 2px solid var(--card-border);
    border-radius: var(--radius-full);
    font-size: 15px;
    color: var(--text);
    background: var(--bg);
    text-align: center;
    transition: var(--transition);
    outline: none;
    font-weight: 700;
}
.captcha-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(109, 51, 253, 0.08);
}

.audit-message {
    min-height: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 8px;
}
.audit-message.success { color: #27c93f; }
.audit-message.error { color: #ff5f56; }

/* Audit trust items with gradient checkmarks */
.audit-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px 32px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.audit-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.audit-check {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 18px;
}
.audit-note {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.audit-delivery-toggle {
    text-align: center;
    margin-bottom: 16px;
}
.audit-switch-link {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: underline;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}
.audit-switch-link:hover {
    color: var(--primary);
}
.audit-newsletter {
    margin: 4px 0 12px;
    text-align: center;
}
.audit-newsletter-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    cursor: pointer;
}
.audit-newsletter-label input[type="checkbox"] {
    accent-color: var(--primary);
    width: 14px;
    height: 14px;
    cursor: pointer;
}

/* Input icon SVG alignment */
.input-icon svg {
    display: block;
    flex-shrink: 0;
}

/* Standalone audit page */
.audit-standalone-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.audit-standalone-page::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(109, 51, 253, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.audit-standalone-page::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 123, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.audit-standalone-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.audit-standalone-page .audit-card {
    max-width: 640px;
    width: 100%;
    background: linear-gradient(145deg, var(--card-bg) 0%, #f5f0ff 50%, #efe6ff 100%);
    border: 1px solid rgba(109, 51, 253, 0.10);
}
[data-theme="dark"] .audit-standalone-page .audit-card {
    background: linear-gradient(145deg, #1a1235 0%, #1e1540 50%, #221848 100%);
    border-color: rgba(109, 51, 253, 0.15);
}
.audit-standalone-page .audit-brand {
    margin-bottom: 24px;
}
.audit-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}
.audit-brand-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Social proof strip */
.audit-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px 32px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    width: 100%;
}
.audit-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}
.audit-proof-number {
    font-size: 20px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.audit-proof-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}
.audit-proof-divider {
    width: 1px;
    height: 36px;
    background: var(--card-border);
}

/* Standalone footer */
.audit-standalone-footer {
    text-align: center;
}
.audit-standalone-footer p {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.audit-standalone-footer a {
    color: var(--text-muted);
    text-decoration: underline;
    transition: var(--transition);
}
.audit-standalone-footer a:hover {
    color: var(--primary);
}

@media (max-width: 480px) {
    .audit-social-proof {
        gap: 16px;
        padding: 16px 20px;
    }
    .audit-proof-number {
        font-size: 16px;
    }
    .audit-proof-label {
        font-size: 11px;
    }
}

/* ============================================
   14. BLOG PREVIEW
   ============================================ */
.blog-section {
    padding: 80px 0 120px;
    background: var(--bg);
}
.blog-featured {
    margin-bottom: 48px;
}
.blog-featured-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.blog-featured-inner:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(109, 51, 253, 0.12);
}
.blog-featured-thumb {
    height: 320px;
    overflow: hidden;
    background: var(--bg-section);
}
.blog-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-featured-inner:hover .blog-featured-thumb img { transform: scale(1.03); }
.blog-featured-content {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-featured-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin: 8px 0 12px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}
.blog-featured-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}
.blog-read-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.blog-card {
    display: block;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(109, 51, 253, 0.12);
}
.blog-thumb {
    height: 200px;
    overflow: hidden;
    background: var(--bg-section);
}
.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: linear-gradient(135deg, var(--bg-section), var(--bg-light));
}
.blog-info {
    padding: 24px;
}
.blog-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}
.blog-info .blog-title {
    display: block;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.blog-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}
.blog-cta {
    text-align: center;
}
.blog-cta .btn {
    padding: 4px 40px;
}
.blog-placeholder-card {
    cursor: default;
}

/* ============================================
   15. FAQ
   ============================================ */
.faq-section {
    padding: 120px 0;
    background: var(--bg-section);
}
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}
.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(109, 51, 253, 0.18);
}
.faq-item.active {
    border-color: rgba(109, 51, 253, 0.25);
    box-shadow: 0 8px 32px rgba(109, 51, 253, 0.10);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    transition: var(--transition);
    gap: 16px;
    letter-spacing: -0.01em;
}
.faq-question:hover { color: var(--primary); }
.faq-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 22px;
    font-weight: 300;
    color: var(--primary);
    transition: var(--transition);
    line-height: 1;
    padding: 0;
    padding-bottom: 3px;
}
.faq-item.active .faq-toggle {
    background: var(--gradient);
    color: #fff;
    transform: rotate(45deg);
    border-radius: 50%;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 28px 22px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   16. CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 120px 0;
    background: var(--bg);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.contact-info > p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}
.contact-method:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}
.contact-method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    color: var(--primary);
    flex-shrink: 0;
}
.contact-method strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}
.contact-method span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.contact-form .form-group {
    margin-bottom: 16px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--card-border);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
    outline: none;
    font-weight: 500;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(109, 51, 253, 0.08);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form select { color: var(--text-muted); cursor: pointer; appearance: none; }
.contact-form select:valid { color: var(--text); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-message {
    min-height: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
    text-align: center;
}
.contact-message.success { color: #27c93f; }
.contact-message.error { color: #ff5f56; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-section);
    color: var(--text-light);
}

.footer-cta-strip {
    background: #fff;
    border-bottom: 1px solid var(--card-border);
    padding: 64px 0;
}
.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.footer-cta-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.footer-cta-text p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 16px;
}

.footer-main { padding: 64px 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 16px;
}
.footer-logo .logo-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.45);
}
.footer-social {
    display: flex;
    gap: 10px;
}
.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}
.social-link:hover {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    outline: none;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    font-weight: 500;
}
.footer-col a:hover { color: #fff; }

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contact-link svg {
    flex-shrink: 0;
    opacity: 0.45;
}

.footer-bottom {
    background: #160d2e;
    border-top: 1px solid rgba(109, 51, 253, 0.15);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    font-weight: 500;
}
.footer-bottom-links a:hover { color: rgba(255, 255, 255, 0.8); }

/* ============================================
   DARK / LIGHT THEME
   ============================================ */

/* Theme toggle button */
.theme-toggle {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(109, 51, 253, 0.06);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
    flex-shrink: 0;
    padding: 0;
}
.theme-toggle:hover {
    background: rgba(109, 51, 253, 0.12);
    color: var(--primary);
}
.theme-toggle .icon-sun,
.theme-toggle .icon-moon { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

/* Dark theme variables */
[data-theme="dark"] {
    --text: #e0dee8;
    --text-light: #b0acbe;
    --text-muted: #8a86a0;
    --bg: #141020;
    --bg-warm: #181428;
    --bg-light: #1a1630;
    --bg-section: #1e1838;
    --bg-dark: #100c1a;
    --card-bg: #1e1838;
    --card-border: rgba(255, 255, 255, 0.10);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.18);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.22);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.26);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.30);
}
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* Dark: header */
[data-theme="dark"] .site-header {
    background: rgba(20, 16, 32, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
[data-theme="dark"] .logo-text { color: #fff; }
[data-theme="dark"] .mobile-toggle span { background: #e0dee8; }

/* Dark: mobile menu */
[data-theme="dark"] .mobile-menu {
    background: rgba(20, 16, 32, 0.98);
}
[data-theme="dark"] .mobile-nav > a {
    color: #e0dee8;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* Dark: hero */
[data-theme="dark"] .hero-grid-pattern {
    background-image: radial-gradient(circle, rgba(109, 51, 253, 0.08) 1px, transparent 1px);
}

/* Dark: buttons */
[data-theme="dark"] .btn-ghost {
    background: rgba(109, 51, 253, 0.10);
    color: #e0dee8;
    border-color: rgba(255, 255, 255, 0.12);
}
[data-theme="dark"] .btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(109, 51, 253, 0.12);
}
[data-theme="dark"] .btn-outline {
    color: var(--primary-light);
    border-color: var(--primary-light);
}
[data-theme="dark"] .btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* Dark: trust bar */
[data-theme="dark"] .trust-bar {
    background: var(--bg);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* Dark: social proof */
[data-theme="dark"] .social-proof {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .logo-item { color: rgba(255, 255, 255, 0.15); }

/* Dark: service cards */
[data-theme="dark"] .why-card { background: #1c1632; }
[data-theme="dark"] .maint-card { background: rgba(255, 255, 255, 0.03); }
[data-theme="dark"] .service-card.featured {
    background-image: linear-gradient(var(--card-bg), var(--card-bg)), var(--gradient);
}

/* Dark: pricing */
[data-theme="dark"] .pricing-featured {
    background-image: linear-gradient(var(--card-bg), var(--card-bg)), var(--gradient);
}
[data-theme="dark"] .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* Dark: form inputs */
[data-theme="dark"] .input-group input,
[data-theme="dark"] .captcha-input,
[data-theme="dark"] .contact-form input[type="text"],
[data-theme="dark"] .contact-form input[type="email"],
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: #e0dee8;
}
[data-theme="dark"] .input-group input:focus,
[data-theme="dark"] .captcha-input:focus,
[data-theme="dark"] .contact-form input:focus,
[data-theme="dark"] .contact-form select:focus,
[data-theme="dark"] .contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(109, 51, 253, 0.15);
}
[data-theme="dark"] .contact-form select { color: var(--text-muted); }
[data-theme="dark"] .contact-form select:valid { color: #e0dee8; }

/* Dark: audit card */
[data-theme="dark"] .audit-card {
    background: var(--card-bg);
    border-color: rgba(255, 255, 255, 0.06);
}

/* Dark: FAQ */
[data-theme="dark"] .faq-toggle {
    background: rgba(109, 51, 253, 0.12);
}

/* Dark: contact form wrap */
[data-theme="dark"] .contact-form-wrap {
    background: var(--card-bg);
    border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .contact-method {
    background: rgba(255, 255, 255, 0.03);
}
[data-theme="dark"] .contact-method:hover {
    background: rgba(109, 51, 253, 0.06);
}
[data-theme="dark"] .contact-method-icon {
    background: rgba(255, 255, 255, 0.04);
}

/* Dark: testimonials */
[data-theme="dark"] .testimonial-text { color: #e0dee8; }

/* Dark: addon icons */
[data-theme="dark"] .addon-icon { color: #fff; }
[data-theme="dark"] .addon-icon svg { stroke: #fff; }

/* ===== LIGHT FOOTER (default / light theme) ===== */
[data-theme="light"] .site-footer,
:root:not([data-theme="dark"]) .site-footer {
    background: #ffffff !important;
    color: var(--text-light) !important;
}
[data-theme="light"] .footer-cta-strip,
:root:not([data-theme="dark"]) .footer-cta-strip {
    background: #f8f5ff !important;
    border-bottom: 1px solid var(--card-border);
}
[data-theme="light"] .footer-cta-text h3,
:root:not([data-theme="dark"]) .footer-cta-text h3 {
    color: var(--text);
}
[data-theme="light"] .footer-cta-text p,
:root:not([data-theme="dark"]) .footer-cta-text p {
    color: var(--text-light);
}
[data-theme="light"] .footer-main,
:root:not([data-theme="dark"]) .footer-main {
    padding: 64px 0;
}
[data-theme="light"] .footer-logo .logo-text,
:root:not([data-theme="dark"]) .footer-logo .logo-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
[data-theme="light"] .footer-desc,
:root:not([data-theme="dark"]) .footer-desc {
    color: var(--text-light);
}
[data-theme="light"] .social-link,
:root:not([data-theme="dark"]) .social-link {
    background: var(--card-bg);
    border-color: var(--card-border);
    color: var(--text-muted);
}
[data-theme="light"] .social-link:hover,
:root:not([data-theme="dark"]) .social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
[data-theme="light"] .footer-col h4,
:root:not([data-theme="dark"]) .footer-col h4 {
    color: var(--text);
}
[data-theme="light"] .footer-col a,
:root:not([data-theme="dark"]) .footer-col a {
    color: var(--text-muted);
}
[data-theme="light"] .footer-col a:hover,
:root:not([data-theme="dark"]) .footer-col a:hover {
    color: var(--primary);
}
[data-theme="light"] .footer-contact-link svg,
:root:not([data-theme="dark"]) .footer-contact-link svg {
    opacity: 0.5;
}
[data-theme="light"] .footer-bottom,
:root:not([data-theme="dark"]) .footer-bottom {
    background: #e8ddfc;
    border-top-color: var(--card-border);
}
[data-theme="light"] .footer-bottom p,
:root:not([data-theme="dark"]) .footer-bottom p {
    color: #5a4d72;
}
[data-theme="light"] .footer-bottom-links a,
:root:not([data-theme="dark"]) .footer-bottom-links a {
    color: #5a4d72;
}
[data-theme="light"] .footer-bottom-links a:hover,
:root:not([data-theme="dark"]) .footer-bottom-links a:hover {
    color: var(--primary);
}

/* Dark footer: dark purple with subtle glow lights */
[data-theme="dark"] .site-footer {
    background: #1a1230 !important;
    color: #b0acbe !important;
    position: relative;
    overflow: hidden;
}
[data-theme="dark"] .site-footer::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(109, 51, 253, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
[data-theme="dark"] .site-footer::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(211, 48, 233, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
[data-theme="dark"] .site-footer > * {
    position: relative;
    z-index: 1;
}
[data-theme="dark"] .footer-cta-strip {
    background: linear-gradient(135deg, #221840 0%, #1a1230 100%);
    border-bottom: 1px solid rgba(109, 51, 253, 0.14);
}
[data-theme="dark"] .footer-cta-text h3 { color: #fff; }
[data-theme="dark"] .footer-cta-text p { color: #8a86a0; }
[data-theme="dark"] .footer-logo .logo-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
[data-theme="dark"] .footer-desc { color: #8a86a0; }
[data-theme="dark"] .social-link {
    background: rgba(109, 51, 253, 0.10);
    border-color: rgba(109, 51, 253, 0.18);
    color: #b0acbe;
}
[data-theme="dark"] .social-link:hover {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
}
[data-theme="dark"] .footer-col h4 { color: #d5d0e8; }
[data-theme="dark"] .footer-col a { color: #a8a4b8; }
[data-theme="dark"] .footer-col a:hover { color: var(--primary-light); }
[data-theme="dark"] .footer-bottom { border-top-color: rgba(109, 51, 253, 0.1); background: #120a24; }
[data-theme="dark"] .footer-bottom p { color: rgba(255, 255, 255, 0.45); }
[data-theme="dark"] .footer-bottom-links a { color: rgba(255, 255, 255, 0.45); }
[data-theme="dark"] .footer-bottom-links a:hover { color: var(--primary-light); }

/* Dark: subpage */
[data-theme="dark"] .subpage-title { color: #e8e6f0; }
[data-theme="dark"] .entry-content h1,
[data-theme="dark"] .entry-content h2,
[data-theme="dark"] .entry-content h3,
[data-theme="dark"] .entry-content h4,
[data-theme="dark"] .entry-content h5,
[data-theme="dark"] .entry-content h6 { color: #e8e6f0; }
[data-theme="dark"] .entry-content blockquote {
    background: rgba(109, 51, 253, 0.08);
    color: #e8e6f0;
}
[data-theme="dark"] .entry-content th {
    background: rgba(109, 51, 253, 0.1);
    color: #e8e6f0;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SUBPAGE TEMPLATE
   ============================================ */
/* ============================================
   SUBPAGE / GENERIC PAGE TEMPLATE
   ============================================ */
.subpage-main {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 60vh;
}
.subpage-container {
    max-width: 800px;
}
.subpage-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--text);
}

/* Subpage hero (used by pricing, faq, services templates) */
.subpage-hero {
    padding: 120px 0 48px;
    background: var(--bg-warm);
    text-align: center;
}
.subpage-hero .section-tag { margin-bottom: 16px; }
.subpage-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}
.subpage-intro {
    font-size: 18px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Entry content typography (refund-policy, etc.) */
.entry-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-light);
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-top: 2em;
    margin-bottom: 0.75em;
}
.entry-content h2 { font-size: 1.6rem; }
.entry-content h3 { font-size: 1.3rem; }
.entry-content h4 { font-size: 1.1rem; }
.entry-content p {
    margin-bottom: 1.25em;
}
.entry-content ul,
.entry-content ol {
    margin-bottom: 1.25em;
    padding-left: 1.5em;
}
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li {
    margin-bottom: 0.5em;
    line-height: 1.75;
}
.entry-content a {
    color: var(--primary);
    font-weight: 600;
}
.entry-content a:hover {
    text-decoration: underline;
}
.entry-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 1.5em 0;
    background: var(--bg-section);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text);
}
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
}
.entry-content th,
.entry-content td {
    padding: 12px 16px;
    border: 1px solid var(--card-border);
    text-align: left;
}
.entry-content th {
    background: var(--bg-section);
    font-weight: 700;
    color: var(--text);
}
.entry-content img {
    border-radius: var(--radius-md);
    margin: 1.5em 0;
}
.entry-content hr {
    border: none;
    border-top: 1px solid var(--card-border);
    margin: 2em 0;
}

.page-hero {
    padding: 160px 0 80px;
    background: var(--bg-warm);
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.page-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}
.page-content {
    padding: 80px 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-stats {
        padding: 32px;
    }
    .stat-item { padding: 0 20px; }
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-featured { transform: scale(1); }
    .pricing-featured:hover { transform: translateY(-6px); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .addons-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .process-connector { display: none; }
    .maintenance-grid { grid-template-columns: 1fr; }
    .services-section, .why-section, .process-section, .portfolio-section,
    .pricing-section, .addons-section, .testimonials-section, .special-offer,
    .audit-section, .blog-section, .faq-section, .contact-section {
        padding: 80px 0;
    }
    .results-section { padding: 64px 0; }
    .section-header { margin-bottom: 48px; }
}

@media (max-width: 768px) {
    .main-nav, .header-actions { display: none; }
    .mobile-toggle { display: flex; }
    .mobile-actions { display: flex; }
    .mobile-menu { display: block; }

    .hero { padding: 130px 0 80px; }
    .hero h1 { font-size: 2.25rem; }
    .hero-line1 { display: block; }
    .hero-stats {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    .stat-item {
        padding: 24px 32px;
        width: 100%;
    }
    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .services-grid,
    .pricing-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-featured-inner {
        grid-template-columns: 1fr;
    }
    .blog-featured-thumb { height: 200px; }
    .blog-featured-content { padding: 24px; }
    .blog-featured-content h2 { font-size: 20px; }
    .why-grid,
    .results-grid,
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .audit-card { padding: 40px 24px; }
    .audit-inputs { flex-direction: column; }

    .offer-visual { display: none; }

    .trust-inner { justify-content: center; gap: 12px; }
    .trust-divider { display: none; }
    .trust-item { font-size: 13px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .section-header { margin-bottom: 40px; }
    .hero-float { display: none; }

    .contact-form-wrap { padding: 28px 20px; }
    .maintenance-section { padding: 36px 20px; }

    .services-section, .why-section, .process-section, .portfolio-section,
    .pricing-section, .addons-section, .testimonials-section, .special-offer,
    .audit-section, .blog-section, .faq-section, .contact-section {
        padding: 56px 0;
    }
    .results-section { padding: 48px 0; }
    .social-proof { padding: 32px 0; }
    .footer-cta-strip { padding: 40px 0; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.85rem; }
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    .hero-cta .btn { width: 100%; }
    .why-grid,
    .results-grid,
    .addons-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Desktop scale-up ---------- */
@media (min-width: 1025px) {
    body { font-size: 17px; }

    /* Hero */
    .hero h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); }
    .hero-sub { font-size: 18px; }
    .hero-badge { font-size: 12px; }
    .stat-number { font-size: clamp(2.25rem, 4vw, 3.25rem); }
    .stat-label { font-size: 13px; }

    /* Section headers */
    .section-header h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
    .section-header p { font-size: 17px; }
    .section-tag { font-size: 12px; }

    /* Trust bar */
    .trust-item { font-size: 15px; }

    /* Services */
    .service-card h3 { font-size: 21px; }
    .service-card p { font-size: 16px; }
    .service-features li { font-size: 15px; }
    .service-features li::before { font-size: 12px; width: 21px; height: 21px; }
    .service-link { font-size: 15px; }

    /* Why section */
    .why-icon { font-size: 34px; }
    .why-title { font-size: 19px; }
    .why-card p { font-size: 15px; }

    /* Process */
    .process-number { font-size: 24px; }
    .process-title { font-size: 21px; }
    .process-step p { font-size: 15px; }

    /* Portfolio */
    .portfolio-overlay .portfolio-title { font-size: 22px; }

    /* Results */
    .result-number { font-size: clamp(2.5rem, 5vw, 3.5rem); }
    .result-label { font-size: 14px; }

    /* Pricing */
    .pricing-header .pricing-title { font-size: 21px; }
    .pricing-desc { font-size: 15px; }
    .price-amount { font-size: 52px; }
    .price-type { font-size: 14px; }
    .pricing-features li { font-size: 15px; }
    .pricing-note { font-size: 16px; }
    .maintenance-title { font-size: 26px; }
    .maint-name { font-size: 19px; }
    .maint-price { font-size: 26px; }
    .maint-card p { font-size: 15px; }

    /* Add-ons */
    .addon-icon { font-size: 34px; }
    .addon-icon svg { width: 30px; height: 30px; }
    .addon-title { font-size: 17px; }
    .addon-card p { font-size: 15px; }

    /* Testimonials */
    .testimonial-text { font-size: 16px; }

    /* Special offer */
    .offer-content h2 { font-size: clamp(2rem, 4vw, 2.75rem); }

    /* Audit */
    .audit-content h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
    .audit-trust-item { font-size: 15px; }

    /* Blog */
    .blog-info .blog-title { font-size: 18px; }
    .blog-info p { font-size: 14px; }
    .blog-cta .btn { font-size: 15px; }

    /* FAQ */
    .faq-question { font-size: 17px; }
    .faq-answer p { font-size: 16px; }

    /* Contact */
    .contact-info h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
    .contact-method strong { font-size: 15px; }
    .contact-method span { font-size: 14px; }

    /* Navigation & buttons */
    .main-nav a { font-size: 15px; }
    .logo-text { font-size: 19px; }
    .btn { font-size: 15px; }
    .btn-sm { font-size: 14px; }
    .btn-lg { font-size: 16px; }
    .btn-arrow { font-size: 20px; }

    /* Subpages */
    .subpage-hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
    .subpage-intro { font-size: 18px; }

    /* Footer */
    .footer-cta-text h3 { font-size: 22px; }
    .footer-cta-text p { font-size: 15px; }
    .footer-desc { font-size: 14px; }
    .footer-col h4 { font-size: 13px; }
    .footer-col a,
    .footer-col p { font-size: 14px; }
}
