/* ═══ FONTS ═══════════════════════════════════════════════════════════════ */
@font-face {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 300;
    src: url('/font/spoqa/SpoqaHanSansNeo-Light.woff2') format('woff2'),
         url('/font/spoqa/SpoqaHanSansNeo-Light.woff') format('woff');
}
@font-face {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 400;
    src: url('/font/spoqa/SpoqaHanSansNeo-Regular.woff2') format('woff2'),
         url('/font/spoqa/SpoqaHanSansNeo-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 500;
    src: url('/font/spoqa/SpoqaHanSansNeo-Medium.woff2') format('woff2'),
         url('/font/spoqa/SpoqaHanSansNeo-Medium.woff') format('woff');
}
@font-face {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 700;
    src: url('/font/spoqa/SpoqaHanSansNeo-Bold.woff2') format('woff2'),
         url('/font/spoqa/SpoqaHanSansNeo-Bold.woff') format('woff');
}

/* ═══ VARIABLES ════════════════════════════════════════════════════════════ */
:root {
    --primary:    #0f766e;
    --primary-dk: #0a5c56;
    --accent:     #f97316;
    --bg:         #f8fafb;
    --ink:        #0f172a;
    --gray:       #64748b;
    --line:       #e2e8f0;
    --white:      #ffffff;
    --r-lg:       20px;
    --r-md:       14px;
    --r-sm:       10px;
    --sh-md:      0 6px 24px rgba(0,0,0,.08);
    --sh-lg:      0 14px 44px rgba(0,0,0,.13);
}

/* ═══ RESET ════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Spoqa Han Sans Neo', 'Apple SD Gothic Neo', sans-serif;
    font-size: 16px;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.container { width: min(1160px, 90%); margin: 0 auto; }

/* ═══ BUTTONS ══════════════════════════════════════════════════════════════ */
.btn-text {
    background: transparent; border: none;
    color: var(--ink); font-size: 15px; font-weight: 600;
    padding: 9px 14px; border-radius: var(--r-sm);
    transition: background .18s;
}
.btn-text:hover { background: rgba(0,0,0,.05); }

.btn-primary {
    background: var(--primary); color: var(--white);
    border: none; border-radius: var(--r-sm);
    font-size: 15px; font-weight: 700; padding: 10px 20px;
    transition: background .18s, transform .18s;
}
.btn-primary:hover { background: var(--primary-dk); transform: translateY(-1px); }

.btn-cta {
    display: inline-flex; align-items: center;
    background: var(--primary); color: var(--white);
    border: none; border-radius: var(--r-md);
    font-size: 17px; font-weight: 700; padding: 14px 28px;
    box-shadow: 0 4px 14px rgba(15,118,110,.3);
    transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-cta:hover { background: var(--primary-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,118,110,.4); }

.btn-ghost {
    display: inline-flex; align-items: center;
    background: var(--white); color: var(--primary);
    border: 2px solid var(--primary); border-radius: var(--r-md);
    font-size: 16px; font-weight: 600; padding: 13px 26px;
    transition: background .2s, color .2s;
}
.btn-ghost:hover { background: var(--primary); color: var(--white); }

/* ═══ HEADER ═══════════════════════════════════════════════════════════════ */
.intro-topline {
    height: 25px;
    background: var(--white);
    border-bottom: 1px solid #edf2f7;
}
.intro-topline-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.intro-topline a {
    color: var(--gray);
    font-size: 12px;
    font-weight: 700;
}
.intro-topline a:hover { color: var(--primary); }

.site-header {
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(12px) saturate(160%);
    background: rgba(248,250,251,.88);
    border-bottom: 1px solid var(--line);
}
.hd-inner  { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand     { font-size: 22px; font-weight: 800; letter-spacing: .07em; color: var(--primary); }
.hd-nav    { display: flex; align-items: center; gap: 8px; }
.hd-nav a:not(.btn-primary) {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: var(--r-sm);
    transition: background .18s;
}
.hd-nav a:not(.btn-primary):hover { background: rgba(0,0,0,.05); }

/* ═══ HERO ═════════════════════════════════════════════════════════════════ */
.hero {
    padding: 72px 0 64px;
    background: radial-gradient(ellipse at 0% 0%, #ccfbf1 0%, #f8fafb 55%);
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: rgba(15,118,110,.1); color: var(--primary);
    font-size: 13px; font-weight: 700;
    padding: 6px 14px; border-radius: 30px;
    margin-bottom: 20px;
}
.hero-h1 {
    margin: 0 0 20px;
    font-size: clamp(28px, 3.6vw, 48px);
    line-height: 1.2; font-weight: 800;
    letter-spacing: -.02em;
}
.hero-h1 em {
    font-style: normal; color: var(--primary); position: relative;
}
.hero-h1 em::after {
    content: '';
    position: absolute; left: 0; bottom: 2px;
    width: 100%; height: 4px;
    background: var(--accent); border-radius: 2px; opacity: .6;
}
.hero-lead  { margin: 0 0 32px; font-size: 16px; line-height: 1.8; color: #475569; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.welcome {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 13px 16px;
    border-radius: 14px;
    border: 1px solid #99f6e4;
    background: linear-gradient(120deg, rgba(236, 253, 245, .95), rgba(240, 253, 250, .98));
    color: #065f46;
    box-shadow: 0 10px 24px rgba(15, 118, 110, .12);
}
.welcome.show {
    display: inline-flex;
    animation: welcomePop .35s ease-out;
}
.welcome-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #10b981, #059669);
}
.welcome-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.35;
}
.welcome-text strong {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.01em;
}
.welcome-text span {
    font-size: 13px;
    color: #047857;
    font-weight: 600;
}
@keyframes welcomePop {
    from { opacity: 0; transform: translateY(4px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* hero visual */
.hero-visual { position: relative; }
.hero-glow,
.hero-orbit,
.hero-signal {
    position: absolute;
    pointer-events: none;
}
.hero-glow {
    filter: blur(14px);
    opacity: .7;
}
.hero-glow-1 {
    width: 180px; height: 180px;
    top: -22px; left: -36px;
    background: radial-gradient(circle, rgba(45,212,191,.34) 0%, rgba(45,212,191,0) 72%);
    animation: glowDrift 8s ease-in-out infinite;
}
.hero-glow-2 {
    width: 210px; height: 210px;
    right: -20px; bottom: -30px;
    background: radial-gradient(circle, rgba(249,115,22,.24) 0%, rgba(249,115,22,0) 74%);
    animation: glowDrift 10s ease-in-out infinite reverse;
}
.hero-orbit {
    border: 1px dashed rgba(15,118,110,.24);
    border-radius: 50%;
    transform-origin: center;
}
.orbit-1 {
    width: 460px; height: 460px;
    top: -44px; left: 18px;
    animation: orbitSpin 22s linear infinite;
}
.orbit-2 {
    width: 320px; height: 320px;
    top: 38px; right: 6px;
    border-color: rgba(249,115,22,.22);
    animation: orbitSpin 16s linear infinite reverse;
}
.hero-orbit::before,
.hero-orbit::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}
.orbit-1::before {
    width: 12px; height: 12px;
    top: 54px; right: 70px;
    background: #2dd4bf;
    box-shadow: 0 0 0 8px rgba(45,212,191,.14);
}
.orbit-1::after {
    width: 10px; height: 10px;
    bottom: 80px; left: 46px;
    background: #f97316;
    box-shadow: 0 0 0 7px rgba(249,115,22,.14);
}
.orbit-2::before {
    width: 10px; height: 10px;
    top: 18px; left: 124px;
    background: #60a5fa;
    box-shadow: 0 0 0 7px rgba(96,165,250,.14);
}
.orbit-2::after {
    width: 12px; height: 12px;
    bottom: 26px; right: 82px;
    background: #14b8a6;
    box-shadow: 0 0 0 8px rgba(20,184,166,.14);
}
.hero-signal {
    width: 120px; height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.28);
    background: radial-gradient(circle, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 72%);
}
.signal-1 {
    top: 112px; left: -24px;
    animation: signalPulse 4s ease-out infinite;
}
.signal-2 {
    right: -18px; bottom: 92px;
    animation: signalPulse 4s ease-out 1.6s infinite;
}
.hero-img-frame {
    position: relative; border-radius: var(--r-lg); overflow: hidden;
    box-shadow: 0 20px 60px rgba(15,118,110,.18);
    border: 1px solid rgba(15,118,110,.15);
    z-index: 2;
}
.hero-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; transition: transform .5s; }
.hero-img-frame:hover .hero-img { transform: scale(1.03); }

.hero-float {
    position: absolute;
    display: flex; align-items: center; gap: 8px;
    background: var(--white); border-radius: var(--r-sm);
    padding: 9px 14px; font-size: 13px; font-weight: 700; color: var(--ink);
    box-shadow: var(--sh-md);
    border: 1px solid rgba(15,118,110,.12);
    animation: floatBob 4.2s ease-in-out infinite;
    z-index: 3;
}
.hero-float .float-icon { font-size: 16px; }
.f1 { bottom: 28px; left: 28px; animation-delay: 0s; }
.f2 { top: 24px; right: 24px; animation-delay: 2.1s; }
@keyframes floatBob {
    0%,100% { transform: translate3d(0,0,0); }
    50% { transform: translate3d(0,-4px,0); }
}
@keyframes orbitSpin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes glowDrift {
    0%,100% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(10px,-8px,0) scale(1.08); }
}
@keyframes signalPulse {
    0% { transform: scale(.72); opacity: 0; }
    35% { opacity: .55; }
    100% { transform: scale(1.24); opacity: 0; }
}

/* ═══ PROOF BAR ════════════════════════════════════════════════════════════ */
.proof-bar {
    background: var(--primary);
    padding: 22px 0;
}
.proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 44px;
}
.proof-item strong {
    font-size: 30px; font-weight: 800; color: var(--white);
    line-height: 1;
}
.proof-unit { font-size: 18px; font-weight: 700; }
.proof-item span {
    font-size: 12px; font-weight: 500; color: rgba(255,255,255,.75);
    margin-top: 4px;
}
.proof-div { width: 1px; height: 38px; background: rgba(255,255,255,.25); }

