/* =========================================
   AI Coach Pro — Landing v2
   Inspired by Popcorn.space clean aesthetic
   Light bg · Messina Sans fallback · Rounded cards · Warm minimal
   ========================================= */

:root {
    --white: #ffffff;

    /* Backgrounds — synced with theme.css */
    --bg-body: #0a0a1a;
    --bg-surface: #0f0f23;
    --bg-card: rgba(18, 18, 40, 0.6);
    --bg-card-solid: #12122a;
    --bg-elevated: rgba(25, 25, 55, 0.85);
    --bg-input: rgba(255, 255, 255, 0.04);

    /* AI Coach Pro Brand — synced with theme.css + login.php */
    --primary: #4fd1c5;
    --primary-dark: #38b2ac;
    --primary-light: #7eeae0;
    --primary-bg: rgba(79, 209, 197, 0.15);
    --secondary: #68d391;
    --secondary-dark: #48bb78;
    --secondary-light: #9ae6b4;
    --secondary-bg: rgba(104, 211, 145, 0.15);
    --accent: #4fd1c5;
    --accent-dark: #38b2ac;
    --accent-light: rgba(79, 209, 197, 0.12);
    --accent-pink: #f687b3;
    --accent-pink-dark: #e76a9f;
    --accent-pink-light: rgba(246, 135, 179, 0.12);
    --gradient-primary: linear-gradient(90deg, #4fd1c5, #68d391);
    --gradient-btn: linear-gradient(135deg, #4fd1c5, #38b2ac);
    --gradient-accent: linear-gradient(135deg, #f687b3, #4fd1c5);
    --gradient-body: linear-gradient(135deg, #0a0a1a 0%, #121228 50%, #0d0d1f 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(79, 209, 197, 0.15) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(79, 209, 197, 0.1) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(246, 135, 179, 0.08) 0px, transparent 50%),
                     radial-gradient(at 80% 50%, rgba(79, 209, 197, 0.08) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, rgba(104, 211, 145, 0.1) 0px, transparent 50%);
    --glow-primary: 0 4px 15px rgba(79, 209, 197, 0.3);
    --glow-brand: 0 4px 20px rgba(79, 209, 197, 0.25), 0 8px 30px rgba(104, 211, 145, 0.12);
    --shadow-focus: 0 0 0 3px rgba(79, 209, 197, 0.25);

    /* Borders */
    --border: rgba(79, 209, 197, 0.08);
    --border-light: rgba(79, 209, 197, 0.15);
    --border-medium: rgba(255, 255, 255, 0.06);

    /* Text */
    --text-primary: #f0f0ff;
    --text-secondary: rgba(240, 240, 255, 0.75);
    --text-muted: #94a3b8;

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.3);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.4);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
    --glass-blur: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--gradient-body);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

::selection {
    background: rgba(79, 209, 197, 0.35);
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === TOP BANNER === */
.pc-top-banner {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.pc-top-banner span {
    color: var(--white);
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 2px 10px;
    border-radius: var(--radius-pill);
}

/* === NAVBAR FLOATING ANIMATED === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.navbar .container {
    max-width: 1200px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0;
    padding: 0 24px;
}

/* Scrolled state - Floating pill */
.navbar.scrolled {
    padding: 14px 20px;
    background: transparent;
}

.navbar.scrolled .container {
    background: linear-gradient(135deg, rgba(12, 12, 30, 0.92), rgba(18, 18, 45, 0.88));
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 60px;
    border: 1px solid rgba(79, 209, 197, 0.12);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 0 80px rgba(79, 209, 197, 0.08);
    padding: 8px 10px 8px 20px;
    max-width: 800px;
    position: relative;
}

.navbar.scrolled .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(79, 209, 197, 0.4) 20%,
        rgba(79, 209, 197, 0.3) 50%,
        rgba(79, 209, 197, 0.4) 80%,
        transparent 100%);
    opacity: 0.6;
    border-radius: 1px;
}

.navbar.scrolled .container::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    opacity: 0.85;
}

.navbar-brand img {
    height: 30px;
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 22px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    transition: all 0.4s ease;
}

.navbar-nav .nav-item {
    list-style: none;
}

.navbar-nav .nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.55) !important;
    font-weight: 500;
    font-size: 13px;
    padding: 10px 16px !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.navbar.scrolled .navbar-nav .nav-link {
    padding: 8px 14px !important;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65) !important;
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: white !important;
    background: rgba(79, 209, 197, 0.15);
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.06);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
    opacity: 0.8;
}

