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

:root {
    --gold: #C9A84C;
    --gold-light: #F6E27A;
    --gold-dark: #9A7B2E;
    --bg: #0f1a2c;
    --surface: #171616;
    --text: #ffffff;
    --text-dim: #8a8585;
    --white: #ffffff;
    --border: rgba(255,255,255,0.06);
    --serif: 'Instrument Serif', Georgia, serif;
    --sans: 'Gothic A1', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3 { font-family: var(--serif); font-weight: 400; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    background: rgba(10,9,9,0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-logo img {
    height: 200px;
    width: auto;
    margin: -45px 0;
}

.header-logo:hover { opacity: 0.7; }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    background: var(--bg);
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, rgba(201,168,76,0.02) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 48px;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-left { padding: 20px 0; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 2px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
    background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 100%);
}

.hero-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #25D366;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(37,211,102,0); }
}

.hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 28px;
    line-height: 1.4;
}

.hero-desc {
    max-width: 500px;
    margin-bottom: 36px;
}

.hero-desc p {
    font-size: 0.93rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 12px;
}

.hero-desc p:last-child { margin-bottom: 0; }

.hero-desc strong {
    color: rgba(234,230,230,0.85);
}

.hero-micro {
    margin-top: 14px;
    font-size: 0.73rem;
    color: var(--text-dim);
    letter-spacing: 0.01em;
    max-width: 400px;
}

/* ============================================
   HERO VISUAL (Right Side)
   ============================================ */
.hero-right {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.05);
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.hero-img-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 40%, rgba(14,13,13,0.7) 100%),
        linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* ============================================
   FLOATING WHATSAPP CHAT
   ============================================ */
.wa-float {
    position: absolute;
    bottom: 20px;
    left: -60px;
    right: -60px;
    z-index: 10;
    pointer-events: none;
}

.wa-float-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 12px;
    transition: opacity 0.4s ease;
}

.wa-float-inner.wa-fade-out {
    opacity: 0;
}

.wa-bubble {
    padding: 10px 14px 22px;
    border-radius: 8px;
    font-size: 0.88rem;
    line-height: 1.55;
    max-width: 85%;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.wa-bubble-in {
    opacity: 1;
    transform: translateY(0);
}

.wa-bubble p {
    color: inherit;
    font-weight: 400;
    font-size: inherit;
    line-height: inherit;
}

.wa-bubble-time {
    position: absolute;
    bottom: 4px;
    right: 9px;
    font-size: 0.52rem;
    opacity: 0.45;
}

.wa-bubble-r {
    background: #005c4b;
    color: #e4e4e4;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.wa-bubble-l {
    background: #1f2c34;
    color: #d4d4d4;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

/* Typing indicator */
.wa-typing {
    padding: 12px 16px;
    min-width: 60px;
}

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 100%);
    color: #0a0909;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(201,168,76,0.2),
        0 1px 3px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-wa-icon { flex-shrink: 0; }

.btn-arrow { transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); display: inline-block; }
.btn-cta:hover .btn-arrow { transform: translateX(5px); }