/* ═══ SECTION COMMON ════════════════════════════════════════════════════════ */
.sec-head   { text-align: center; margin-bottom: 52px; }
.sec-eyebrow {
    color: var(--primary); font-size: 13px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; margin: 0 0 12px;
}
.sec-title { font-size: clamp(22px,2.8vw,34px); font-weight: 800; margin: 0 0 14px; letter-spacing: -.02em; }
.sec-sub   { font-size: 16px; color: var(--gray); margin: 0; }

/* ═══ FEATURES ══════════════════════════════════════════════════════════════ */
.features { padding: 88px 0; background: var(--white); }
.feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.feat-card {
    border-radius: var(--r-lg); overflow: hidden;
    background: var(--white); border: 1px solid var(--line);
    box-shadow: var(--sh-md);
    opacity: 0; transform: translateY(24px);
    transition: box-shadow .3s, transform .3s;
}
.feat-card.visible { opacity: 1; transform: translateY(0); transition: opacity .5s, transform .5s, box-shadow .3s; }
.feat-card:hover   { transform: translateY(-6px) !important; box-shadow: var(--sh-lg); }

.feat-img-wrap { position: relative; overflow: hidden; height: 220px; }
.feat-img  { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.feat-card:hover .feat-img { transform: scale(1.05); }

.feat-badge {
    position: absolute; bottom: 14px; right: 14px;
    width: 46px; height: 46px; border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
}
.feat-badge.teal   { background: rgba(15,118,110,.85); }
.feat-badge.amber  { background: rgba(217,119,6,.85); }
.feat-badge.green  { background: rgba(5,150,105,.85); }
.feat-badge.purple { background: rgba(124,58,237,.85); }

.feat-body { padding: 22px 24px 26px; }
.feat-body h3 { margin: 0 0 10px; font-size: 19px; font-weight: 800; }
.feat-body > p { margin: 0 0 14px; font-size: 15px; line-height: 1.7; color: #475569; }

.feat-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.feat-list li {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: #374151;
}
.feat-list li::before {
    content: '';
    display: inline-block; flex-shrink: 0;
    width: 18px; height: 18px;
    background: rgba(15,118,110,.12);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%230f766e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* ═══ HOW IT WORKS ══════════════════════════════════════════════════════════ */
.how-works {
    padding: 88px 0;
    background: radial-gradient(ellipse at 50% 100%, #ccfbf1 0%, #f8fafb 60%);
}
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 16px; flex-wrap: wrap; }
.step {
    flex: 1; min-width: 190px; max-width: 250px;
    text-align: center; padding: 32px 20px 28px;
    background: var(--white); border-radius: var(--r-lg);
    border: 1px solid var(--line); box-shadow: var(--sh-md);
    opacity: 0; transform: translateY(24px);
    transition: opacity .5s, transform .5s, box-shadow .3s;
}
.step.visible { opacity: 1; transform: translateY(0); }
.step:hover   { transform: translateY(-4px) !important; box-shadow: var(--sh-lg); }

.step-num  { font-size: 38px; font-weight: 900; color: rgba(15,118,110,.1); line-height: 1; margin-bottom: 12px; }
.step-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(15,118,110,.08);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.step h3 { margin: 0 0 10px; font-size: 17px; font-weight: 800; }
.step > p { margin: 0 0 14px; font-size: 14px; color: var(--gray); line-height: 1.7; }
.step-list {
    list-style: none; padding: 0; margin: 0;
    text-align: left; display: flex; flex-direction: column; gap: 6px;
}
.step-list li {
    font-size: 13px; color: var(--gray);
    padding-left: 14px; position: relative;
}
.step-list li::before {
    content: '·';
    position: absolute; left: 4px; color: var(--primary); font-weight: 700;
}
.step-arrow { color: var(--primary); opacity: .5; flex-shrink: 0; padding-top: 64px; }

/* ═══ PRICING ═══════════════════════════════════════════════════════════════ */
.pricing { padding: 88px 0; background: var(--white); }
.price-wrap {
    display: flex; justify-content: center;
}
.price-card {
    position: relative;
    width: min(480px, 100%);
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--r-lg);
    padding: 40px 44px 44px;
    box-shadow: 0 20px 60px rgba(15,118,110,.14);
    text-align: center;
}
.price-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: var(--white);
    font-size: 13px; font-weight: 700; padding: 5px 18px; border-radius: 20px;
}
.price-name { font-size: 20px; font-weight: 800; margin: 0 0 20px; }
.price-amount {
    display: flex; align-items: flex-end; justify-content: center; gap: 6px;
    margin-bottom: 10px;
}
.price-amount strong {
    font-size: 52px; font-weight: 900; color: var(--primary); line-height: 1;
}
.price-amount span { font-size: 18px; color: var(--gray); padding-bottom: 8px; }
.price-note { font-size: 13px; color: var(--gray); margin: 0 0 28px; }

.price-list {
    list-style: none; padding: 0; margin: 0 0 32px;
    display: flex; flex-direction: column; gap: 14px;
    text-align: left;
}
.price-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 15px; color: #374151;
}
.price-list li svg { flex-shrink: 0; }

