:root {
    /* カラー */
    --primary: #ff8fb1;
    --primary-dark: #f9a7bd;
    --secondary: #7ecad5;
    --secondary-light: #94deea;
    --accent: #e6e6fa;
    --text: #333;
    --text-muted: #555;
    --text-light: #666;
    --bg-light: #fff5f8;
    --bg-hero: #fceff5;
    --bg-hero-end: #f3e7ff;
    --white: #ffffff;
    --border: #f0e8f0;
    --shadow: rgba(61, 44, 70, 0.08);
    --shadow-hover: rgba(255, 143, 177, 0.25);

    /* スペーシング */
    --space-xs: 8px;
    --space-sm: 14px;
    --space-md: 20px;
    --space-lg: 40px;
    --space-xl: 56px;
    --space-2xl: 80px;
    --section-padding: 56px;
    --section-padding-mobile: 42px;

    /* タイポグラフィ */
    --font-size-xs: 0.7rem;
    --font-size-sm: 0.8rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.1rem;
    --font-size-xl: 2rem;
    --font-size-hero: 3rem;
    --font-size-hero-mobile: 2.35rem;
    --line-height-tight: 1.2;
    --line-height-base: 1.6;

    /* 角丸 */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 999px;

    /* トランジション */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--text);
    line-height: var(--line-height-base);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.max-width-sm {
    max-width: 600px;
}

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

.section-padding {
    padding: var(--section-padding) 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Header */
header {
    padding: var(--space-md) 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 1.2rem;
}

.icon-pink {
    color: var(--primary);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--bg-hero) 0%, var(--bg-hero-end) 50%, #e8dcf5 100%);
    padding: 150px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(255, 143, 177, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(126, 202, 213, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--primary);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    color: var(--primary);
    margin-bottom: var(--space-md);
    box-shadow: 0 2px 8px rgba(255, 143, 177, 0.15);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.final-cta {
    background: linear-gradient(135deg, var(--bg-hero) 0%, var(--bg-hero-end) 100%);
}

.final-cta .hero-cta {
    justify-content: center;
}

.final-cta h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: bold;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    display: inline-block;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-hover);
}

.btn:active {
    transform: translateY(-1px);
}

.btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.btn-primary {
    background: linear-gradient(90deg, #ff8fb1, #ffacc7);
    color: white;
}

.btn-secondary {
    background: linear-gradient(90deg, #7ecad5, #93e4ed);
    color: white;
}

.btn-block {
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 460px;
    max-width: 430px;
    margin: 0 auto 0 -50px;
}

.photo-card {
    position: absolute;
    width: 180px;
    background: white;
    padding: 10px 10px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card-1:hover { transform: rotate(-8deg) translateY(-6px) scale(1.03); }
.card-2:hover { transform: rotate(6deg) translateY(-6px) scale(1.03); }
.card-3:hover { transform: rotate(-4deg) translateY(-6px) scale(1.03); }
.card-4:hover { transform: rotate(7deg) translateY(-6px) scale(1.03); }

.photo-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.photo-card img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.card-1 {
    top: 10px;
    left: -40px;
    z-index: 3;
    transform: rotate(-8deg);
}

.card-2 {
    top: 0;
    left: 150px;
    z-index: 2;
    transform: rotate(6deg);
}

.card-3 {
    top: 210px;
    left: -20px;
    z-index: 1;
    transform: rotate(-4deg);
}

.card-4 {
    top: 220px;
    left: 170px;
    z-index: 0;
    transform: rotate(7deg);
}

/* Grid Utilities */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Cards */
.step-card {
    background: white;
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Form */
.form-container {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.form-container:hover {
    box-shadow: 0 24px 64px rgba(61, 44, 70, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="email"] {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* FAQ */
details {
    background: white;
    margin-bottom: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid #eee;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

details:hover {
    border-color: rgba(255, 143, 177, 0.3);
}

details[open] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

summary {
    padding: var(--space-md);
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    position: relative;
    transition: color var(--transition-fast);
}

summary:hover {
    color: var(--primary);
}

summary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

summary::after {
    content: "＋";
    position: absolute;
    right: 20px;
}

details[open] summary::after {
    content: "ー";
}

details p {
    padding: 0 20px 20px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: block;
        height: 320px;
        max-width: 320px;
        margin: 24px auto 0;
    }

    .photo-card {
        width: 130px;
        padding: 8px 8px 20px;
    }

    .card-1 {
        top: 8px;
        left: 50%;
        transform: translateX(-115px) rotate(-8deg);
    }

    .card-2 {
        top: 0;
        left: 50%;
        transform: translateX(5px) rotate(6deg);
    }

    .card-3 {
        top: 155px;
        left: 50%;
        transform: translateX(-120px) rotate(-4deg);
    }

    .card-4 {
        top: 162px;
        left: 50%;
        transform: translateX(0) rotate(7deg);
    }
}

/* レイアウト・デザイン統一 */
body {
    background: #f5f1f7;
}

.section-title {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-xs);
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: var(--space-xs);
}

main > section {
    border-radius: var(--radius-xl);
}

h1 {
    font-size: var(--font-size-hero);
    letter-spacing: 0.02em;
}

.hero-text p {
    font-size: var(--font-size-base);
    color: var(--text-muted);
}

.badge {
    background: #fff8fb;
    border-color: #f3b4ca;
    color: #cf6e98;
}

.btn {
    min-width: 210px;
    text-align: center;
    border-radius: var(--radius-full);
    padding: 13px 24px;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.btn-secondary {
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
}

/* App Screens Section */
.app-screens {
    margin-top: 18px;
    background: #fff;
}

.screen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.screen-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.screen-iframe-wrap {
    width: 227px;
    height: 535px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.screen-iframe {
    width: 375px;
    height: 884px;
    border: none;
    background: #f8f6f7;
    transform: scale(0.606);
    transform-origin: 0 0;
    pointer-events: none;
}

.screen-label {
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--text);
}

@media (max-width: 1024px) {
    .screen-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .screen-iframe-wrap {
        width: 193px;
        height: 456px;
    }

    .screen-iframe {
        transform: scale(0.516);
    }
}

.steps,
.target,
.perks,
.registration,
.faq,
.final-cta {
    margin-top: 18px;
    background: #fff;
}

.steps.section-padding,
.app-screens.section-padding,
.target.section-padding,
.perks.section-padding,
.registration.section-padding,
.faq.section-padding,
.final-cta.section-padding {
    padding: 56px 0;
}

.step-card {
    border: 1px solid #f0e8f0;
    box-shadow: 0 8px 24px rgba(61, 44, 70, 0.08);
    padding: 30px 18px 24px;
}

.step-card p {
    font-size: 0.9rem;
    color: #555;
}

.grid-3 .step-card:not(:last-child)::after {
    content: "▶";
    position: absolute;
    right: -18px;
    top: 46%;
    color: #d8c2d5;
    font-size: 14px;
    z-index: 2;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.target-card {
    background: #fff;
    border: 1px solid #f2e8f1;
    border-radius: var(--radius-md);
    padding: var(--space-sm) 12px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(61, 44, 70, 0.06);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-fast);
}

.target-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(61, 44, 70, 0.1);
    border-color: rgba(255, 143, 177, 0.3);
}

.target-avatar {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd4e5, #f6c5d9);
    color: #9f4f73;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-card h3 {
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.target-card p {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
}

.perk-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.perk-card {
    border: 1px solid #f1e7ef;
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    background: #fff;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-fast);
}

.perk-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(61, 44, 70, 0.08);
    border-color: rgba(126, 202, 213, 0.4);
}

.perk-card i {
    color: #d5789f;
    width: 20px;
    height: 20px;
    margin-bottom: 8px;
}

.perk-card h4 {
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.perk-card p {
    font-size: 0.7rem;
    color: #666;
    line-height: 1.45;
}

.form-container {
    border: 1px solid #f1e5ee;
    box-shadow: 0 10px 30px rgba(61, 44, 70, 0.07);
}

footer {
    padding: 26px 0 40px;
    color: #84768c;
}

@media (max-width: 1024px) {
    .target-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .perk-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 42px 0;
    }

    .hero {
        padding: 96px 0 52px;
    }

    h1 {
        font-size: 2.35rem;
    }

    .badge {
        font-size: 0.72rem;
    }

    .hero-cta {
        gap: 10px;
    }

    .btn {
        min-width: 100%;
        font-size: 0.95rem;
        padding: 12px 14px;
    }

    .grid-3 .step-card:not(:last-child)::after {
        display: none;
    }

    .target-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .perk-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .target-card p,
    .perk-card p {
        font-size: 0.72rem;
    }
}

/* ===========================
   LAYOUT ADDITIONS
   =========================== */

/* Header nav */
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}
.nav-links a:hover {
    color: var(--primary);
}
.btn-sm {
    padding: 10px 20px !important;
    min-width: unset !important;
    font-size: 0.88rem !important;
}

/* Stats bar */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 143, 177, 0.2);
    border-radius: var(--radius-xl);
    padding: 20px 40px;
    margin-top: 48px;
    flex-wrap: wrap;
    gap: 0;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 40px;
}
.stat-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-plus,
.stat-unit {
    font-size: 1.1rem;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}

/* How it works */
.how-it-works,
.audience {
    margin-top: 18px;
    background: #fff;
}
.how-it-works.section-padding,
.audience.section-padding {
    padding: 56px 0;
}
.steps-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    position: relative;
    text-align: center;
}
.step-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #c026d3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 12px 32px rgba(238, 43, 124, 0.3);
    flex-shrink: 0;
}
.step-icon-wrap i {
    width: 36px;
    height: 36px;
    color: white;
    stroke-width: 1.5;
}
.step-arrow {
    position: absolute;
    top: 22px;
    right: -18px;
    color: #d8c2d5;
    z-index: 2;
}
.step-arrow i {
    width: 28px;
    height: 28px;
}
.step-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.step-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* Audience section */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 48px;
}
.audience-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1.5px solid var(--border);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(61, 44, 70, 0.06);
}
.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}
.audience-fan::before {
    background: linear-gradient(90deg, var(--primary), #c026d3);
}
.audience-creator::before {
    background: linear-gradient(90deg, var(--secondary), #7c3aed);
}
.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(61, 44, 70, 0.12);
}
.audience-fan:hover {
    border-color: rgba(238, 43, 124, 0.2);
}
.audience-creator:hover {
    border-color: rgba(126, 202, 213, 0.3);
}
.audience-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(238, 43, 124, 0.08);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    align-self: flex-start;
}
.audience-badge-creator {
    background: rgba(126, 202, 213, 0.15);
    color: #0e9aa7;
}
.audience-icon {
    width: 44px;
    height: 44px;
    color: var(--primary);
    stroke-width: 1.5;
}
.audience-creator .audience-icon {
    color: var(--secondary);
}
.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}
.audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.audience-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-muted);
}
.audience-list i {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    stroke-width: 2.5;
}
.audience-creator .audience-list i {
    color: var(--secondary);
}

