/* ============================================================
   STILL — Premium Midnight + Gold Design System
   ============================================================ */

:root {
    /* Midnight Palette */
    --bg-base: #0A0E1A;
    --bg-room-1: #0F1520;
    --bg-room-2: #141D2B;
    --bg-rest: #1A2235;

    /* Warm Typography */
    --text-heading: #F5F0E8;
    --text-body: #B8B0A0;
    --text-muted: rgba(245, 240, 232, 0.4);

    /* Gold Accent */
    --accent: #C9A96E;
    --accent-dim: rgba(201, 169, 110, 0.15);
    --accent-glow: rgba(201, 169, 110, 0.06);

    /* Structure */
    --border: rgba(201, 169, 110, 0.08);
    --border-strong: rgba(201, 169, 110, 0.15);

    /* Fonts */
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Outfit', 'Inter', -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-base);
    color: var(--text-body);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   Film Grain Overlay — Cinematic Texture
   ============================================================ */
body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(10, 14, 26, 0.18), rgba(10, 14, 26, 0.92)),
        radial-gradient(circle at 72% 18%, rgba(201, 169, 110, 0.08), transparent 36%),
        radial-gradient(circle at 18% 70%, rgba(104, 129, 150, 0.10), transparent 32%);
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2 {
    font-family: var(--font-serif);
    font-weight: 300;
    letter-spacing: 0;
    color: var(--text-heading);
}

h3, h4 {
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: 0;
    color: var(--text-heading);
}

p {
    font-weight: 300;
    font-size: 1.05rem;
}

/* ============================================================
   Atmosphere — Warm Gold Ambient Blobs
   ============================================================ */
.atmosphere {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: var(--bg-base);
    overflow: hidden;
}

.ambient-light {
    position: absolute;
    width: 150vw;
    height: 150vh;
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.035;
    pointer-events: none;
    animation: ambientPulse 30s infinite alternate ease-in-out;
}

.light-top {
    background: radial-gradient(circle, #C9A96E 0%, transparent 70%);
    top: -60%;
    left: -30%;
}

.light-bottom {
    background: radial-gradient(circle, #A08040 0%, transparent 70%);
    bottom: -60%;
    right: -30%;
}

@keyframes ambientPulse {
    from {
        opacity: 0.025;
        transform: translate(0, 0) scale(1);
    }
    to {
        opacity: 0.045;
        transform: translate(3%, 3%) scale(1.04);
    }
}

/* ============================================================
   Room Luminance Shifts — Section Backgrounds
   ============================================================ */
section {
    position: relative;
    padding: 120px 0;
    width: 100%;
    transition: background 1.5s ease;
}

section:nth-of-type(4n+1) {
    background: var(--bg-base);
}

section:nth-of-type(4n+2) {
    background: var(--bg-room-1);
}

section:nth-of-type(4n+3) {
    background: var(--bg-room-2);
}

.room-rest {
    background: var(--bg-rest) !important;
}

/* Section divider — subtle gold gradient line */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-dim), rgba(201, 169, 110, 0.25), var(--accent-dim), transparent);
    border: none;
    margin: 0;
}