.btn-cta:hover {
    box-shadow:
        0 8px 40px rgba(201,168,76,0.35),
        0 2px 8px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.btn-cta:active {
    transform: translateY(0);
    box-shadow:
        0 2px 12px rgba(201,168,76,0.2),
        0 1px 3px rgba(0,0,0,0.3);
}

.btn-cta-w {
    background: linear-gradient(135deg, #ffffff 0%, #f0eded 50%, #e6e3e0 100%);
    color: #0a0909;
    box-shadow:
        0 4px 20px rgba(255,255,255,0.1),
        0 1px 3px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

.btn-cta-w:hover {
    box-shadow:
        0 8px 40px rgba(255,255,255,0.15),
        0 2px 8px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.btn-cta-dark {
    background: linear-gradient(135deg, #1f1e1e 0%, #0e0d0d 100%);
    color: var(--white);
    border: 1px solid rgba(201,168,76,0.2);
    box-shadow:
        0 4px 20px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.btn-cta-dark:hover {
    border-color: var(--gold);
    box-shadow:
        0 8px 40px rgba(201,168,76,0.1),
        0 0 0 1px rgba(201,168,76,0.3),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.btn-cta-full { width: 100%; justify-content: center; }

/* ============================================
   PROOF STRIP
   ============================================ */
.proof-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    padding: 28px 48px;
}

.proof-strip-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.proof-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.proof-strip-num {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.proof-strip-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.proof-strip-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.about-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 0;
}

.about-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.about-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg) 0%, var(--bg) 15%, transparent 80%);
    z-index: 1;
}

.about-wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 48px;
    width: 100%;
}

.tag-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.about-body {
    max-width: 550px;
}

.about-body h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.about-copy p,
.about-text p {
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 14px;
}

/* About Lists (Ja/Nein) */
.about-lists {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.al-head {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.al-head strong { color: var(--white); }

.al-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.al-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 2px;
}

.al-no .al-icon {
    background: rgba(239,68,68,0.12);
    color: #ef4444;
}

.al-yes .al-icon {
    background: rgba(37,211,102,0.12);
    color: #25D366;
}

.al-check { font-size: 0.75rem; }

.al-yes { color: rgba(234,230,230,0.8); }
.al-no { color: var(--text); }

.al-item strong { color: var(--white); }

/* ============================================
   SOCIAL PROOF
   ============================================ */
.proof {
    padding: 100px 48px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.proof-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.proof-inner h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 8px;
}

.proof-sub {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 48px;
}

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

.proof-card {
    padding: 32px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.proof-card:hover {
    border-color: rgba(201,168,76,0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.proof-arrow {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.proof-card h3 {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.proof-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text);
}

/* ============================================
   POLARISIERUNG
   ============================================ */
.polar {
    padding: 120px 48px;
}

.polar-inner {
    max-width: 720px;
    margin: 0 auto;
}

.polar-inner h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 36px;
}

.polar-inner h2 em {
    font-style: italic;
    color: #ef4444;
    -webkit-text-fill-color: #ef4444;
}

.polar-no {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.polar-no p {
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 14px;
    color: var(--text);
}

.polar-yes-head {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 16px;
}

.polar-point {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(234,230,230,0.8);
    margin-bottom: 8px;
    padding-left: 4px;
}

.polar-close {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final {
    position: relative;
    padding: 140px 48px;
    text-align: center;
    overflow: hidden;
}

.final-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.final-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.2) saturate(0.4);
}

.final-fade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at center, transparent 0%, var(--bg) 75%),
        linear-gradient(180deg, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
}

.final-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.final h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 28px;
}

.final-copy {
    text-align: left;
    max-width: 480px;
    margin: 0 auto 40px;
}

.final-copy p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(234,230,230,0.6);
    margin-bottom: 14px;
}

.final-copy p:last-child { margin-bottom: 0; }

.final-copy strong {
    color: var(--white);
}

.final-micro {
    margin-top: 18px;
    font-size: 0.75rem;
    color: var(--text-dim);
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 80px 48px;
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

.cta-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 48px;
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.cta-bullets {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
}

.cta-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-bullet-icon {
    flex-shrink: 0;
    color: #25D366;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 2px;
}

.cta-bullet p {
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--white);
}

.cta-closing {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 28px;
}

.cta .btn-cta {
    margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.foot {
    padding: 24px 48px;
    border-top: 1px solid var(--border);
}

.foot-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.foot-links { display: flex; gap: 20px; }

.foot-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.foot-links a:hover { color: var(--gold); }

/* ============================================
   POPUP
   ============================================ */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6,5,5,0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.popup-overlay.active { display: flex; }

.popup {
    background: #fff;
    border-radius: 12px;
    padding: 40px 36px;
    max-width: 440px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.popup-x {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f2f0ed;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #aaa;
    transition: all 0.2s;
}

.popup-x:hover { background: #e6e3e0; color: #555; }

.popup-top { margin-bottom: 24px; }

.popup-wa {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #edf8ed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.popup-top h2 {
    font-size: 1.6rem;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.3;
}

.popup-top p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.55;
}

.fg { margin-bottom: 14px; }

.fg label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.fg input[type="text"],
.fg input[type="email"],
.fg input[type="tel"],
.fg textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid #dedbd8;
    border-radius: 6px;
    font-family: var(--sans);
    font-size: 0.88rem;
    color: #222;
    background: #faf9f7;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.fg input:focus,
.fg textarea:focus {
    border-color: #b8a050;
    box-shadow: 0 0 0 3px rgba(180,150,74,0.08);
}

.fg textarea { resize: vertical; }

.fg-pills { display: flex; gap: 8px; margin-top: 6px; }

.fg-pill { cursor: pointer; }
.fg-pill input { display: none; }

.fg-pill span {
    display: block;
    padding: 9px 20px;
    border: 1px solid #dedbd8;
    border-radius: 6px;
    font-size: 0.83rem;
    font-weight: 500;
    color: #666;
    transition: all 0.15s;
    background: #faf9f7;
}

.fg-pill input:checked + span {
    border-color: #b8a050;
    background: #fcf6e8;
    color: #333;
}

.fg-pill:hover span { border-color: #ccc; }

.fg-cond { display: none; animation: slideIn 0.2s ease; }
.fg-cond.visible { display: block; }

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.popup-ok { text-align: center; padding: 32px 0; }

.popup-ok-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #edf8ed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.popup-ok h2 { font-size: 1.3rem; color: #111; margin-bottom: 8px; }
.popup-ok p { color: #888; font-size: 0.9rem; line-height: 1.6; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
    .header-inner { padding: 8px 32px; }
    .header-logo img { height: 160px; margin: -36px 0; }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 32px;
    }

    .hero-left { padding: 0; }

    .hero-right { justify-content: center; }
    .hero-visual { max-width: 340px; }
    .hero-img-wrap { max-width: 340px; margin: 0 auto; }

    .wa-float { left: 0; right: 0; }

    .about { min-height: auto; flex-direction: column; }
    .about-bg { position: relative; width: 100%; height: 360px; }
    .about-bg img { content: url('images/alex-portrait.avif'); object-position: center top; }
    .about-bg-gradient { background: linear-gradient(to top, var(--bg) 0%, transparent 60%); }
    .about-wrap { padding: 48px 32px; }
    .about-body { max-width: 100%; }

    .cta { padding: 60px 32px; }
    .cta-box { padding: 36px 32px; }
    .cta-bullets { flex-direction: column; align-items: center; gap: 12px; }
}

@media (max-width: 560px) {
    .header-inner { padding: 6px 20px; }
    .header-logo img { height: 110px; margin: -24px 0; }

    .hero-grid { padding: 32px 20px 80px; gap: 32px; }
    .hero h1 { font-size: 1.85rem; }
    .hero-sub { font-size: 1rem; margin-bottom: 20px; }
    .hero-desc p { font-size: 0.88rem; }
    .hero-tag { font-size: 0.6rem; margin-bottom: 20px; }

    .hero-visual { max-width: 260px; }
    .hero-img-wrap { aspect-ratio: 3 / 4; }
    .wa-float { bottom: -40px; top: auto; transform: none; left: -10px; right: -10px; }
    .wa-bubble { font-size: 0.78rem; padding: 8px 12px 20px; max-width: 80%; }

    .btn-cta { padding: 16px 24px; font-size: 0.8rem; width: 100%; justify-content: center; }

    .about-bg { height: 280px; }
    .about-wrap { padding: 32px 20px; }
    .about-body h2 { font-size: 1.4rem; }
    .about-copy p { font-size: 0.88rem; line-height: 1.7; }

    .cta { padding: 48px 20px; }
    .cta-box { padding: 28px 20px; }
    .cta-box h2 { font-size: 1.3rem; }
    .cta-bullet p { font-size: 0.85rem; }

    .foot { padding: 20px; }
    .foot-row { flex-direction: column; gap: 10px; text-align: center; }

    .popup { padding: 28px 20px; border-radius: 10px; }
    .popup-top h2 { font-size: 1.3rem; }
}