/* Final CTA redesign */
.final-cta {
    background: linear-gradient(135deg, #1a0a12 0%, #2d1040 50%, #1a1040 100%) !important;
    color: white;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(238, 43, 124, 0.2) 0%, transparent 70%);
    pointer-events: none;
}
.final-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.final-cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.final-eyebrow {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(238, 43, 124, 0.2);
    border: 1px solid rgba(238, 43, 124, 0.35);
    color: #ff8fb1;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 22px;
}
.final-cta h2 {
    font-size: 2.8rem !important;
    color: white !important;
    -webkit-text-fill-color: white !important;
    background: none !important;
    margin-bottom: 16px !important;
    line-height: 1.2;
}
.final-cta p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
    font-size: 1rem;
    line-height: 1.7;
}
.btn-white {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white !important;
    backdrop-filter: blur(8px);
}
.btn-white:hover {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Footer redesign */
footer {
    background: #0f0710;
    color: rgba(255, 255, 255, 0.5);
    padding: 56px 0 32px !important;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 28px;
}
.footer-brand .logo {
    color: white;
    margin-bottom: 12px;
}
.footer-brand .logo span {
    color: white;
}
.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}
.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
}
.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav-group h4 {
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.footer-nav-group a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color var(--transition-fast);
}
.footer-nav-group a:hover {
    color: var(--primary);
}
.footer-bottom {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
}

/* Responsive additions */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .stats-bar {
        padding: 16px 16px;
    }
    .stat-item {
        padding: 8px 14px;
    }
    .stat-num {
        font-size: 1.4rem;
    }
    .stat-divider {
        height: 28px;
    }
    .steps-flow {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .step-arrow {
        display: none;
    }
    .audience-grid {
        grid-template-columns: 1fr;
    }
    .audience-card {
        padding: 28px 22px;
    }
    .final-cta h2 {
        font-size: 1.9rem !important;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ===========================
   DESIGN ENHANCEMENTS
   =========================== */

/* Gradient headline */
h1 {
    background: linear-gradient(135deg, #ee2b7c 0%, #c026d3 55%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section title accent line */
.section-title {
    position: relative;
    padding-bottom: 20px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #a855f7);
    border-radius: 2px;
}

/* Button shimmer */
.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-20deg);
    animation: btnShimmer 3.5s infinite;
    pointer-events: none;
}
@keyframes btnShimmer {
    0% { left: -100%; }
    45%, 100% { left: 150%; }
}

/* Floating hero blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    animation: blobFloat 9s ease-in-out infinite;
}
.hero-blob-1 {
    width: 420px;
    height: 420px;
    background: rgba(238, 43, 124, 0.14);
    top: -100px;
    right: 2%;
}
.hero-blob-2 {
    width: 300px;
    height: 300px;
    background: rgba(168, 85, 247, 0.1);
    bottom: -60px;
    left: 3%;
    animation-delay: -4.5s;
}
.hero-blob-3 {
    width: 220px;
    height: 220px;
    background: rgba(126, 202, 213, 0.1);
    top: 40%;
    left: 35%;
    animation-delay: -2s;
}
@keyframes blobFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-24px) scale(1.04); }
}

/* Scroll fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero staggered entrance delays */
.hero-anim-1 { transition-delay: 0.05s; }
.hero-anim-2 { transition-delay: 0.2s; }
.hero-anim-3 { transition-delay: 0.35s; }
.hero-anim-4 { transition-delay: 0.5s; }

/* Staggered card grids */
.fade-in-stagger > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.fade-in-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.fade-in-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.fade-in-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }
.fade-in-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

