/* === CSS Variables === */
:root {
    --bg-primary: #0E1117;
    --bg-secondary: #131720;
    --accent: #2962CC;
    --accent-hover: #3B7FE8;
    --accent-light: rgba(41, 98, 204, 0.3);
    --accent-glow: rgba(41, 98, 204, 0.15);
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.12);
    --radius: 24px;
    --radius-sm: 16px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* === Background Blobs === */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: rgba(41, 98, 204, 0.25);
    top: -200px;
    left: -150px;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: rgba(41, 98, 204, 0.18);
    top: 35%;
    right: -200px;
}

.blob-3 {
    width: 800px;
    height: 800px;
    background: rgba(59, 127, 232, 0.14);
    bottom: -300px;
    left: 25%;
}

.blob-4 {
    width: 500px;
    height: 500px;
    background: rgba(41, 98, 204, 0.16);
    top: 55%;
    left: -150px;
}

.blob-5 {
    width: 450px;
    height: 450px;
    background: rgba(59, 127, 232, 0.12);
    top: 18%;
    right: 5%;
}

/* === Liquid Glass Card Base === */
.liquid-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* Specular highlight - top edge light */
.liquid-glass-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    border-radius: 50%;
    filter: blur(0.5px);
    z-index: 2;
}

/* Chromatic aberration edge */
.liquid-glass-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: conic-gradient(
        from 180deg,
        rgba(100, 150, 255, 0.04),
        rgba(150, 100, 255, 0.03),
        rgba(100, 200, 255, 0.04),
        rgba(100, 150, 255, 0.04)
    );
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 1px;
    pointer-events: none;
    z-index: 1;
}

.liquid-glass-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(41, 98, 204, 0.15);
}

/* Glass Swirl Effect */
.glass-swirl {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
    background:
        radial-gradient(ellipse 180% 60% at 10% 90%, rgba(100,170,255,0.35), transparent 45%),
        radial-gradient(ellipse 60% 180% at 90% 20%, rgba(140,200,255,0.2), transparent 40%),
        radial-gradient(ellipse 120% 50% at 50% 60%, rgba(180,210,255,0.12), transparent 50%);
}

.glass-swirl::before {
    content: '';
    position: absolute;
    top: 30%;
    left: -10%;
    width: 120%;
    height: 50%;
    background: linear-gradient(135deg, transparent 30%, rgba(200,220,255,0.1) 45%, rgba(220,235,255,0.18) 50%, rgba(200,220,255,0.1) 55%, transparent 70%);
    transform: rotate(-10deg);
}

.glass-swirl::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5%;
    width: 110%;
    height: 40%;
    background: linear-gradient(145deg, transparent 35%, rgba(180,210,255,0.08) 48%, rgba(220,240,255,0.12) 52%, rgba(180,210,255,0.08) 55%, transparent 65%);
    transform: rotate(5deg);
}

/* Ensure all pricing card content sits above glass swirl */
.pricing-card h3,
.pricing-card .price,
.pricing-card ul,
.pricing-card .btn-card,
.pricing-card .btn-pro {
    position: relative;
    z-index: 3;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 12px 40px;
    background: transparent;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    left: 32px;
}

.logo-mark svg {
    display: block;
}

.logo-mark-img {
    height: 36px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
}

.logo-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--text-primary);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* nav-cta removed per mockup */

