/* ==========================================
   KR INSIGHT · Cherry Mocha Theme
   Palette: #A52A2A (Cherry) · #7B5B47 (Mocha) · #F1D6D0 (Soft Pink)
   Font: Nanum Gothic
========================================== */

:root {
    --cherry: #A52A2A;
    --cherry-deep: #7A1F1F;
    --cherry-soft: #C44747;
    --mocha: #7B5B47;
    --mocha-deep: #5C4232;
    --mocha-light: #A38876;
    --pink: #F1D6D0;
    --pink-soft: #FBEFEC;
    --pink-deep: #E5BCB3;
    --cream: #FBF6F2;
    --cream-warm: #F5EBE2;
    --ink: #2A1F1A;
    --ink-soft: #5A4A40;
    --ink-mute: #8A7C72;
    --line: rgba(123, 91, 71, 0.14);
    --line-strong: rgba(123, 91, 71, 0.28);
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(165, 42, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(165, 42, 42, 0.10);
    --shadow-lg: 0 20px 60px rgba(165, 42, 42, 0.16);
    --shadow-xl: 0 40px 100px rgba(165, 42, 42, 0.22);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nanum Gothic', -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "맑은 고딕", sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 110px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============= LOGO ============= */
.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--cherry);
    color: var(--cream);
    font-weight: 800;
    font-size: 14px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.3px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cherry);
    position: relative;
    animation: pulseDot 1.6s ease-in-out infinite;
}

.live-dot.small {
    width: 6px;
    height: 6px;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(165, 42, 42, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(165, 42, 42, 0); }
}

/* ============= HERO ============= */
.hero {
    position: relative;
    padding: 50px 32px 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(241, 214, 208, 0.55), transparent 38%),
        radial-gradient(circle at 88% 82%, rgba(241, 214, 208, 0.4), transparent 40%),
        var(--cream);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.5;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.hero-blob-1 {
    width: 480px;
    height: 480px;
    background: var(--pink-deep);
    top: -120px;
    right: -100px;
    animation: floatBlob 18s ease-in-out infinite;
}

.hero-blob-2 {
    width: 360px;
    height: 360px;
    background: var(--cherry-soft);
    opacity: 0.18;
    bottom: -80px;
    left: -80px;
    animation: floatBlob 22s ease-in-out infinite reverse;
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.08); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--pink-deep);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--cherry-deep);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}

.hero-badge i {
    color: var(--cherry);
}

.hero-title {
    font-size: clamp(38px, 5.8vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--ink);
    margin-bottom: 28px;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(120deg, var(--cherry) 0%, var(--mocha) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.title-accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 6px;
    background: var(--pink);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.7;
}

.ink-accent {
    color: var(--cherry);
    font-weight: 800;
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-subtitle strong {
    color: var(--cherry);
    font-weight: 800;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    margin-bottom: 36px;
    box-shadow: var(--shadow-sm);
    width: fit-content;
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--cherry);
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-value sup {
    font-size: 16px;
    color: var(--mocha);
}

.stat-label {
    font-size: 12px;
    color: var(--ink-mute);
    margin-top: 6px;
    font-weight: 700;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--line);
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

/* ============= BUTTONS ============= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--cherry);
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(165, 42, 42, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    letter-spacing: -0.2px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(165, 42, 42, 0.40);
    background: var(--cherry-deep);
}

.btn-primary .btn-icon {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    background: var(--white);
    padding: 2px;
}

.btn-arrow {
    font-size: 13px;
    transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 24px;
    background: transparent;
    color: var(--mocha-deep);
    font-size: 15px;
    font-weight: 700;
    border: 1.5px solid var(--mocha-light);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: var(--white);
    border-color: var(--mocha);
    color: var(--mocha-deep);
}

.btn-secondary i {
    color: var(--cherry);
    font-size: 16px;
}

.btn-inline {
    margin-top: 14px;
}

.btn-xl {
    padding: 22px 44px;
    font-size: 17px;
    gap: 14px;
}

.btn-xl .btn-icon {
    width: 26px;
    height: 26px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-mute);
    font-weight: 600;
}

.hero-trust i {
    color: var(--cherry);
    font-size: 14px;
}

/* ============= HERO VISUAL ============= */
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 580px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: heroFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(165, 42, 42, 0.12));
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    animation: cardFloat 7s ease-in-out infinite;
}