.price-cta { width: 100%; justify-content: center; font-size: 17px; padding: 15px; }

/* ═══ CTA ═══════════════════════════════════════════════════════════════════ */
.cta-sec { background: linear-gradient(135deg, #0a5c56 0%, #0f766e 50%, #0e7490 100%); padding: 72px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-title { font-size: clamp(22px,3vw,34px); font-weight: 800; color: var(--white); margin: 0 0 10px; }
.cta-sub   { font-size: 16px; color: rgba(255,255,255,.8); margin: 0; }
.cta-btns  { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-cta-white {
    display: inline-flex; align-items: center;
    background: var(--white); color: var(--primary);
    border: none; border-radius: var(--r-md);
    font-size: 16px; font-weight: 700; padding: 13px 26px;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
    transition: transform .2s, box-shadow .2s;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

.btn-cta-outline {
    display: inline-flex; align-items: center;
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,.7); border-radius: var(--r-md);
    font-size: 16px; font-weight: 700; padding: 12px 24px;
    transition: background .2s, border-color .2s;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

/* ═══ FOOTER ═══════════════════════════════════════════════════════════════ */
.site-footer {
    background: #f3f4f6;
    border-top: 1px solid #e5e7eb;
    padding: 40px 0 44px;
}
.footer-inner { text-align: center; }
.footer-links {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.footer-links a {
    color: #111827;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.02em;
}
.footer-links span {
    color: #6b7280;
    font-size: 20px;
    line-height: 1;
}
.site-footer p {
    margin: 0;
    color: #111827;
    font-size: 16px;
    line-height: 1.8;
}

/* ═══ LOGIN MODAL ════════════════════════════════════════════════════════════ */
.login-layer[hidden] { display: none; }
.login-layer { position: fixed; inset: 0; z-index: 200; }
.layer-bd {
    position: absolute; inset: 0;
    background: rgba(15,23,42,.52);
    backdrop-filter: blur(3px);
}
.layer-panel {
    position: relative;
    width: min(440px, calc(100% - 32px));
    margin: 10vh auto 0;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 32px 28px 28px;
    box-shadow: 0 24px 64px rgba(0,0,0,.18);
    animation: modalSlide .25s ease-out;
}
@keyframes modalSlide { from{opacity:0;transform:translateY(-18px)} to{opacity:1;transform:translateY(0)} }
.close-btn {
    position: absolute; right: 16px; top: 16px;
    border: none; background: transparent;
    font-size: 18px; color: var(--gray);
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
}
.close-btn:hover { background: #f1f5f9; }
.layer-panel h3 { margin: 0 0 24px; font-size: 22px; font-weight: 800; }
.layer-panel label { display: block; margin: 14px 0 6px; font-size: 14px; font-weight: 600; color: #374151; }
.layer-panel input[type="text"],
.layer-panel input[type="password"] {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid #d1d5db; border-radius: var(--r-sm);
    font-family: inherit; font-size: 15px; color: var(--ink);
    outline: none; transition: border-color .2s;
}
.layer-panel input:focus { border-color: var(--primary); }
.btn-login {
    width: 100%; margin-top: 20px;
    background: var(--primary); color: var(--white);
    border: none; border-radius: var(--r-sm);
    font-size: 16px; font-weight: 700; padding: 13px;
    transition: background .2s;
}
.btn-login:hover { background: var(--primary-dk); }
.find-links { text-align: center; font-size: 13px; color: var(--gray); margin: 14px 0 0; }
.find-links a { color: var(--gray); }
.find-links a:hover { color: var(--primary); }
.find-links span { margin: 0 8px; }

/* ═══ RESPONSIVE ════════════════════════════════════════════════════════════ */
@media (max-width: 920px) {
    .hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .hero-visual { order: -1; }
    .feat-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-btns  { justify-content: center; }
    .proof-item { padding: 0 24px; }
    .footer-links a { font-size: 20px; }
    .site-footer p { font-size: 14px; line-height: 1.7; }
}
@media (max-width: 640px) {
    .hero { padding: 48px 0 40px; }
    .hd-inner { height: 56px; }
    .hero-actions { flex-direction: column; }
    .welcome { width: 100%; }
    .hero-glow, .hero-orbit, .hero-signal { display: none; }
    .f1 { left: 14px; bottom: 14px; }
    .f2 { top: 14px; right: 14px; }
    .features, .how-works, .pricing { padding: 60px 0; }
    .steps { gap: 12px; }
    .step { min-width: 140px; padding: 22px 14px; }
    .step-arrow { display: none; }
    .f1, .f2 { display: none; }
    .price-card { padding: 32px 24px 36px; }
    .price-amount strong { font-size: 42px; }
    .proof-inner { gap: 16px 0; }
    .proof-item { padding: 8px 20px; }
    .proof-div { width: 44px; height: 1px; }
    .container { width: 92%; }
    .site-footer { padding: 34px 0 36px; }
    .footer-links { gap: 10px; margin-bottom: 12px; }
    .footer-links a { font-size: 16px; }
    .footer-links span { font-size: 14px; }
    .site-footer p { font-size: 12px; line-height: 1.65; word-break: keep-all; }
}
