/* ============================================================
   Browse Safe — kids-mode-ch
   Design language: friendly picture-book / sticker
   ============================================================ */

:root {
    --bg:                #FFF7E8;
    --bg-soft:           #FFEFD3;
    --surface:           #FFFFFF;
    --accent-primary:    #2DB87A;
    --accent-primary-dk: #229E66;
    --accent-secondary:  #FF8FA3;
    --accent-tertiary:   #FFC857;
    --text:              #1F2A37;
    --text-muted:        #5A6473;
    --text-soft:         #9AA7B6;
    --border:            #1F2A37;
    --border-soft:       #E5EAF1;

    --font-display: 'Fredoka', 'Trebuchet MS', 'Segoe UI', system-ui, sans-serif;
    --font-body:    'Nunito', 'Trebuchet MS', 'Segoe UI', system-ui, sans-serif;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --shadow-sticker: 4px 6px 0 0 rgba(31, 42, 55, 0.92);
    --shadow-sticker-soft: 3px 4px 0 0 rgba(31, 42, 55, 0.18);
    --shadow-card: 0 24px 48px -24px rgba(31, 42, 55, 0.18);

    --container-max: 1140px;
}

/* ============================================================
   1. Base
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html { font-size: 16px; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 8%, rgba(45, 184, 122, 0.10), transparent 25%),
        radial-gradient(circle at 88% 22%, rgba(255, 143, 163, 0.10), transparent 30%),
        radial-gradient(circle at 50% 110%, rgba(255, 200, 87, 0.12), transparent 40%);
    pointer-events: none;
    z-index: -1;
}

a {
    color: var(--accent-primary-dk);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--accent-primary); text-decoration: underline; }

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

#main_content { display: block; position: relative; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text);
    margin: 0 0 0.6em;
    line-height: 1.15;
    letter-spacing: -0.01em;
    font-weight: 700;
}

p { margin: 0 0 1em; }

code, .hero__kbd {
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.9em;
    background: #FFFFFF;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 1px 8px;
    color: var(--text);
    font-weight: 700;
    box-shadow: var(--shadow-sticker-soft);
}

/* ============================================================
   2. Template-required structural selectors
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
}

.title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--text);
}

.title-small { font-size: clamp(1.5rem, 3vw, 2.2rem); }

.text {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.65;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 2.5rem; }

/* ============================================================
   3. Buttons
   ============================================================ */
.btn,
.btn_main,
.pix-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    color: var(--text);
    background: var(--accent-primary);
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--shadow-sticker);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn:hover,
.btn_main:hover,
.pix-btn:hover {
    color: var(--text);
    text-decoration: none;
    background: var(--accent-tertiary);
    transform: translate(-2px, -2px);
    box-shadow: 6px 8px 0 0 rgba(31, 42, 55, 0.92);
}

.btn:active,
.btn_main:active,
.pix-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 1px 2px 0 0 rgba(31, 42, 55, 0.92);
}

.btn:focus { outline: none; }

.btn svg { stroke: currentColor; }

/* ============================================================
   4. Page loader & back-to-top (template behavior)
   ============================================================ */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader .loader { width: 200px; height: 200px; position: relative; }
.page-loader .blobs { position: absolute; inset: 0; filter: url(#goo); }
.page-loader .blob,
.page-loader .blob-center {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    background: var(--accent-primary);
}
.page-loader .blob-center { background: var(--accent-secondary); animation: blobCenter 1.5s infinite; }
.page-loader .blob:nth-child(2) { animation: blob1 3s infinite; }
.page-loader .blob:nth-child(3) { animation: blob2 3s infinite; }
.page-loader .blob:nth-child(4) { animation: blob3 3s infinite; }
.page-loader .blob:nth-child(5) { animation: blob4 3s infinite; }
.page-loader .blob:nth-child(6) { animation: blob5 3s infinite; }
.page-loader .blob:nth-child(7) { animation: blob6 3s infinite; }
@keyframes blobCenter { 0%,100% { transform: scale(0.8); } 50% { transform: scale(1.05); } }
@keyframes blob1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(60px,0); } }
@keyframes blob2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-60px,0); } }
@keyframes blob3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(0,60px); } }
@keyframes blob4 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(0,-60px); } }
@keyframes blob5 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(45px,45px); } }
@keyframes blob6 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-45px,-45px); } }