.float-card-1 {
    top: 6%;
    right: -6%;
    min-width: 200px;
    animation-delay: 0s;
}

.float-card-2 {
    top: 38%;
    left: -10%;
    min-width: 230px;
    animation-delay: -2s;
}

.float-card-3 {
    bottom: 18%;
    right: -4%;
    animation-delay: -4s;
}

.float-card-4 {
    bottom: -2%;
    left: 8%;
    animation-delay: -3s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.float-card-header i {
    color: var(--cherry);
    font-size: 12px;
}

.float-card-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--mocha-deep);
    letter-spacing: 0.8px;
}

.float-card-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--cherry);
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.5px;
}

.float-card-value i {
    font-size: 16px;
}

.pct {
    font-size: 16px;
    color: var(--mocha);
    margin-left: 2px;
}

.float-card-meta {
    font-size: 11px;
    color: var(--ink-mute);
    margin-top: 4px;
    font-weight: 600;
}

.float-card-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--ink-soft);
    font-weight: 600;
    padding: 5px 0;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    padding: 2px 8px;
    background: var(--pink-soft);
    color: var(--cherry-deep);
    font-size: 10px;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 0.4px;
}

.float-mini-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--cherry);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.mini-stat-icon.alt {
    background: var(--mocha);
}

.mini-stat-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.3px;
}

.mini-stat-num sup {
    font-size: 12px;
    color: var(--cherry);
}

.mini-stat-label {
    font-size: 11px;
    color: var(--ink-mute);
    margin-top: 3px;
    font-weight: 600;
}

.float-chart {
    position: absolute;
    bottom: 28%;
    left: 24%;
    width: 220px;
    height: 80px;
    opacity: 0.85;
    animation: cardFloat 9s ease-in-out infinite;
    animation-delay: -1s;
    pointer-events: none;
}

/* ============= MARQUEE ============= */
.marquee-section {
    background: var(--cherry);
    color: var(--cream);
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid var(--cherry-deep);
    border-bottom: 1px solid var(--cherry-deep);
}

.marquee-track {
    display: flex;
    gap: 64px;
    white-space: nowrap;
    animation: marquee 32s linear infinite;
    will-change: transform;
}

.marquee-item {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.marquee-item i {
    color: var(--pink);
    font-size: 14px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============= SECTION INTRO ============= */
.section-intro {
    padding: 110px 32px 60px;
    text-align: center;
}

.section-container {
    max-width: 880px;
    margin: 0 auto;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 800;
    color: var(--cherry);
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.eyebrow-line {
    height: 1px;
    width: 36px;
    background: var(--cherry);
    opacity: 0.4;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.18;
    color: var(--ink);
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-lead {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.7;
}

/* ============= FEATURES GRID ============= */
.features-grid-section {
    padding: 30px 32px 100px;
}

.features-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    position: relative;
    padding: 32px 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cherry), var(--mocha));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pink-deep);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--pink-soft), var(--pink));
    color: var(--cherry);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
    transform: rotate(-6deg) scale(1.05);
}

.feature-number {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 13px;
    font-weight: 800;
    color: var(--mocha-light);
    letter-spacing: 1px;
}

.feature-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.feature-desc {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.7;
}

/* ============= CONTENT MODULES ============= */
.content-module {
    padding: 80px 32px;
}

.content-module:nth-child(even) {
    background: var(--cream-warm);
}

.module-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.module-image-left .module-visual {
    order: 1;
}