/* Nav Contact Button - pill style */
.nav-contact-btn {
    background: linear-gradient(135deg, #2962CC, #3B7FE8);
    color: white !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 14px !important;
    border: 1px solid rgba(59, 127, 232, 0.4);
    box-shadow: 0 0 16px rgba(41, 98, 204, 0.25);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    margin: 0 4px;
}

.nav-contact-btn:hover {
    background: linear-gradient(135deg, #3B7FE8, #4D93FF);
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(41, 98, 204, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

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

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

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

/* === Hero Section === */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(14, 17, 23, 0.6) 0%,
        rgba(14, 17, 23, 0.4) 40%,
        rgba(14, 17, 23, 0.7) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #2962CC, #3B7FE8);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(59, 127, 232, 0.4);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(41, 98, 204, 0.3), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3B7FE8, #4D93FF);
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(41, 98, 204, 0.5), 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Glass Blob Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-blob {
    width: 420px;
    height: 340px;
    border-radius: 60% 40% 50% 45% / 50% 60% 40% 55%;
    background: radial-gradient(ellipse at 30% 30%, rgba(41, 98, 204, 0.12), rgba(14, 17, 23, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        0 0 80px rgba(41, 98, 204, 0.2),
        0 0 160px rgba(41, 98, 204, 0.08),
        inset 0 0 60px rgba(41, 98, 204, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    animation: blob-morph 12s ease-in-out infinite;
}

@keyframes blob-morph {
    0%, 100% { border-radius: 60% 40% 50% 45% / 50% 60% 40% 55%; }
    25% { border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%; }
    50% { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; }
    75% { border-radius: 40% 60% 45% 55% / 60% 40% 55% 45%; }
}

.glass-blob::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 12%;
    width: 50%;
    height: 25%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.18), transparent);
    border-radius: 50%;
    filter: blur(10px);
}

.glass-blob::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: conic-gradient(
        from 200deg,
        rgba(100, 160, 255, 0.08),
        rgba(140, 100, 255, 0.04),
        rgba(80, 180, 255, 0.08),
        rgba(100, 160, 255, 0.08)
    );
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 1px;
    pointer-events: none;
}

.sphere-chart {
    width: 80%;
    height: 60%;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* === About Section === */
.about {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.glass-photo-frame {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.about-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* === Services/Pricing Section === */
.services {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
}

.pricing-card h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.includes-line {
    font-size: 13px;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.price {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

.price-original {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 10px;
    opacity: 0.6;
}

.pricing-card ul {
    list-style: none;
    flex: 1;
    margin-bottom: 28px;
}

.pricing-card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    padding-left: 20px;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.pricing-card li.excluded {
    color: var(--text-muted);
    opacity: 0.5;
    text-decoration: line-through;
}

.pricing-card li.excluded::before {
    content: '✕';
    color: #ef4444;
}

.btn-card {
    display: block;
    text-align: center;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(41, 98, 204, 0.2), rgba(59, 127, 232, 0.15));
    border: 1px solid rgba(100, 160, 255, 0.25);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 12px rgba(41, 98, 204, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.btn-card:hover {
    background: linear-gradient(135deg, rgba(41, 98, 204, 0.3), rgba(59, 127, 232, 0.25));
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(41, 98, 204, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card.popular {
    border-color: rgba(59, 127, 232, 0.45);
    box-shadow: 0 0 40px rgba(41, 98, 204, 0.15), 0 0 80px rgba(41, 98, 204, 0.08);
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 3;
    z-index: 3;
}

.btn-pro {
    background: linear-gradient(135deg, rgba(41, 98, 204, 0.4), rgba(59, 127, 232, 0.3));
    color: white;
    border-color: rgba(59, 127, 232, 0.5);
    box-shadow: 0 0 16px rgba(41, 98, 204, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-pro:hover {
    background: linear-gradient(135deg, rgba(41, 98, 204, 0.5), rgba(59, 127, 232, 0.4));
    box-shadow: 0 0 24px rgba(41, 98, 204, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* === Testimonials === */
.testimonials {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

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

.testimonial-card {
    padding: 32px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

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

/* === FAQ Section === */
.faq {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-toggle {
    color: var(--text-secondary);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-item.open .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* === CTA Section === */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-card {
    text-align: center;
    padding: 60px 40px;
}

.cta-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.2;
}

.btn-large {
    padding: 18px 48px;
    font-size: 16px;
    background: rgba(41, 98, 204, 0.25);
    border: 1px solid rgba(41, 98, 204, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(41, 98, 204, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* === Footer === */
.footer {
    position: relative;
    z-index: 1;
    padding: 32px 40px;
    border-top: none;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-glass-bar {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.footer-logo-img {
    height: 28px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copyright {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-align: center;
    max-width: 1280px;
    margin: 12px auto 0;
    padding: 0 40px;
}

/* === Responsive === */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-visual {
        order: -1;
    }
    .glass-sphere {
        width: 280px;
        height: 280px;
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    .services-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Navbar */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        margin-top: 8px;
        background: rgba(14, 17, 23, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 16px 0;
        flex-direction: column;
        align-items: center;
        gap: 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        padding: 12px 24px;
        width: 100%;
        text-align: center;
        font-size: 15px;
    }
    .hamburger {
        display: flex;
    }
    .navbar {
        padding: 10px 16px;
    }
    .nav-container {
        padding: 10px 16px;
        grid-template-columns: 1fr auto;
    }
    .logo-text {
        font-size: 10px;
        letter-spacing: 2px;
    }
    .logo-mark-img {
        height: 28px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    .hero h1 {
        font-size: 24px;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 14px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        text-align: center;
    }
    .hero-visual {
        order: -1;
    }
    .glass-blob {
        width: 260px;
        height: 200px;
    }
    .hero-video {
        min-height: 100%;
    }

    /* About */
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    .about-photo {
        height: 350px;
    }
    .about-text h2 {
        font-size: 22px;
    }

    /* Services/Pricing */
    .services-container {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 20px;
    }
    .pricing-card {
        padding: 28px 20px;
    }
    .price {
        font-size: 30px;
    }
    .price-original {
        font-size: 16px;
    }

    /* FAQ */
    .faq-container {
        padding: 0 20px;
    }

    /* CTA */
    .cta-container {
        padding: 0 20px;
    }
    .cta-card {
        padding: 40px 24px;
    }
    .cta-card h2 {
        font-size: 24px;
    }

    /* Footer */
    .footer {
        padding: 24px 16px;
    }
    .footer-container {
        padding: 12px 16px;
        flex-direction: column;
        gap: 12px;
        border-radius: 24px;
    }
    .footer-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-links a {
        font-size: 12px;
    }
    .footer-copyright {
        padding: 0 20px;
    }

    /* General spacing */
    .about, .services, .testimonials, .faq, .cta-section {
        padding: 60px 0;
    }
}