body.loaded .page-loader { opacity: 0; visibility: hidden; }

.return-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: var(--accent-primary);
    color: var(--surface);
    border: 2px solid var(--border);
    border-radius: 50%;
    box-shadow: var(--shadow-sticker-soft);
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.15s ease;
}
.return-to-top:hover { color: var(--surface); transform: translate(-2px, -2px); box-shadow: 4px 6px 0 0 rgba(31,42,55,0.92); }
.return-to-top.visible { opacity: 1; visibility: visible; }

/* ============================================================
   5. Header / nav
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.pix-header-fixed {
    background: rgba(255, 247, 232, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(31, 42, 55, 0.06);
    padding: 10px 0;
}
.header-container { display: flex; align-items: center; }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.site-mobile-logo { display: flex; align-items: center; }
.site-logo { display: none; }
.site-mobile-logo .logo { display: inline-flex; }
.site-mobile-logo .sticky-logo { display: none; }
.site-mobile-logo img { height: 38px; width: auto; }
body.header-fixed .site-header { /* additional state hook */ }

.toggle-menu { display: none; cursor: pointer; }
.toggle-menu .bar {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.close-menu { display: none; }
.menu-wrapper { display: flex; align-items: center; }
.site-main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
    align-items: center;
}
.site-main-menu a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.site-main-menu a:hover,
.site-main-menu a.active {
    color: var(--accent-primary-dk);
    border-bottom-color: var(--accent-primary);
    text-decoration: none;
}

.site-nav > .btn {
    padding: 10px 22px;
    font-size: 15px;
    height: auto;
}

/* ============================================================
   6. Hero
   ============================================================ */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero__cloud { position: absolute; }
.hero__cloud--1 { top: 90px; left: -40px; opacity: 0.85; }
.hero__cloud--2 { top: 60px; right: -20px; opacity: 0.7; }
.hero__sparkle { position: absolute; }
.hero__sparkle--1 { top: 220px; right: 8%; animation: floatSparkle 4s ease-in-out infinite; }
.hero__sparkle--2 { top: 380px; left: 6%; animation: floatSparkle 5s ease-in-out infinite 0.5s; }
@keyframes floatSparkle {
    0%,100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(12deg); }
}
.hero__shield { position: absolute; }
.hero__shield--1 {
    top: 180px; left: 4%;
    transform: rotate(-12deg);
    animation: bobShield 6s ease-in-out infinite;
}
.hero__shield--2 {
    top: 320px; right: 5%;
    transform: rotate(14deg);
    animation: bobShield 7s ease-in-out infinite 1s;
}
@keyframes bobShield {
    0%,100% { transform: translateY(0) rotate(var(--rot, -12deg)); }
    50% { transform: translateY(-8px) rotate(var(--rot, -12deg)); }
}
.hero__shield--1 { --rot: -12deg; }
.hero__shield--2 { --rot: 14deg; }

.hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 7px 16px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-sticker-soft);
    margin-bottom: 24px;
}
.hero__eyebrow-dot {
    width: 8px; height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--surface), 0 0 0 3px var(--accent-primary);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--text);
    margin: 0 0 20px;
}
.hero__title-accent {
    color: var(--accent-primary-dk);
    position: relative;
    display: inline-block;
}
.hero__title-accent::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 8px;
    background: var(--accent-tertiary);
    border-radius: 4px;
    opacity: 0.55;
    z-index: -1;
}

.hero__subtitle {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px;
}
.hero__subtitle strong { color: var(--text); font-weight: 700; }

.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 56px;
}
.hero__cta-note {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Browser address-bar mockup */
.browser-mock {
    background: var(--surface);
    border: 2.5px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-sticker);
    max-width: 540px;
    margin: 0 auto;
    overflow: hidden;
    text-align: left;
    transform: rotate(-0.6deg);
}
.browser-mock__chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px 0;
    background: #F3F4F6;
    border-bottom: 1.5px solid var(--border-soft);
}
.browser-mock__dot {
    width: 11px; height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}