.module-image-left .module-text {
    order: 2;
}

.module-text-left .module-visual {
    order: 2;
}

.module-text-left .module-text {
    order: 1;
}

.module-visual {
    position: relative;
}

.module-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotate(-1.2deg);
    transition: transform 0.4s ease;
}

.module-image-frame.frame-alt {
    transform: rotate(1.2deg);
}

.module-image-frame:hover {
    transform: rotate(0) scale(1.02);
}

.module-image-frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.image-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    color: var(--cherry-deep);
    box-shadow: var(--shadow-md);
}

.image-overlay-badge i {
    color: var(--cherry);
}

.image-overlay-badge.alt-pos {
    bottom: auto;
    top: 20px;
    left: auto;
    right: 20px;
}

.module-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: var(--pink-soft);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: var(--cherry-deep);
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.module-eyebrow.center {
    margin-left: auto;
    margin-right: auto;
}

.module-eyebrow i {
    color: var(--cherry);
}

.module-title {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.18;
    letter-spacing: -0.8px;
    margin-bottom: 20px;
}

.module-desc {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 22px;
}

.module-list {
    list-style: none;
    margin-bottom: 22px;
}

.module-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--ink);
    font-weight: 600;
}

.module-list li i {
    color: var(--cherry);
    background: var(--pink-soft);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

.metric-row {
    display: flex;
    gap: 20px;
    margin: 26px 0 8px;
}

.metric-block {
    flex: 1;
    padding: 18px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.metric-num {
    font-size: 30px;
    font-weight: 800;
    color: var(--cherry);
    line-height: 1;
    letter-spacing: -0.5px;
}

.metric-unit {
    font-size: 16px;
    color: var(--mocha);
    margin-left: 2px;
}

.metric-label {
    font-size: 12px;
    color: var(--ink-mute);
    margin-top: 8px;
    font-weight: 700;
}

/* ============= ARCHIVE ============= */
.archive-section {
    padding: 100px 32px;
    background:
        radial-gradient(circle at 80% 20%, rgba(241, 214, 208, 0.6), transparent 50%),
        var(--cream);
}

.archive-container {
    max-width: 1240px;
    margin: 0 auto;
}

.archive-header {
    text-align: center;
    margin-bottom: 56px;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.archive-tile {
    padding: 26px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.archive-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink-deep);
}

.archive-tile.featured {
    background: linear-gradient(135deg, var(--cherry), var(--cherry-deep));
    color: var(--cream);
    border-color: var(--cherry-deep);
}

.archive-tile.featured .archive-tile-num,
.archive-tile.featured .archive-tile-title,
.archive-tile.featured .archive-tile-meta {
    color: var(--cream);
}

.archive-tile.featured .archive-tile-meta i {
    color: var(--pink);
}

.archive-tile-num {
    font-size: 12px;
    font-weight: 800;
    color: var(--cherry);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.archive-tile-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    line-height: 1.35;
}

.archive-tile-meta {
    font-size: 12px;
    color: var(--ink-mute);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.archive-tile-meta i {
    color: var(--cherry);
}

.archive-tile.total-tile {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.total-tile-num {
    font-size: 44px;
    font-weight: 800;
    color: var(--pink);
    line-height: 1;
    letter-spacing: -1px;
}

.total-tile-num sup {
    font-size: 22px;
}

.total-tile-label {
    font-size: 12px;
    color: var(--pink-deep);
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 12px;
}

/* ============= FINAL CTA ============= */
.final-cta-section {
    position: relative;
    padding: 120px 32px;
    background: linear-gradient(135deg, var(--cherry-deep) 0%, var(--cherry) 60%, var(--mocha) 100%);
    color: var(--cream);
    overflow: hidden;
    text-align: center;
}

.final-cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(241, 214, 208, 0.18) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(241, 214, 208, 0.15) 0%, transparent 28%);
    pointer-events: none;
}

.final-cta-container {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.final-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    color: var(--cream);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.final-eyebrow i {
    color: var(--pink);
}

.final-title {
    font-size: clamp(32px, 4.6vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 22px;
    color: var(--cream);
}

.final-title .ink-accent {
    color: var(--pink);
}

.final-desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(251, 246, 242, 0.85);
    margin-bottom: 40px;
}

.final-cta-section .btn-primary {
    background: var(--cream);
    color: var(--cherry-deep);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.final-cta-section .btn-primary:hover {
    background: var(--white);
    color: var(--cherry-deep);
}

.final-trust-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 30px;
    font-size: 13px;
    color: rgba(251, 246, 242, 0.8);
    font-weight: 700;
}

.final-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.final-trust-row i {
    color: var(--pink);
}

/* ============= FOOTER ============= */
.site-footer {
    background: var(--ink);
    color: var(--cream);
    padding: 50px 32px 40px;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .logo-text {
    color: var(--cream);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--pink-deep);
}

.footer-links a {
    transition: color 0.2s ease;
    cursor: pointer;
}

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

.footer-sep {
    color: var(--mocha-light);
    opacity: 0.5;
}

.footer-copy {
    font-size: 12px;
    color: var(--mocha-light);
    letter-spacing: 0.3px;
}

/* ============= FIXED BOTTOM CTA ============= */
.fixed-cta {
    position: fixed;
    bottom: 18px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    pointer-events: none;
}

.fixed-cta-btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: var(--cherry);
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    border: 2px solid var(--cream);
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 18px 50px rgba(165, 42, 42, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: -0.2px;
    max-width: 92vw;
}

.fixed-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(165, 42, 42, 0.55);
}

.fixed-cta-btn .btn-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--white);
    padding: 2px;
    flex-shrink: 0;
}