.navbar-nav .nav-link:hover::after {
    width: 16px;
}

/* Login button */
.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 209, 197, 0.1) !important;
    border: 1px solid rgba(79, 209, 197, 0.2) !important;
    border-radius: 12px !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    padding: 10px 20px !important;
    margin-left: 12px !important;
    transition: all 0.4s ease !important;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.navbar.scrolled .btn-login {
    padding: 10px 20px !important;
    font-size: 12px !important;
    background: linear-gradient(135deg, var(--primary), #38b2ac) !important;
    border: none !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 20px rgba(79, 209, 197, 0.35);
    letter-spacing: 0.03em;
    color: #fff !important;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: #fff !important;
}

.navbar.scrolled .btn-login:hover {
    background: linear-gradient(135deg, #5fe0d4, #68d391) !important;
    box-shadow: 0 8px 24px rgba(79, 209, 197, 0.3);
}

.btn-login i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.btn-login:hover i {
    transform: translateX(3px);
}

/* Hamburger */
.navbar-toggler {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-toggler {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.hamburger-lines {
    width: 18px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.navbar.scrolled .hamburger-lines {
    width: 16px;
    height: 12px;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile nav menu */
@media (max-width: 991px) {
    .navbar.scrolled {
        padding: 12px 16px;
    }

    .navbar.scrolled .container {
        max-width: 100%;
        border-radius: 20px;
        padding: 10px 14px;
    }

    .navbar.scrolled .container::before {
        left: 14px;
        right: 14px;
    }

    .navbar.scrolled .container::after {
        display: none;
    }

    .navbar-toggler {
        position: relative;
        z-index: 10;
    }

    .navbar-collapse {
        position: absolute;
        top: calc(100% + 12px);
        left: 16px;
        right: 16px;
        background: rgba(18, 18, 40, 0.95);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        padding: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    .navbar.scrolled .navbar-collapse {
        top: calc(100% + 8px);
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 4px;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link,
    .navbar.scrolled .navbar-nav .nav-link {
        display: block;
        padding: 14px 18px !important;
        font-size: 15px !important;
        border-radius: 14px;
        text-align: left;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .btn-login,
    .navbar.scrolled .btn-login {
        width: 100%;
        justify-content: center;
        margin: 16px 0 0 0 !important;
        padding: 14px 24px !important;
        font-size: 15px !important;
        background: linear-gradient(135deg, var(--primary), #68d391) !important;
        border: none !important;
        border-radius: 14px !important;
        color: #fff !important;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 28px;
    }

    .navbar.scrolled .navbar-brand img {
        height: 24px;
    }
}

/* === HERO === */
.pc-hero {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pc-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.pc-hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.pc-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto 24px;
}

.pc-hero h1 em {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pc-hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 40px;
}

.pc-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-btn);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    box-shadow: var(--glow-primary), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pc-hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pc-hero-cta:hover {
    background: var(--gradient-btn);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 209, 197, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.pc-hero-cta:hover::before {
    opacity: 1;
}

.pc-hero-cta svg {
    transition: transform 0.2s;
}

.pc-hero-cta:hover svg {
    transform: translateX(3px);
}

/* Hero feature pills */
.pc-hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 48px;
}

.pc-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.pc-hero-pill svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Hero phone mockup */
.pc-hero-visual {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    position: relative;
}

.pc-phone-frame {
    width: 280px;
    background: var(--bg-card-solid);
    border-radius: 36px;
    padding: 8px;
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--border), 0 0 60px rgba(79, 209, 197, 0.12);
    position: relative;
}

.pc-phone-frame img {
    border-radius: 28px;
    width: 100%;
    height: auto;
}

.pc-phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: var(--bg-body);
    border-radius: 12px;
    z-index: 10;
}

/* === SECTION COMMON === */
.pc-section {
    padding: 80px 0;
}

.pc-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.pc-section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.pc-section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    max-width: 700px;
    margin: 0 auto 16px;
}

.pc-section-sub {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
}

/* === FEATURE ROW (like Popcorn "Simple / Fast / Expat") === */
.pc-features-row {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    padding: 48px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(var(--glass-blur));
}

.pc-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pc-feature-item {
    text-align: center;
    padding: 16px;
}

.pc-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-btn);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--white);
    box-shadow: var(--glow-primary);
}

.pc-feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.pc-feature-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === INFO CARD (like Popcorn "A US number" section) === */
.pc-info-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(var(--glass-blur));
}

.pc-info-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.pc-info-text {
    padding: 56px 48px;
}

.pc-info-text h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.pc-info-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pc-info-visual {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-surface);
}

.pc-info-visual img {
    width: 100%;
    max-width: 360px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* === DETAIL TAG (price / stat) === */
.pc-detail-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.pc-detail-tag strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* === HOW IT WORKS (Steps) === */
.pc-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pc-step {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(var(--glass-blur));
}

.pc-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pc-step-num {
    width: 44px;
    height: 44px;
    background: var(--gradient-btn);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--glow-primary);
}

.pc-step h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.pc-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === TIMELINE SECTION (Day 1 / 15 / 35) === */
.pc-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Vertical track line */
.pc-timeline-track {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
}

.pc-timeline-progress {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary-dark));
    border-radius: 3px;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 12px rgba(79, 209, 197, 0.4);
}