/* ============================================================
   Navigation
   ============================================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-heading);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.4s ease;
}

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

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
    min-height: 94vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #05070D !important;
    padding: 118px 40px 56px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 7, 13, 0.95) 0%, rgba(5, 7, 13, 0.82) 42%, rgba(5, 7, 13, 0.62) 100%),
        radial-gradient(circle at 74% 45%, rgba(130, 170, 188, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(5, 7, 13, 0.18) 0%, rgba(5, 7, 13, 0.48) 70%, #05070D 100%),
        url("assets/gallery/ActiveSession1.png");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    opacity: 0.9;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(201, 169, 110, 0.06);
}

.hero-grid {
    position: relative;
    z-index: 2;
    width: min(100%, 1180px);
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
    gap: clamp(36px, 7vw, 92px);
    align-items: center;
}

.hero-content {
    position: relative;
    width: min(100%, 650px);
    opacity: 0;
    text-align: left;
    animation: revealIn 1.8s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 24px;
    padding: 6px 16px;
    background: var(--accent-dim);
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: 100px;
}

.hero h1 {
    font-size: clamp(76px, 12vw, 160px);
    margin-bottom: 28px;
    line-height: 0.82;
    letter-spacing: 0;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero-subtext {
    max-width: 560px;
    margin-bottom: 28px;
    font-size: 1.2rem;
    opacity: 0.82;
    line-height: 1.7;
}

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

.session-ledge {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 620px;
}

.session-ledge span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid var(--border);
    background: rgba(245, 240, 232, 0.035);
    color: rgba(245, 240, 232, 0.72);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ios-showcase {
    position: relative;
    min-height: 640px;
    display: grid;
    place-items: center;
    opacity: 0;
    animation: revealIn 1.8s forwards 0.38s cubic-bezier(0.19, 1, 0.22, 1);
}

.ios-showcase::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(185, 215, 224, 0.13) 0%, rgba(185, 215, 224, 0.06) 38%, transparent 68%);
    filter: blur(4px);
}

.iphone-frame {
    position: relative;
    width: min(100%, 332px);
    aspect-ratio: 9 / 19.35;
    padding: 12px;
    border-radius: 48px;
    background:
        linear-gradient(145deg, #0B0E15 0%, #171F30 42%, #04060A 100%);
    border: 1px solid rgba(245, 240, 232, 0.16);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.48),
        0 0 80px rgba(126, 156, 171, 0.16),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.iphone-side-button {
    position: absolute;
    right: -2px;
    top: 144px;
    width: 4px;
    height: 78px;
    border-radius: 0 4px 4px 0;
    background: rgba(245, 240, 232, 0.22);
}

.iphone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 36px;
    overflow: hidden;
    background: #07101A;
    box-shadow: inset 0 0 0 1px rgba(245, 240, 232, 0.08);
}

.screen-reel,
.screen-shot {
    position: absolute;
    inset: 0;
}

.screen-shot {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    transform: scale(1.02);
    animation: screenCycle 48s infinite ease-in-out;
}

.shot-home {
    animation-delay: 0s;
}

.shot-session-one {
    animation-delay: 6s;
}

.shot-session-two {
    animation-delay: 12s;
}

.shot-session-three {
    animation-delay: 18s;
}

.shot-session-four {
    animation-delay: 24s;
}

.shot-session-five {
    animation-delay: 30s;
}

.shot-session-six {
    animation-delay: 36s;
}

.shot-session-seven {
    animation-delay: 42s;
}

.dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    z-index: 2;
    width: 94px;
    height: 28px;
    border-radius: 999px;
    background: #020307;
    transform: translateX(-50%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.showcase-note {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 2px;
    min-width: 152px;
    padding: 14px 16px;
    border: 1px solid rgba(245, 240, 232, 0.10);
    border-radius: 8px;
    background: rgba(5, 7, 13, 0.58);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.showcase-note span {
    color: rgba(245, 240, 232, 0.46);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.showcase-note strong {
    color: var(--text-heading);
    font-size: 14px;
    font-weight: 400;
}

.note-session {
    top: 96px;
    left: 8px;
}

.note-return {
    right: 8px;
    bottom: 118px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes screenCycle {
    0% {
        opacity: 0;
        transform: scale(1.035) translateY(8px);
    }
    2.5%,
    10.5% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    13%,
    100% {
        opacity: 0;
        transform: scale(0.995) translateY(-8px);
    }
}

/* ============================================================
   Entry Animation
   ============================================================ */
@keyframes revealIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   Principles / Philosophy
   ============================================================ */
.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.principles {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.principle-item {
    max-width: 600px;
}

.principle-item.second,
.principle-item.fourth {
    align-self: flex-end;
    text-align: right;
}

.principle-item h2 {
    font-family: var(--font-sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0.9;
}

.principle-item p {
    font-family: var(--font-serif);
    font-size: 26px;
    line-height: 1.5;
    color: var(--text-heading);
}

/* ============================================================
   Quote / Social Proof
   ============================================================ */
.quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-heading);
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.5;
}

/* ============================================================
   Craftsmanship / Tech Grid
   ============================================================ */
.section-label {
    font-family: var(--font-sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 56px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 56px;
}

.tech-grid > div {
    padding: 32px;
    background: rgba(201, 169, 110, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.4s ease, background 0.4s ease;
}

.tech-grid > div:hover {
    border-color: var(--border-strong);
    background: rgba(201, 169, 110, 0.04);
}

.tech-grid h4 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 400;
}

.tech-grid p {
    font-size: 14px;
    color: var(--text-body);
    opacity: 0.8;
    line-height: 1.7;
}

/* ============================================================
   Pricing — Free vs Still+ Comparison
   ============================================================ */
.pricing-section {
    text-align: center;
}

.pricing-header {
    max-width: 560px;
    margin: 0 auto 64px;
}

.pricing-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
    line-height: 1.15;
}

.pricing-header p {
    color: var(--text-body);
    opacity: 0.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto 64px;
}

.pricing-card {
    background: rgba(201, 169, 110, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 32px;
    text-align: left;
    transition: border-color 0.4s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: rgba(201, 169, 110, 0.2);
    background: linear-gradient(
        to bottom,
        rgba(201, 169, 110, 0.06) 0%,
        rgba(201, 169, 110, 0.01) 100%
    );
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 32px;
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bg-base);
    background: var(--accent);
    padding: 4px 14px;
    border-radius: 100px;
    font-weight: 500;
}