.fixed-cta-btn .btn-arrow {
    transition: transform 0.2s ease;
}

.fixed-cta-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============= MODAL ============= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 31, 26, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-box {
    position: relative;
    max-width: 560px;
    width: 100%;
    max-height: 85vh;
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 36px 36px 28px;
    overflow-y: auto;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
    animation: modalIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    background: var(--pink-soft);
    color: var(--cherry-deep);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: var(--pink-deep);
}

.modal-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 20px;
    letter-spacing: -0.4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-title i {
    color: var(--cherry);
}

.modal-body {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.8;
}

.modal-body p {
    margin-bottom: 14px;
}

.modal-body strong {
    color: var(--ink);
    font-weight: 800;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 960px) {
    .hero {
        padding: 36px 22px 50px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-content {
        text-align: left;
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 14px;
        padding: 16px;
    }

    .stat-divider {
        display: none;
    }

    .float-card-1 {
        right: 0;
        top: 0;
    }

    .float-card-2 {
        left: 0;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .module-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .module-image-left .module-visual,
    .module-text-left .module-visual {
        order: 1;
    }

    .module-image-left .module-text,
    .module-text-left .module-text {
        order: 2;
    }

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

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    body {
        padding-bottom: 96px;
        font-size: 14px;
    }

    /* HERO */
    .hero {
        padding: 26px 18px 36px;
    }

    .hero-container {
        gap: 26px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
        gap: 7px;
        margin-bottom: 18px;
        border-radius: 999px;
    }

    .hero-badge i {
        font-size: 11px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -1.2px;
        line-height: 1.12;
        margin-bottom: 18px;
        font-weight: 800;
    }

    .title-line {
        display: block;
    }

    .title-accent::after {
        height: 5px;
        bottom: 0;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 22px;
        color: var(--ink-soft);
        max-width: 100%;
    }

    .hero-subtitle strong {
        white-space: nowrap;
    }

    .hero-stats {
        gap: 6px;
        padding: 14px 10px;
        margin-bottom: 22px;
        width: 100%;
        justify-content: space-between;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
        text-align: center;
        padding: 0 4px;
    }

    .stat-value {
        font-size: 20px;
        letter-spacing: -0.4px;
        white-space: nowrap;
    }

    .stat-value sup {
        font-size: 11px;
        top: -0.4em;
        position: relative;
    }

    .stat-label {
        font-size: 11px;
        margin-top: 5px;
        font-weight: 700;
        color: var(--ink-mute);
        letter-spacing: -0.1px;
        white-space: nowrap;
    }

    .stat-divider {
        display: block;
        width: 1px;
        height: 28px;
        background: var(--line);
        align-self: center;
        flex-shrink: 0;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 14px;
        gap: 9px;
    }

    .btn-primary {
        box-shadow: 0 10px 26px rgba(165, 42, 42, 0.32);
    }

    .btn-primary .btn-icon {
        width: 20px;
        height: 20px;
    }

    .hero-cta-row {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-bottom: 18px;
    }

    .hero-trust {
        font-size: 12px;
        gap: 8px;
        color: var(--ink-mute);
        line-height: 1.45;
        padding: 8px 0 0;
        border-top: 1px dashed var(--line);
    }

    .hero-trust i {
        font-size: 13px;
        flex-shrink: 0;
    }

    .hero-image-wrap {
        max-width: 320px;
    }

    .float-card {
        padding: 9px 12px;
        border-radius: 10px;
    }

    .float-card-1 {
        min-width: 140px;
        top: -4%;
        right: -2%;
    }

    .float-card-2 {
        min-width: 158px;
        left: -2%;
        top: 30%;
    }

    .float-card-3 {
        bottom: 12%;
        right: -3%;
    }

    .float-card-4 {
        bottom: -4%;
        left: 4%;
    }

    .float-card-header {
        margin-bottom: 4px;
    }

    .float-card-title {
        font-size: 9.5px;
    }

    .float-card-value {
        font-size: 17px;
    }

    .float-card-value i {
        font-size: 12px;
    }

    .pct {
        font-size: 12px;
    }

    .float-card-meta {
        font-size: 9.5px;
    }

    .float-card-line {
        font-size: 10.5px;
        padding: 3px 0;
    }

    .badge-tag {
        min-width: 30px;
        font-size: 9px;
        padding: 1px 6px;
    }

    .float-card-3,
    .float-card-4 {
        padding: 7px 10px;
    }

    .mini-stat-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        border-radius: 8px;
    }

    .mini-stat-num {
        font-size: 14px;
    }

    .mini-stat-num sup {
        font-size: 10px;
    }

    .mini-stat-label {
        font-size: 9.5px;
        margin-top: 2px;
    }

    .float-mini-stat {
        gap: 8px;
    }

    .float-chart {
        width: 140px;
        height: 56px;
        bottom: 30%;
    }

    /* MARQUEE */
    .marquee-section {
        padding: 12px 0;
    }

    .marquee-item {
        font-size: 12.5px;
        gap: 8px;
    }

    .marquee-track {
        gap: 36px;
    }

    /* SECTION INTRO */
    .section-intro {
        padding: 44px 16px 24px;
    }

    .section-eyebrow {
        font-size: 10.5px;
        gap: 10px;
        margin-bottom: 16px;
        letter-spacing: 1.5px;
    }

    .eyebrow-line {
        width: 24px;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.25;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }

    .section-lead {
        font-size: 13.5px;
        line-height: 1.65;
    }

    /* FEATURES */
    .features-grid-section {
        padding: 12px 16px 44px;
    }

    .features-container {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .feature-card {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .feature-icon-wrap {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 11px;
        margin-bottom: 14px;
    }

    .feature-number {
        top: 16px;
        right: 14px;
        font-size: 10.5px;
    }

    .feature-title {
        font-size: 14.5px;
        margin-bottom: 8px;
        letter-spacing: -0.2px;
    }

    .feature-desc {
        font-size: 12px;
        line-height: 1.6;
    }

    /* MODULES */
    .content-module {
        padding: 40px 16px;
    }

    .module-container {
        gap: 22px;
    }

    .module-image-frame {
        border-radius: 18px;
    }

    .image-overlay-badge {
        bottom: 12px;
        left: 12px;
        padding: 7px 12px;
        font-size: 11px;
        gap: 6px;
    }

    .image-overlay-badge.alt-pos {
        top: 12px;
        right: 12px;
    }

    .module-eyebrow {
        font-size: 10.5px;
        padding: 5px 11px;
        margin-bottom: 14px;
        letter-spacing: 0.8px;
    }

    .module-title {
        font-size: 22px;
        letter-spacing: -0.4px;
        margin-bottom: 12px;
    }

    .module-desc {
        font-size: 13.5px;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .module-list {
        margin-bottom: 16px;
    }

    .module-list li {
        font-size: 13px;
        padding: 6px 0;
        gap: 10px;
    }

    .module-list li i {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }

    .metric-row {
        gap: 10px;
        margin: 16px 0 4px;
    }

    .metric-block {
        padding: 12px 14px;
        border-radius: 12px;
    }

    .metric-num {
        font-size: 22px;
    }

    .metric-unit {
        font-size: 13px;
    }

    .metric-label {
        font-size: 10.5px;
        margin-top: 5px;
    }

    .btn-inline {
        margin-top: 6px;
    }

    /* ARCHIVE */
    .archive-section {
        padding: 44px 16px;
    }

    .archive-header {
        margin-bottom: 28px;
    }

    .archive-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .archive-tile {
        padding: 16px 14px;
        border-radius: 12px;
    }

    .archive-tile-num {
        font-size: 10.5px;
        margin-bottom: 8px;
    }

    .archive-tile-title {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .archive-tile-meta {
        font-size: 10.5px;
        gap: 5px;
    }

    .total-tile-num {
        font-size: 32px;
    }

    .total-tile-num sup {
        font-size: 16px;
    }

    .total-tile-label {
        font-size: 10.5px;
        margin-top: 8px;
        letter-spacing: 0.6px;
    }

    /* FINAL CTA */
    .final-cta-section {
        padding: 52px 18px;
    }

    .final-eyebrow {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 18px;
    }

    .final-title {
        font-size: 25px;
        letter-spacing: -0.5px;
        margin-bottom: 14px;
    }

    .final-desc {
        font-size: 13.5px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .btn-xl {
        padding: 15px 22px;
        font-size: 14px;
        gap: 10px;
    }

    .btn-xl .btn-icon {
        width: 22px;
        height: 22px;
    }

    .final-trust-row {
        gap: 14px;
        font-size: 11.5px;
        margin-top: 20px;
    }

    /* FOOTER */
    .site-footer {
        padding: 30px 18px 26px;
    }

    .footer-container {
        gap: 14px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 12px;
        gap: 8px;
    }

    .footer-copy {
        font-size: 11px;
    }

    /* FIXED CTA */
    .fixed-cta {
        bottom: 12px;
        padding: 0 12px;
    }

    .fixed-cta-btn {
        padding: 13px 18px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
        gap: 10px;
        border-width: 1.5px;
    }

    .fixed-cta-btn .btn-icon {
        width: 20px;
        height: 20px;
    }

    /* MODAL */
    .modal-box {
        padding: 26px 20px 20px;
        max-height: 80vh;
    }

    .modal-title {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .modal-body {
        font-size: 13px;
        line-height: 1.75;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 27px;
    }

    .stat-value {
        font-size: 17px;
    }

    .stat-label {
        font-size: 9.5px;
    }

    .section-title {
        font-size: 22px;
    }

    .module-title {
        font-size: 20px;
    }

    .final-title {
        font-size: 22px;
    }

    .fixed-cta-btn {
        font-size: 12px;
        padding: 12px 14px;
    }
}