.browser-mock__dot--red    { background: #FF6B6B; }
.browser-mock__dot--yellow { background: #FFCB47; }
.browser-mock__dot--green  { background: #51CF66; }
.browser-mock__tab {
    margin-left: 14px;
    background: var(--surface);
    border: 1.5px solid var(--border-soft);
    border-bottom-color: var(--surface);
    padding: 6px 16px 7px;
    border-radius: 8px 8px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    transform: translateY(1.5px);
}
.browser-mock__toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #F9FAFB;
    border-bottom: 1px solid var(--border-soft);
}
.browser-mock__nav { flex-shrink: 0; }
.browser-mock__omnibox {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius-pill);
    padding: 7px 14px;
    font-family: var(--font-body);
    font-size: 14px;
}
.browser-mock__se-icon {
    width: 18px; height: 18px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4 0%, #EA4335 25%, #FBBC04 50%, #34A853 75%, #4285F4 100%);
    background-clip: padding-box;
    color: var(--surface);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.browser-mock__omnibox-text {
    color: var(--text);
    font-weight: 600;
    flex: 1;
    display: inline-flex;
    align-items: center;
}
.browser-mock__caret {
    display: inline-block;
    width: 1.5px;
    height: 14px;
    background: var(--text);
    margin-left: 1px;
    animation: caret 1s steps(2) infinite;
}
@keyframes caret { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
.browser-mock__star { flex-shrink: 0; }
.browser-mock__suggest {
    background: var(--surface);
    padding: 6px 0;
}
.browser-mock__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 18px;
    font-size: 14px;
    color: var(--text);
}
.browser-mock__row:hover { background: #F5F7FA; }
.browser-mock__row-icon { flex-shrink: 0; }
.browser-mock__row-text { font-weight: 500; }
.browser-mock__row-meta { color: var(--text-soft); font-weight: 400; }
.browser-mock__divider {
    height: 1px;
    background: var(--border-soft);
    margin: 4px 18px;
}
.browser-mock__row--brand {
    background: linear-gradient(90deg, rgba(45, 184, 122, 0.07), rgba(255, 200, 87, 0.07));
    padding: 14px 18px;
    align-items: flex-start;
}
.browser-mock__brand-icon { flex-shrink: 0; margin-top: 1px; }
.browser-mock__row-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}
.browser-mock__row-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent-primary-dk);
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.browser-mock__pill {
    background: var(--accent-tertiary);
    color: var(--text);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--border);
    letter-spacing: 0.02em;
}
.browser-mock__row-desc {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================================
   7. How it Works
   ============================================================ */
.hiw {
    padding: 100px 0;
    position: relative;
}
.hiw__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.hiw__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-primary-dk);
    margin-bottom: 14px;
}
.hiw__title {
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
}
.hiw__title-accent {
    color: var(--accent-primary-dk);
    position: relative;
    display: inline-block;
}
.hiw__title-accent::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 6px;
    background: var(--accent-secondary);
    border-radius: 3px;
    opacity: 0.5;
    z-index: -1;
}

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

.hiw-step {
    background: var(--surface);
    border: 2.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    box-shadow: var(--shadow-sticker);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.hiw-step:hover {
    transform: translate(-2px, -3px);
    box-shadow: 6px 8px 0 0 rgba(31, 42, 55, 0.92);
}
.hiw-step:nth-child(1) { transform: rotate(-0.6deg); }
.hiw-step:nth-child(2) { transform: rotate(0.4deg); }
.hiw-step:nth-child(3) { transform: rotate(-0.4deg); }
.hiw-step:nth-child(1):hover { transform: rotate(-0.6deg) translate(-2px, -3px); }
.hiw-step:nth-child(2):hover { transform: rotate(0.4deg) translate(-2px, -3px); }
.hiw-step:nth-child(3):hover { transform: rotate(-0.4deg) translate(-2px, -3px); }

.hiw-step__number {
    width: 48px;
    height: 48px;
    background: var(--accent-tertiary);
    border: 2.5px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-sticker-soft);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transform: rotate(-4deg);
}
.hiw-step:nth-child(2) .hiw-step__number { background: var(--accent-secondary); transform: rotate(3deg); }
.hiw-step:nth-child(3) .hiw-step__number { background: var(--accent-primary); color: var(--surface); transform: rotate(-3deg); }

.hiw-step__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
    line-height: 1.25;
}
.hiw-step__title code,
.hiw-step__text code {
    font-size: 0.85em;
    padding: 0 6px;
}

.hiw-step__text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 20px;
}