.pricing-card:hover {
    border-color: var(--border-strong);
}

.pricing-tier-name {
    font-family: var(--font-sans);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 8px;
}

.pricing-price {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 300;
    color: var(--text-heading);
    margin-bottom: 4px;
    line-height: 1.2;
}

.pricing-price span {
    font-size: 16px;
    color: var(--text-muted);
    font-family: var(--font-sans);
}

.pricing-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-body);
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.pricing-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 10px;
    top: 3px;
}

/* Comparison table */
.comparison-table {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table thead th {
    font-family: var(--font-sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-strong);
    font-weight: 400;
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table thead th:not(:first-child) {
    text-align: center;
}

.comparison-table tbody td {
    font-size: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text-body);
}

.comparison-table tbody td:not(:first-child) {
    text-align: center;
    color: var(--text-heading);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.check {
    color: var(--accent);
}

.dash {
    color: var(--text-muted);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    border-radius: 100px;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.02em;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.15);
    color: var(--text-heading);
    cursor: pointer;
}

.btn:hover {
    background: var(--accent);
    color: var(--bg-base);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.15);
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-base);
    border-color: var(--accent);
    font-weight: 500;
}

.btn-primary:hover {
    background: #D4B87A;
    border-color: #D4B87A;
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.25);
}

.btn-secondary {
    background: rgba(245, 240, 232, 0.035);
    border-color: rgba(245, 240, 232, 0.08);
    color: rgba(245, 240, 232, 0.82);
}

/* ============================================================
   Closing / CTA Section
   ============================================================ */
.closing {
    text-align: center;
    padding: 160px 40px;
}

.closing h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px 40px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-badge {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-badge:hover {
    opacity: 0.8;
}

.footer-badge img {
    height: 40px;
    width: auto;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================================
   Scroll Reveal — IntersectionObserver based (fallback)
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1),
                transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for principle items */
.principle-item.reveal {
    transition-delay: 0s;
}

.principle-item.reveal.second {
    transition-delay: 0.08s;
}

.principle-item.reveal.fourth {
    transition-delay: 0.08s;
}

/* ============================================================
   Scroll-Driven Animations (Progressive Enhancement)
   ============================================================ */
@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
    .reveal {
        view-timeline: --reveal-tl block;
        animation: scrollReveal auto linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 100%;
        /* Reset IO-based styles */
        opacity: 0;
        transform: translateY(28px);
        transition: none;
    }

    .reveal.visible {
        /* Let scroll animation take over, remove IO overrides */
    }

    @keyframes scrollReveal {
        from {
            opacity: 0;
            transform: translateY(28px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .hero-content,
    .ios-showcase {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .ambient-light {
        animation: none !important;
    }

    .screen-shot {
        animation: none !important;
        opacity: 0 !important;
        transform: none !important;
    }

    .shot-home {
        opacity: 1 !important;
    }
}

/* ============================================================
   Responsive — Mobile & Tablet
   ============================================================ */
@media (max-width: 768px) {
    .gallery-container {
        padding: 0 24px;
    }

    nav {
        padding: 20px 24px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: 96vh;
        padding: 104px 24px 44px;
        text-align: center;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(5, 7, 13, 0.78) 0%, rgba(5, 7, 13, 0.92) 42%, #05070D 100%),
            url("assets/gallery/ActiveSession1.png");
        background-size: cover;
        background-position: 58% center;
        filter: blur(2px) brightness(0.58);
        transform: scale(1.08);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        justify-items: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 64px;
    }

    .hero-subtext {
        margin: 0 auto 32px;
    }

    .hero-actions,
    .session-ledge {
        justify-content: center;
    }

    .ios-showcase {
        min-height: 460px;
        width: min(100%, 330px);
    }

    .ios-showcase::before {
        width: 360px;
        height: 360px;
    }

    .iphone-frame {
        width: min(100%, 240px);
    }

    .showcase-note {
        min-width: 138px;
        padding: 12px 14px;
    }

    .note-session {
        top: 42px;
        left: 0;
    }

    .note-return {
        right: 0;
        bottom: 58px;
    }

    .principles {
        gap: 80px;
    }

    .principle-item.second,
    .principle-item.fourth {
        align-self: center;
        text-align: center;
    }

    .principle-item p {
        font-size: 21px;
    }

    section {
        padding: 80px 0;
    }

    .quote {
        font-size: 24px;
    }

    /* Pricing responsive */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 12px;
    }

    .closing {
        padding: 100px 24px;
    }

    .closing h2 {
        font-size: 32px;
    }

    .footer-inner {
        padding: 40px 24px 48px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1080px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 56px;
    }

    .pricing-price {
        font-size: 36px;
    }

    .tech-grid {
        gap: 24px;
    }

    .tech-grid > div {
        padding: 24px;
    }
}