.pc-timeline.animated .pc-timeline-progress {
    transform: scaleY(1);
}

/* Each step row */
.pc-timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 0 0 48px 0;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pc-timeline-step:last-child {
    padding-bottom: 0;
}

.pc-timeline.animated .pc-timeline-step:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.pc-timeline.animated .pc-timeline-step:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.pc-timeline.animated .pc-timeline-step:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.0s;
}

/* Node (circle + ring) */
.pc-timeline-node {
    position: relative;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
}

.pc-timeline-number {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Space Grotesk', monospace;
    background: var(--bg-card-solid);
    border: 2px solid var(--primary);
    color: var(--primary);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* First node is filled */
.pc-timeline-step:nth-child(2) .pc-timeline-number {
    background: linear-gradient(135deg, var(--primary), var(--secondary-dark));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(79, 209, 197, 0.35);
}

/* Animated ring pulse */
.pc-timeline-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

@keyframes ringPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.pc-timeline.animated .pc-timeline-step:nth-child(2) .pc-timeline-ring {
    animation: ringPulse 1.2s ease-out 0.4s;
}

.pc-timeline.animated .pc-timeline-step:nth-child(3) .pc-timeline-ring {
    animation: ringPulse 1.2s ease-out 0.8s;
}

.pc-timeline.animated .pc-timeline-step:nth-child(4) .pc-timeline-ring {
    animation: ringPulse 1.2s ease-out 1.2s;
}

/* Glow on nodes after animated */
.pc-timeline.animated .pc-timeline-number {
    box-shadow: 0 0 16px rgba(79, 209, 197, 0.2);
}

/* Content card */
.pc-timeline-content {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    backdrop-filter: blur(var(--glass-blur));
    transition: all 0.4s ease;
    position: relative;
}

.pc-timeline-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 18px;
    width: 14px;
    height: 14px;
    background: var(--bg-card);
    border-left: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    transform: rotate(45deg);
}

.pc-timeline-content:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(79, 209, 197, 0.1);
    transform: translateX(4px);
}

.pc-timeline-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: rgba(79, 209, 197, 0.1);
    border: 1px solid rgba(79, 209, 197, 0.2);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.pc-timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.pc-timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* === TESTIMONIALS (like Popcorn "They love it") === */
.pc-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pc-testimonial {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    backdrop-filter: blur(var(--glass-blur));
}

.pc-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pc-testimonial-stars {
    color: #f5a623;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.pc-testimonial blockquote {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.pc-testimonial cite {
    font-size: 13px;
    font-style: normal;
    color: var(--text-muted);
    font-weight: 500;
}