.hiw-step__visual {
    border-top: 1.5px dashed var(--border-soft);
    padding-top: 18px;
    margin-top: auto;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hiw-step__visual > svg { width: 100%; height: auto; max-height: 80px; align-self: stretch; }

.install-mock,
.pick-mock {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2.2px solid var(--border);
    border-radius: 14px;
    box-shadow: 3px 4px 0 0 rgba(31, 42, 55, 0.18);
    padding: 12px 14px;
    font-family: var(--font-display);
}
.install-mock {
    background: var(--surface);
}
.install-mock__icon { display: inline-flex; flex-shrink: 0; }
.install-mock__label {
    flex: 1;
    color: var(--text);
    font-size: 14.5px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.install-mock__check {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: var(--accent-primary);
    border: 1.6px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pick-mock {
    background: var(--accent-primary);
    color: var(--surface);
}
.pick-mock__icon { display: inline-flex; flex-shrink: 0; }
.pick-mock__copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2px;
    min-width: 0;
}
.pick-mock__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--surface);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.pick-mock__desc {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.pick-mock__pill {
    flex-shrink: 0;
    background: var(--surface);
    color: var(--accent-primary-dk);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1.6px solid var(--border);
}

/* ============================================================
   8. Features
   ============================================================ */
.features {
    padding: 100px 0;
    background: var(--bg-soft);
    border-top: 2.5px solid var(--border);
    border-bottom: 2.5px solid var(--border);
    position: relative;
}
.features::before,
.features::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 12px;
    background-image:
        radial-gradient(circle at 8px 6px, var(--border) 1.6px, transparent 2px);
    background-size: 16px 12px;
    background-repeat: repeat-x;
    opacity: 0.12;
}
.features::before { top: 8px; }
.features::after { bottom: 8px; }

.features__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.features__eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-primary-dk);
    margin-bottom: 14px;
}
.features__title {
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 700;
}
.features__title-accent {
    color: var(--accent-secondary);
    display: inline-block;
}

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

.feature-card {
    background: var(--surface);
    border: 2.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sticker);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:nth-child(1) { transform: rotate(-0.4deg); }
.feature-card:nth-child(2) { transform: rotate(0.3deg); }
.feature-card:nth-child(3) { transform: rotate(0.4deg); }
.feature-card:nth-child(4) { transform: rotate(-0.3deg); }
.feature-card:hover {
    transform: translate(-2px, -3px);
    box-shadow: 6px 8px 0 0 rgba(31, 42, 55, 0.92);
}

.feature-card__icon {
    width: 72px;
    height: 72px;
    background: var(--bg);
    border: 2.5px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sticker-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform: rotate(-3deg);
}
.feature-card:nth-child(2) .feature-card__icon { transform: rotate(2deg); background: #FFE6EC; }
.feature-card:nth-child(3) .feature-card__icon { transform: rotate(-2deg); background: #E0F4EA; }
.feature-card:nth-child(4) .feature-card__icon { transform: rotate(3deg); background: #FFF4DC; }

.feature-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
}

.feature-card__text {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   9. Bottom CTA
   ============================================================ */
.bottom-cta {
    padding: 100px 0 120px;
    text-align: center;
}
.bottom-cta__inner {
    max-width: 640px;
    margin: 0 auto;
    background: var(--surface);
    border: 2.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 56px 32px 48px;
    box-shadow: var(--shadow-sticker);
    position: relative;
    transform: rotate(-0.4deg);
}
.bottom-cta__shield {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%) rotate(-6deg);
}
.bottom-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 24px 0 14px;
    color: var(--text);
}
.bottom-cta__sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 auto 28px;
    max-width: 480px;
}
.bottom-cta__btn { font-size: 18px; padding: 16px 32px; }
.bottom-cta__fineprint {
    margin: 18px 0 0;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ============================================================
   10. Footer
   ============================================================ */
.footer {
    background: var(--text);
    color: var(--bg);
    padding: 56px 0 0;
    border-top: 2.5px solid var(--border);
}
.footer-content { padding-bottom: 32px; }
.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
}
.footer-logo { display: inline-block; }
.footer-logo img {
    height: 42px;
    width: auto;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 6px 14px;
}
.footer-tagline {
    margin: 16px 0 0;
    font-size: 14px;
    color: rgba(255, 247, 232, 0.7);
    max-width: 340px;
    line-height: 1.5;
}
.footer__title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-tertiary);
    margin-bottom: 14px;
}
.footer-nav-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 24px;
    align-items: center;
}
.footer-link {
    color: rgba(255, 247, 232, 0.78);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-link:hover { color: var(--accent-tertiary); text-decoration: none; }

.footer-copyright {
    border-top: 1px solid rgba(255, 247, 232, 0.12);
    padding: 22px 0;
    text-align: center;
}
.footer-copyright p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 247, 232, 0.55);
}

/* ============================================================
   11. Modal
   ============================================================ */
.modal { font-family: var(--font-body); z-index: 1060; }
.modal-backdrop { z-index: 1050; }
.modal-content {
    border: 2.5px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sticker);
    background: var(--surface);
}
.modal-header {
    padding: 14px 18px 0;
    border: none;
}
.modal-header .close {
    font-size: 28px;
    color: var(--text);
    opacity: 0.5;
    background: none;
    border: none;
    cursor: pointer;
}
.modal-header .close:hover { opacity: 1; }
.modal-body {
    padding: 8px 28px 4px;
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.6;
}

/* ============================================================
   12. Inner pages
   ============================================================ */
.inner-page {
    padding: 160px 0 100px;
    text-align: center;
}
.inner-page .main-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        radial-gradient(circle at 20% 12%, rgba(45, 184, 122, 0.10), transparent 30%),
        radial-gradient(circle at 80% 18%, rgba(255, 143, 163, 0.10), transparent 30%);
}
.inner-page .title { margin-bottom: 18px; }
.inner-page p { color: var(--text-muted); }
.inner-page img {
    margin: 36px auto 32px;
    max-width: 440px;
    border: 2.5px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sticker);
    background: var(--surface);
    padding: 12px;
}

.contact-section { padding: 160px 0 100px; }
.contact-section__container { position: relative; }
.contact-section__container > .title { margin-bottom: 48px; }
.contact-section__wrap .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}
.contact-section__wrap .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 12px;
}
.contact-card {
    background: var(--surface);
    border: 2.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    height: 100%;
    box-shadow: var(--shadow-sticker);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover {
    transform: translate(-2px, -3px);
    box-shadow: 6px 8px 0 0 rgba(31, 42, 55, 0.92);
}
.contact-card__subtitle {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-primary-dk);
    margin-bottom: 12px;
}
.contact-card__text {
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 22px;
}

/* ============================================================
   13. Privacy / Terms (legal copy)
   ============================================================ */
.terms-section {
    padding: 160px 0 100px;
    background: var(--bg);
}
.terms-section .title { margin-bottom: 32px; }
.terms-privacy {
    background: var(--surface);
    border: 2.5px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sticker-soft);
    margin: 0 auto;
    max-width: var(--container-max);
    padding: 24px 0;
}
.terms-privacy .container { max-width: 880px; padding: 0 32px; }
.terms-privacy h2 {
    font-family: var(--font-display);
    color: var(--text);
    font-size: 24px;
    font-weight: 700;
    margin: 28px 0 14px;
    line-height: 1.25;
}
.terms-privacy h3 {
    font-family: var(--font-display);
    color: var(--text);
    font-size: 19px;
    font-weight: 700;
    margin: 22px 0 10px;
}
.terms-privacy p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 16px;
    margin-bottom: 14px;
}
.terms-privacy a { color: var(--accent-primary-dk); }
.terms-privacy a:hover { color: var(--accent-primary); }
.terms-privacy ul,
.terms-privacy ol {
    color: var(--text-muted);
    padding-left: 1.5em;
    margin-bottom: 16px;
}
.terms-privacy li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.terms-privacy strong { color: var(--text); }

/* ============================================================
   14. Gradient text helper (mandatory)
   ============================================================ */
.gradient-text {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding-bottom: 0.15em;
}

/* ============================================================
   15. WOW animation classes
   ============================================================ */
@keyframes pixFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pixFadeLeft {
    from { opacity: 0; transform: translateX(-28px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes pixFadeRight {
    from { opacity: 0; transform: translateX(28px); }
    to   { opacity: 1; transform: translateX(0); }
}
.pixFadeUp { animation-name: pixFadeUp; animation-duration: 0.7s; animation-fill-mode: both; }
.pixFadeLeft { animation-name: pixFadeLeft; animation-duration: 0.7s; animation-fill-mode: both; }
.pixFadeRight { animation-name: pixFadeRight; animation-duration: 0.7s; animation-fill-mode: both; }

.wow { visibility: hidden; }
.wow.animated { visibility: visible; }