/* === PRICING === */
.pc-pricing-wrap {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    padding: 48px 40px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(var(--glass-blur));
}

.pc-pricing-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.pc-pricing-grid::-webkit-scrollbar {
    display: none;
}

.pc-pricing-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
    scroll-snap-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    background: var(--bg-surface);
}

.pc-pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--glow-primary);
}

.pc-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    background: var(--accent-pink);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 12px rgba(246, 135, 179, 0.3);
}

.pc-pricing-plan {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pc-pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.pc-pricing-price small {
    font-size: 20px;
    font-weight: 600;
}

.pc-pricing-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pc-pricing-savings {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-pink-light);
    color: var(--accent-pink);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

.pc-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}

.pc-pricing-features li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-medium);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pc-pricing-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: var(--primary-bg);
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234fd1c5' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.pc-pricing-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: rgba(255,255,255,0.06);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    cursor: pointer;
}

.pc-pricing-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
    transform: translateY(-1px);
    border-color: rgba(79, 209, 197, 0.3);
    box-shadow: var(--shadow-md);
}

.pc-pricing-card.featured .pc-pricing-btn {
    background: var(--gradient-btn);
    color: var(--white);
    box-shadow: var(--glow-primary), inset 0 1px 0 rgba(255,255,255,0.15);
}

.pc-pricing-card.featured .pc-pricing-btn:hover {
    background: var(--gradient-btn);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 209, 197, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.pc-pricing-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* === FAQ (Accordion) === */
.pc-faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pc-faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(var(--glass-blur));
}

.pc-faq-item.active {
    box-shadow: var(--shadow-sm);
}

.pc-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.pc-faq-q:hover {
    color: var(--accent-dark);
}

.pc-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1;
}

.pc-faq-item.active .pc-faq-icon {
    background: var(--primary-bg);
    color: var(--primary);
    transform: rotate(45deg);
}

.pc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.pc-faq-item.active .pc-faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}

.pc-faq-a p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === COMPARISON TABLE === */
.pc-compare {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(var(--glass-blur));
}

.pc-compare table {
    width: 100%;
    border-collapse: collapse;
}

.pc-compare th, .pc-compare td {
    padding: 16px 24px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border-medium);
}

.pc-compare thead th {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    background: var(--bg-surface);
}

.pc-compare thead th:nth-child(2) {
    color: var(--primary);
}

.pc-compare td:nth-child(2) {
    color: var(--primary-dark);
    font-weight: 600;
}

.pc-compare td:nth-child(3) {
    color: var(--text-muted);
}

/* === GUARANTEE === */
.pc-guarantee {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(var(--glass-blur));
}

.pc-guarantee-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-btn);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: var(--white);
    box-shadow: var(--glow-primary),
               0 0 60px rgba(79, 209, 197, 0.15);
}

.pc-guarantee h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.pc-guarantee p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 28px;
}

.pc-guarantee-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pc-guarantee-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.pc-guarantee-pill svg {
    color: var(--secondary);
}

/* === CTA BANNER === */
.pc-cta-banner {
    background: var(--bg-elevated);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(var(--glass-blur));
}

.pc-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(79, 209, 197, 0.15) 0%, transparent 40%),
               radial-gradient(circle at 70% 80%, rgba(104, 211, 145, 0.1) 0%, transparent 40%),
               radial-gradient(circle at 80% 20%, rgba(246, 135, 179, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.pc-cta-banner h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    position: relative;
}

.pc-cta-banner p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin: 0 auto 32px;
    position: relative;
}

.pc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-btn);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: var(--glow-primary), inset 0 1px 0 rgba(255,255,255,0.15);
}

.pc-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pc-cta-btn:hover {
    background: var(--gradient-btn);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 209, 197, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.pc-cta-btn:hover::before {
    opacity: 1;
}

/* === FOOTER === */
.pc-footer {
    padding: 64px 0 32px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.pc-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.pc-footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 12px;
    max-width: 280px;
}

.pc-footer h5 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pc-footer-links li {
    margin-bottom: 10px;
}

.pc-footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
}

.pc-footer-links a:hover {
    color: var(--text-primary);
}

.pc-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* === SCREENSHOTS GALLERY === */
.pc-screenshots-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 8px 0 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pc-screenshots-scroll::-webkit-scrollbar {
    display: none;
}

.pc-screenshot-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    backdrop-filter: blur(var(--glass-blur));
}

.pc-screenshot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.pc-screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

.pc-screenshot-info {
    padding: 14px 16px;
}

.pc-screenshot-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pc-screenshot-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* === TRANSFORMATION SECTION === */
.pc-transform {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(var(--glass-blur));
}

.pc-transform img {
    width: 100%;
    height: auto;
}

.pc-transform-caption {
    padding: 20px 24px;
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
}

/* === METHODOLOGIES SECTION === */
.pc-methods-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.pc-methods-grid::-webkit-scrollbar {
    display: none;
}

.pc-method-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 260px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 28px 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(var(--glass-blur));
}

.pc-method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.pc-method-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.pc-method-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.pc-method-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.pc-method-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pc-method-author {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.pc-method-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.pc-method-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--border-medium);
    padding-top: 16px;
}

.pc-method-stat {
    flex: 1;
    text-align: center;
}

.pc-method-stat:not(:last-child) {
    border-right: 1px solid var(--border-medium);
}

.pc-method-stat strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.pc-method-stat span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

/* ==========================
   RESPONSIVE
   ========================== */
@media (max-width: 992px) {
    .pc-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pc-info-card-inner {
        grid-template-columns: 1fr;
    }
    
    .pc-info-visual {
        padding: 24px;
    }
    
    .pc-pricing-grid {
        gap: 16px;
        padding: 0 4px 8px;
    }

    .pc-pricing-card {
        flex: 0 0 85%;
        min-width: 260px;
    }

    .pc-pricing-wrap {
        padding: 32px 20px;
    }

    .pc-testimonials {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pc-methods-grid {
        gap: 16px;
        padding: 0 4px 8px;
    }

    .pc-method-card {
        flex: 0 0 75%;
        min-width: 240px;
    }

    .pc-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pc-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .pc-hero {
        padding: 100px 0 40px;
    }

    .pc-hero h1 {
        font-size: clamp(32px, 8vw, 48px);
    }

    .pc-section {
        padding: 56px 0;
    }

    .pc-features-grid {
        grid-template-columns: 1fr;
    }

    .pc-features-row {
        padding: 32px 24px;
    }

    .pc-timeline {
        padding: 10px 0;
    }

    .pc-timeline-track {
        left: 24px;
    }

    .pc-timeline-step {
        gap: 20px;
        padding-bottom: 36px;
    }

    .pc-timeline-node {
        width: 48px;
        height: 48px;
    }

    .pc-timeline-number {
        width: 48px;
        height: 48px;
        font-size: 15px;
    }

    .pc-timeline-ring {
        width: 48px;
        height: 48px;
    }

    .pc-timeline-content {
        padding: 20px;
    }

    .pc-timeline-content::before {
        left: -7px;
        top: 15px;
        width: 12px;
        height: 12px;
    }

    .pc-timeline-content h4 {
        font-size: 16px;
    }

    .pc-methods-grid {
        gap: 12px;
    }

    .pc-method-card {
        flex: 0 0 80%;
    }

    .pc-info-text {
        padding: 32px 24px;
    }

    .pc-cta-banner {
        padding: 48px 24px;
    }

    .pc-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pc-guarantee {
        padding: 32px 24px;
    }

    .pc-pricing-wrap {
        padding: 32px 20px;
    }

    .pc-compare {
        overflow-x: auto;
    }

    .pc-compare table {
        min-width: 540px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .pc-hero-features {
        flex-direction: column;
        align-items: center;
    }

    .pc-hero-pill {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .pc-phone-frame {
        width: 240px;
    }

    .pc-guarantee-pills {
        flex-direction: column;
        align-items: center;
    }
}

/* === ANIMATIONS (reduced motion respected) === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Fade-in on scroll via IntersectionObserver */
.pc-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pc-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
