/* Cistora — profesionalno čišćenje. Design system CSS (1:1 port of Claude Design). */

@font-face{
  font-family:'Manrope';font-style:normal;font-weight:200 800;font-display:swap;
  src:url('../fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face{
  font-family:'Manrope';font-style:normal;font-weight:200 800;font-display:swap;
  src:url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family:'Outfit';font-style:normal;font-weight:100 900;font-display:swap;
  src:url('../fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face{
  font-family:'Outfit';font-style:normal;font-weight:100 900;font-display:swap;
  src:url('../fonts/outfit-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root{
  --teal:#0e9b8e;
  --teal-dark:#0b8479;
  --green:#2f7d54;
  --dark:#0f1f1c;
  --dark-2:#142824;
  --dark-3:#24403a;
  --ink:#0f1f1c;
  --muted:#4d6660;
  --muted-2:#54706a;
  --muted-3:#6b807b;
  --muted-4:#33504a;
  --muted-5:#8a9d99;
  --line:#e6efec;
  --line-2:#eef3f1;
  --line-3:#dce9e5;
  --line-4:#cfe6e0;
  --bg-soft:#f6faf8;
  --bg-soft-2:#fbfdfc;
  --chip-bg:#eef8f5;
  --chip-ink:#0e7d73;
  --accent-mint:#4fd1c0;
  --accent-sage:#67b98a;
  --bad-bg:#fdf5f3;
  --bad-ink:#a8543f;
  --bad-ink-2:#6b4a41;
  --good-bg:#f2faf6;
  --good-ink:#2f7d54;
  --radius-s:9px;
  --radius-m:12px;
  --radius-l:16px;
  --radius-xl:18px;
  --radius-xxl:22px;
  --container:1240px;
  --shadow-card:0 10px 30px rgba(14,155,142,.09);
  --shadow-card-2:0 10px 28px rgba(14,155,142,.1);
  --shadow-drawer:-20px 0 60px rgba(15,31,28,.2);
  --shadow-banner:0 20px 50px rgba(15,31,28,.18);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:#ffffff;color:var(--ink);
  font-family:'Manrope',system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
  -webkit-font-smoothing:antialiased;
  min-height:100vh;display:flex;flex-direction:column;
}
a{color:var(--teal);text-decoration:none}
a:hover{color:var(--green);text-decoration:underline}
button{font-family:inherit}
img{max-width:100%;display:block}
::selection{background:#d8efe9}
h1,h2,h3{font-family:'Outfit',system-ui,-apple-system,'Segoe UI',Roboto,sans-serif}

@keyframes cfade{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}
@keyframes cslide{from{transform:translateX(100%)}to{transform:none}}

.page-enter{animation:cfade .4s ease both}

.container{max-width:var(--container);margin:0 auto;padding:0 28px}
.skip-link{position:absolute;left:-999px;top:0;background:#0e9b8e;color:#fff;padding:10px 16px;border-radius:0 0 10px 0;z-index:100}
.skip-link:focus{left:0}

/* ===== Header ===== */
.site-header{position:sticky;top:0;z-index:40;background:rgba(255,255,255,.92);backdrop-filter:blur(14px);border-bottom:1px solid var(--line)}
.site-header .container{padding:14px 28px;display:flex;align-items:center;gap:28px}
.brand{display:flex;align-items:center;gap:10px;flex-shrink:0}
.brand-mark{width:30px;height:30px;border-radius:50%;background:linear-gradient(140deg,#0e9b8e,#2f7d54)}
.brand-name{font-family:'Outfit',sans-serif;font-size:23px;font-weight:600;letter-spacing:-.02em;color:var(--ink)}

.main-nav{display:flex;gap:4px;flex-wrap:wrap;margin-left:auto}
.main-nav a{border:0;background:transparent;cursor:pointer;padding:9px 13px;border-radius:var(--radius-s);font-size:14.5px;font-weight:500;color:#33504a;text-decoration:none;display:inline-block}
.main-nav a:hover,.main-nav a.active{background:#f0f7f5;color:var(--teal)}

.header-actions{display:flex;align-items:center;gap:10px}
.btn-cart{border:1px solid var(--line-4);background:#fff;cursor:pointer;padding:9px 14px;border-radius:10px;font-size:14px;font-weight:600;color:var(--ink);display:flex;gap:8px;align-items:center}
.btn-cart:hover{border-color:var(--teal)}
.cart-badge{background:var(--teal);color:#fff;border-radius:20px;min-width:22px;height:22px;display:inline-flex;align-items:center;justify-content:center;font-size:12px}
.btn-cta{border:0;background:var(--dark);color:#fff;cursor:pointer;padding:11px 18px;border-radius:10px;font-size:14px;font-weight:600}
.btn-cta:hover{background:var(--teal)}
.nav-toggle{display:none;border:1px solid var(--line-4);background:#fff;border-radius:10px;width:40px;height:40px;cursor:pointer;align-items:center;justify-content:center}

/* ===== Buttons ===== */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;cursor:pointer;font-weight:600;border-radius:12px;font-size:15.5px;padding:15px 26px;border:0;text-decoration:none}
.btn:hover{text-decoration:none}
.btn-primary{background:var(--teal);color:#fff}
.btn-primary:hover{background:var(--teal-dark);color:#fff}
.btn-outline{border:1px solid var(--line-4);background:#fff;color:var(--ink)}
.btn-outline:hover{border-color:var(--teal);background:#f6faf8;color:var(--ink)}
.btn-sm{padding:13px 20px;border-radius:11px;font-size:14.5px}
.btn-block{width:100%}
.btn-white{border:0;background:#fff;color:var(--ink);cursor:pointer;padding:16px 28px;border-radius:12px;font-size:15.5px;font-weight:600}
.btn-ghost-white{border:1px solid rgba(255,255,255,.5);background:transparent;color:#fff;cursor:pointer;padding:16px 28px;border-radius:12px;font-size:15.5px;font-weight:600}

/* ===== Hero ===== */
.hero{padding:70px 28px 40px;display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center}
.eyebrow-pill{display:inline-flex;align-items:center;gap:9px;background:var(--chip-bg);color:var(--chip-ink);padding:7px 14px;border-radius:30px;font-size:13px;font-weight:600;letter-spacing:.01em}
.hero h1{font-size:60px;line-height:1.03;font-weight:600;letter-spacing:-.035em;margin:22px 0 20px;color:var(--ink)}
.hero h1 .accent{color:var(--teal)}
.hero p.lead{font-size:18.5px;line-height:1.62;color:var(--muted);max-width:520px;margin:0 0 30px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:34px}
.stat-row{display:flex;gap:34px;flex-wrap:wrap;border-top:1px solid var(--line);padding-top:24px}
.stat-value{font-family:'Outfit',sans-serif;font-size:30px;font-weight:600;color:var(--ink);letter-spacing:-.02em}
.stat-label{font-size:13.5px;color:var(--muted-3);margin-top:3px}

.hero-media{display:grid;grid-template-rows:1.35fr 1fr;gap:14px}
.hero-media-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}

.ph{border-radius:var(--radius-xl);min-height:300px;display:flex;align-items:flex-end;justify-content:flex-start;background-size:cover;background-position:center;position:relative;overflow:hidden}
.ph-sm{min-height:170px}
.ph-cap{position:absolute;left:0;right:0;bottom:0;padding:12px 16px;font-size:12px;line-height:1.4;color:#fff;background:linear-gradient(0deg,rgba(15,31,28,.72),rgba(15,31,28,0));width:100%}

/* ===== Sections ===== */
section{width:100%}
.section-pad{padding:76px 28px}
.band{background:var(--bg-soft);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.band .container{padding:70px 28px}
.section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:30px;flex-wrap:wrap;margin-bottom:38px}
.kicker{font-size:13px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--teal);margin-bottom:12px}
.section-head h2{font-family:'Outfit',sans-serif;font-size:40px;font-weight:600;letter-spacing:-.03em;margin:0;max-width:560px;line-height:1.1}
h2.h-38{font-size:38px;letter-spacing:-.03em;font-weight:600;margin:0 0 12px}

/* ===== Service cards (home) ===== */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}

.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-l);padding:26px}
.card:hover{border-color:var(--teal);box-shadow:var(--shadow-card)}
.card-icon{width:38px;height:38px;border-radius:11px;background:var(--chip-bg);display:flex;align-items:center;justify-content:center;font-family:'Outfit',sans-serif;font-weight:600;color:var(--teal);font-size:15px}
.card h3{font-size:21px;font-weight:600;margin:18px 0 10px;letter-spacing:-.015em}
.card p{font-size:14.8px;line-height:1.6;color:var(--muted-2);margin:0 0 16px}
.card-foot{display:flex;justify-content:space-between;align-items:center;border-top:1px solid var(--line-2);padding-top:14px}
.card-foot .meta{font-size:14px;color:var(--muted-3)}
.card-foot .price{font-family:'Outfit',sans-serif;font-size:17px;font-weight:600;color:var(--green)}

/* ===== Steps (how we work) ===== */
.steps-media{display:grid;grid-template-columns:.9fr 1.1fr;gap:56px;align-items:center}
.step-row{display:flex;gap:18px;padding:20px 0;border-top:1px solid var(--line)}
.step-no{font-family:'Outfit',sans-serif;font-size:14px;font-weight:600;color:var(--teal);padding-top:3px;min-width:28px}
.step-title{font-family:'Outfit',sans-serif;font-size:19px;font-weight:600;margin-bottom:6px}
.step-text{font-size:14.8px;line-height:1.6;color:var(--muted-2)}

/* ===== Dark benefits band ===== */
.band-dark{background:var(--dark);color:#fff}
.band-dark .container{padding:70px 28px}
.band-dark h2{font-family:'Outfit',sans-serif;font-size:38px;font-weight:600;letter-spacing:-.03em;margin:0 0 12px}
.band-dark .lead{font-size:17px;color:#9db8b1;max-width:600px;margin:0 0 42px;line-height:1.6}
.benefit-card{border:1px solid var(--dark-3);border-radius:var(--radius-l);padding:24px;background:var(--dark-2)}
.benefit-dot{width:8px;height:8px;border-radius:50%;background:var(--accent-mint);margin-bottom:18px}
.benefit-card .b-title{font-family:'Outfit',sans-serif;font-size:19px;font-weight:600;margin-bottom:9px}
.benefit-card .b-text{font-size:14.5px;line-height:1.6;color:#9db8b1}

/* ===== Tip cards ===== */
.tip-card{cursor:pointer;border:1px solid var(--line);border-radius:var(--radius-l);overflow:hidden;background:#fff;text-decoration:none;color:inherit;display:block}
.tip-card:hover{border-color:var(--teal);text-decoration:none}
.tip-img{background-size:cover;background-position:center;height:150px}
.tip-body{padding:22px}
.tip-tag{font-size:12.5px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--teal);margin-bottom:10px}
.tip-title{font-family:'Outfit',sans-serif;font-size:19.5px;font-weight:600;line-height:1.25;margin-bottom:9px;letter-spacing:-.015em}
.tip-text{font-size:14.5px;line-height:1.6;color:var(--muted-2)}

/* ===== FAQ ===== */
.faq-wrap{background:#fff;border:1px solid var(--line);border-radius:var(--radius-l);overflow:hidden}
.faq-item{border-bottom:1px solid var(--line-2)}
.faq-item:last-child{border-bottom:0}
.faq-q{width:100%;text-align:left;border:0;background:#fff;cursor:pointer;padding:20px 24px;display:flex;justify-content:space-between;gap:16px;align-items:center;font-size:16.5px;font-weight:600;color:var(--ink)}
.faq-q:hover{background:#f9fcfb}
.faq-sign{color:var(--teal);font-size:20px;font-weight:400}
.faq-a{padding:0 24px 22px;font-size:15px;line-height:1.65;color:var(--muted-2);max-width:760px;display:none}
.faq-item.open .faq-a{display:block}
.faq-item.open .faq-sign::before{content:"\2212"}
.faq-item:not(.open) .faq-sign::before{content:"+"}

/* ===== CTA band ===== */
.cta-band{background:linear-gradient(135deg,#0e9b8e,#2f7d54);border-radius:var(--radius-xxl);padding:56px;display:flex;justify-content:space-between;gap:36px;align-items:center;flex-wrap:wrap;color:#fff}
.cta-band h2{font-family:'Outfit',sans-serif;font-size:34px;font-weight:600;letter-spacing:-.03em;margin:0 0 12px}
.cta-band p{font-size:16.5px;line-height:1.6;margin:0;color:#e2f5f1}

/* ===== Generic page header ===== */
.page-head{padding:60px 28px 0}
.page-head h1{font-family:'Outfit',sans-serif;font-size:48px;font-weight:600;letter-spacing:-.035em;margin:0 0 18px;max-width:800px;line-height:1.06}
.page-head p.lead{font-size:18px;line-height:1.6;color:var(--muted);max-width:720px;margin:0 0 46px}

/* ===== Services (long) ===== */
.service-long{border:1px solid var(--line);border-radius:var(--radius-xl);padding:32px;display:grid;grid-template-columns:1.4fr 1fr;gap:36px}
.service-long:hover{border-color:var(--line-4);background:var(--bg-soft-2)}
.tag-pill{background:var(--chip-bg);color:var(--chip-ink);padding:6px 12px;border-radius:20px;font-size:12.5px;font-weight:600;display:inline-block}
.service-long h2{font-family:'Outfit',sans-serif;font-size:28px;font-weight:600;letter-spacing:-.02em;margin:0 0 12px}
.service-long .price{font-family:'Outfit',sans-serif;font-size:30px;font-weight:600;color:var(--green)}
.service-long .price-note{font-size:14px;color:var(--muted-3)}
.included-box{background:var(--bg-soft);border-radius:14px;padding:24px}
.included-title{font-size:12.5px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--teal);margin-bottom:14px}
.included-item{display:flex;gap:10px;font-size:14.5px;line-height:1.5;color:var(--muted-4)}

.addon-card{background:#fff;border:1px solid var(--line);border-radius:12px;padding:16px 18px}
.addon-name{font-size:15px;font-weight:600;margin-bottom:6px}
.addon-price{font-size:14px;color:var(--green);font-weight:600}

.city-card{border:1px solid var(--line);border-radius:14px;padding:20px 22px}
.city-card .name{font-family:'Outfit',sans-serif;font-size:18px;font-weight:600;margin-bottom:6px}
.city-card .note{font-size:14px;color:var(--muted-3);line-height:1.5}

/* ===== Surfaces ===== */
.surface-card{border:1px solid var(--line);border-radius:var(--radius-xl);overflow:hidden;background:#fff;padding:26px 28px 22px}
.surface-head{display:flex;justify-content:space-between;align-items:center;gap:14px;margin-bottom:14px}
.surface-head h2{font-family:'Outfit',sans-serif;font-size:24px;font-weight:600;margin:0;letter-spacing:-.02em}
.freq-pill{background:var(--chip-bg);color:var(--chip-ink);padding:6px 12px;border-radius:20px;font-size:12px;font-weight:600;white-space:nowrap}
.surface-card p{font-size:15px;line-height:1.65;color:var(--muted-2);margin:0 0 20px}
.good-bad{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.good-box{background:var(--good-bg);border-radius:12px;padding:16px}
.bad-box{background:var(--bad-bg);border-radius:12px;padding:16px}
.gb-title{font-size:11.5px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;margin-bottom:9px}
.good-box .gb-title{color:var(--good-ink)}
.bad-box .gb-title{color:var(--bad-ink)}
.good-box .gb-text{font-size:14px;line-height:1.55;color:var(--muted-4)}
.bad-box .gb-text{font-size:14px;line-height:1.55;color:var(--bad-ink-2)}

.rule-box{margin-top:50px;background:var(--dark);color:#fff;border-radius:20px;padding:44px;display:grid;grid-template-columns:1fr 1fr;gap:44px}
.rule-box h2{font-family:'Outfit',sans-serif;font-size:30px;font-weight:600;margin:0 0 14px;letter-spacing:-.025em}
.rule-box p{font-size:16px;line-height:1.65;color:#9db8b1;margin:0}
.rule-item{display:flex;gap:14px;align-items:flex-start;border-top:1px solid var(--dark-3);padding-top:14px}
.rule-dot{width:12px;height:12px;border-radius:3px;background:var(--accent-mint);margin-top:5px;flex-shrink:0}
.rule-item .r-title{font-weight:600;margin-bottom:4px}
.rule-item .r-text{font-size:14.5px;color:#9db8b1;line-height:1.55}

/* ===== Prep checklist ===== */
.checklist-wrap{display:grid;grid-template-columns:1.15fr .85fr;gap:40px;align-items:start}
.checklist-box{border:1px solid var(--line);border-radius:var(--radius-xl);overflow:hidden}
.checklist-head{padding:24px 28px;border-bottom:1px solid var(--line-2);background:var(--bg-soft);display:flex;justify-content:space-between;align-items:center}
.checklist-head .title{font-family:'Outfit',sans-serif;font-size:20px;font-weight:600}
.checklist-head .count{font-size:13.5px;color:var(--muted-3)}
.check-item{width:100%;text-align:left;border:0;border-bottom:1px solid var(--line-2);background:#fff;cursor:pointer;padding:18px 28px;display:flex;gap:16px;align-items:flex-start}
.check-item:last-child{border-bottom:0}
.check-item:hover{background:#f9fcfb}
.check-box{width:22px;height:22px;border-radius:6px;border:1.5px solid var(--line-4);background:#fff;color:#fff;display:inline-flex;align-items:center;justify-content:center;font-size:13px;flex-shrink:0;margin-top:2px}
.check-item.checked .check-box{background:var(--teal)}
.check-item .c-title{display:block;font-size:16px;font-weight:600;color:var(--ink);margin-bottom:5px}
.check-item .c-text{display:block;font-size:14.5px;line-height:1.55;color:var(--muted-2)}
.prep-note{border:1px solid var(--line);border-radius:var(--radius-l);padding:22px}
.prep-note .p-title{font-family:'Outfit',sans-serif;font-size:18px;font-weight:600;margin-bottom:8px}
.prep-note .p-text{font-size:14.5px;line-height:1.6;color:var(--muted-2)}
.prep-type-card{border:1px solid var(--line);border-radius:var(--radius-l);padding:24px;background:var(--bg-soft-2)}
.prep-type-card .pt-title{font-family:'Outfit',sans-serif;font-size:19px;font-weight:600;margin-bottom:12px}
.prep-type-card .pt-item{font-size:14.3px;line-height:1.5;color:var(--muted-2);display:flex;gap:8px;margin-bottom:9px}

/* ===== Tips / Articles ===== */
.article-row{border-top:1px solid var(--line);padding:34px 0;display:grid;grid-template-columns:200px 1fr;gap:36px}
.article-row .a-tag{font-size:12.5px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--teal);margin-bottom:8px}
.article-row .a-read{font-size:13.5px;color:var(--muted-3)}
.article-row h2{font-family:'Outfit',sans-serif;font-size:27px;font-weight:600;letter-spacing:-.02em;margin:0 0 12px;max-width:680px}
.article-row .a-text{font-size:16px;line-height:1.7;color:var(--muted);margin:0 0 16px;max-width:760px}
.article-points{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;max-width:820px}
.article-points .pt{background:var(--bg-soft);border-radius:12px;padding:16px;font-size:14.3px;line-height:1.55;color:var(--muted-4)}

.week-box{background:var(--bg-soft);border:1px solid var(--line);border-radius:20px;padding:44px}
.week-wrap{display:grid;grid-template-columns:1fr 1.2fr;gap:44px;align-items:center}
.week-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.week-day{background:#fff;border:1px solid var(--line);border-radius:12px;padding:14px 16px;display:flex;justify-content:space-between;gap:12px}
.week-day .d{font-size:14px;font-weight:600}
.week-day .t{font-size:14px;color:var(--muted-2);text-align:right}

/* ===== Shop ===== */
.shop-filters{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:32px}
.chip{border:1px solid var(--line-3);background:#fff;color:var(--muted-4);cursor:pointer;padding:10px 18px;border-radius:24px;font-size:14px;font-weight:600}
.chip.active{border-color:var(--teal);background:var(--teal);color:#fff}
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.product-card{border:1px solid var(--line);border-radius:var(--radius-l);overflow:hidden;background:#fff;display:flex;flex-direction:column}
.product-card:hover{border-color:var(--teal);box-shadow:var(--shadow-card-2)}
.product-img{background-size:cover;background-position:center;height:180px;position:relative}
.product-badge{position:absolute;top:12px;left:12px;background:var(--dark);color:#fff;padding:5px 10px;border-radius:20px;font-size:10.5px;letter-spacing:.06em}
.product-body{padding:20px;display:flex;flex-direction:column;flex:1}
.product-cat{font-size:12px;color:var(--muted-3);letter-spacing:.06em;text-transform:uppercase;margin-bottom:8px}
.product-name{font-family:'Outfit',sans-serif;font-size:17.5px;font-weight:600;line-height:1.3;margin-bottom:8px}
.product-desc{font-size:14px;line-height:1.55;color:var(--muted-2);margin-bottom:16px;flex:1}
.product-foot{display:flex;justify-content:space-between;align-items:center;gap:10px}
.product-price{font-family:'Outfit',sans-serif;font-size:20px;font-weight:600;color:var(--ink)}
.btn-add{border:0;background:var(--teal);color:#fff;cursor:pointer;padding:10px 15px;border-radius:10px;font-size:13.5px;font-weight:600}
.btn-add:hover{background:var(--teal-dark)}
.promise-card{border:1px solid var(--line);border-radius:var(--radius-l);padding:24px;background:var(--bg-soft)}
.promise-card .pr-title{font-family:'Outfit',sans-serif;font-size:18px;font-weight:600;margin-bottom:8px}
.promise-card .pr-text{font-size:14.5px;line-height:1.6;color:var(--muted-2)}

/* ===== About ===== */
.about-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:50px;margin-top:36px;align-items:start}
.about-grid p{font-size:17.5px;line-height:1.75;color:var(--muted);margin:0 0 20px}
.value-card{border:1px solid var(--line);border-radius:14px;padding:22px}
.value-card .v-title{font-family:'Outfit',sans-serif;font-size:18px;font-weight:600;margin-bottom:8px}
.value-card .v-text{font-size:14.5px;line-height:1.6;color:var(--muted-2)}
.biz-card{border:1px solid var(--line);border-radius:var(--radius-xl);padding:26px}
.biz-title{font-size:12.5px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--teal);margin-bottom:16px}
.biz-row{display:flex;justify-content:space-between;gap:14px;padding:9px 0;border-top:1px solid var(--line-2);font-size:14.5px}
.biz-row .k{color:var(--muted-3)}
.biz-row .v{font-weight:600;text-align:right}
.review-card{border:1px solid var(--line);border-radius:var(--radius-xl);padding:28px;background:var(--bg-soft-2)}
.stars{color:var(--teal);font-size:15px;letter-spacing:.15em;margin-bottom:14px}
.review-card p{font-size:15.5px;line-height:1.7;color:var(--muted-4);margin:0 0 18px}
.review-name{font-size:14px;font-weight:600}
.review-role{font-size:13.5px;color:var(--muted-3)}

/* ===== Contact ===== */
.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:44px;align-items:start}
.contact-form-card{border:1px solid var(--line);border-radius:20px;padding:34px}
.form-title{font-family:'Outfit',sans-serif;font-size:23px;font-weight:600;margin-bottom:6px}
.form-sub{font-size:14.5px;color:var(--muted-3);margin:0 0 24px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px}
label.field{display:block}
label.field .lab{display:block;font-size:13.5px;font-weight:600;margin-bottom:7px}
.field input[type=text],.field input[type=tel],.field input[type=email],.field input[type=number],.field textarea{
  width:100%;border:1px solid var(--line-3);border-radius:11px;padding:13px 15px;font-size:15px;font-family:'Manrope',sans-serif;color:var(--ink);outline:none;background:#fff;
}
.field input:focus,.field textarea:focus{border-color:var(--teal)}
.field textarea{resize:vertical}
.service-choice-wrap{margin-bottom:16px}
.service-choice-label{display:block;font-size:13.5px;font-weight:600;margin-bottom:9px}
.choice-row{display:flex;gap:8px;flex-wrap:wrap}
.choice-chip{border:1px solid var(--line-3);background:#fff;color:var(--muted-4);cursor:pointer;padding:10px 16px;border-radius:22px;font-size:13.8px;font-weight:600}
.choice-chip input{position:absolute;opacity:0;pointer-events:none}
.choice-chip.active{border-color:var(--teal);background:var(--teal);color:#fff}
.consent-row{display:flex;gap:11px;align-items:flex-start;margin-bottom:20px;cursor:pointer}
.consent-row input{width:18px;height:18px;margin-top:2px;accent-color:var(--teal)}
.consent-row span{font-size:13.5px;line-height:1.55;color:var(--muted-2)}
.form-demo-note{font-size:13px;color:var(--muted-5);margin-top:12px;text-align:center}
.form-error-banner{background:var(--bad-bg);color:var(--bad-ink-2);border:1px solid #f0d8d2;border-radius:11px;padding:13px 16px;font-size:14px;margin-bottom:18px}

.success-box{text-align:center;padding:50px 20px}
.success-check{width:52px;height:52px;border-radius:50%;background:var(--chip-bg);color:var(--teal);display:flex;align-items:center;justify-content:center;font-size:24px;margin:0 auto 20px}
.success-title{font-family:'Outfit',sans-serif;font-size:26px;font-weight:600;margin-bottom:10px}
.success-box p{font-size:15.5px;color:var(--muted-2);line-height:1.6;max-width:420px;margin:0 auto 24px}

.side-card{border:1px solid var(--line);border-radius:var(--radius-xl);padding:28px}
.side-card-title{font-family:'Outfit',sans-serif;font-size:20px;font-weight:600;margin-bottom:18px}
.contact-row{padding:12px 0;border-top:1px solid var(--line-2)}
.contact-row:first-child{border-top:0}
.contact-row .k{font-size:12.5px;color:var(--muted-3);margin-bottom:4px}
.contact-row .v{font-size:15.5px;font-weight:600}
.map-embed{border-radius:var(--radius-xl);overflow:hidden;min-height:230px;border:1px solid var(--line)}
.map-embed iframe{width:100%;height:230px;border:0;display:block}
.urgent-card{background:var(--dark);color:#fff;border-radius:var(--radius-xl);padding:26px}
.urgent-card .u-title{font-family:'Outfit',sans-serif;font-size:19px;font-weight:600;margin-bottom:10px}
.urgent-card p{font-size:14.8px;line-height:1.6;color:#9db8b1;margin:0}

/* ===== Legal ===== */
.legal-layout{padding:60px 28px 80px;display:grid;grid-template-columns:250px 1fr;gap:50px;align-items:start}
.legal-nav{position:sticky;top:96px;border:1px solid var(--line);border-radius:var(--radius-l);padding:18px}
.legal-nav-title{font-size:12.5px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--teal);margin-bottom:14px;padding:0 8px}
.legal-nav a{width:100%;text-align:left;border:0;background:transparent;color:var(--muted-4);cursor:pointer;padding:11px 12px;border-radius:9px;font-size:14.3px;font-weight:600;margin-bottom:2px;display:block;text-decoration:none}
.legal-nav a:hover{background:#f0f7f5;text-decoration:none}
.legal-nav a.active{background:var(--chip-bg);color:var(--chip-ink)}
.legal-article h1{font-family:'Outfit',sans-serif;font-size:40px;font-weight:600;letter-spacing:-.03em;margin:0 0 10px;line-height:1.1}
.legal-updated{font-size:14px;color:var(--muted-3);margin-bottom:34px}
.legal-sections{max-width:780px;display:flex;flex-direction:column;gap:28px}
.legal-sections h2{font-family:'Outfit',sans-serif;font-size:22px;font-weight:600;letter-spacing:-.015em;margin:0 0 12px}
.legal-sections p{font-size:16px;line-height:1.75;color:var(--muted);margin:0}
.legal-contact{margin-top:44px;background:var(--bg-soft);border:1px solid var(--line);border-radius:var(--radius-l);padding:26px;max-width:780px}
.legal-contact .lc-title{font-family:'Outfit',sans-serif;font-size:18px;font-weight:600;margin-bottom:8px}
.legal-contact p{font-size:15px;line-height:1.6;color:var(--muted-2);margin:0}

/* ===== Footer ===== */
.site-footer{background:var(--dark);color:#9db8b1;margin-top:auto}
.footer-grid{padding:60px 28px 30px;display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:16px}
.footer-brand .mark{width:26px;height:26px;border-radius:50%;background:linear-gradient(140deg,#4fd1c0,#67b98a)}
.footer-brand .name{font-family:'Outfit',sans-serif;font-size:21px;font-weight:600;color:#fff}
.footer-desc{font-size:14.5px;line-height:1.65;margin:0 0 18px;max-width:320px}
.footer-legalinfo{font-size:14px;line-height:1.7}
.footer-legalinfo a{color:var(--accent-mint)}
.footer-col-title{color:#fff;font-weight:600;margin-bottom:14px;font-size:15px}
.footer-links{display:flex;flex-direction:column;gap:9px}
.footer-links a{border:0;background:transparent;color:#9db8b1;cursor:pointer;padding:0;text-align:left;font-size:14.3px;text-decoration:none}
.footer-links a:hover{color:var(--accent-mint);text-decoration:none}
.footer-bottom{max-width:var(--container);margin:0 auto;padding:22px 28px 40px;border-top:1px solid var(--dark-3);display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;font-size:13.5px}

/* ===== Cart drawer ===== */
.cart-overlay{position:fixed;inset:0;z-index:60;display:none;justify-content:flex-end}
.cart-overlay.open{display:flex}
.cart-backdrop{position:absolute;inset:0;background:rgba(15,31,28,.42)}
.cart-drawer{position:relative;width:440px;max-width:100%;background:#fff;height:100%;display:flex;flex-direction:column;animation:cslide .28s ease both;box-shadow:var(--shadow-drawer)}
.cart-head{padding:24px 26px;border-bottom:1px solid var(--line);display:flex;justify-content:space-between;align-items:center}
.cart-head-title{font-family:'Outfit',sans-serif;font-size:22px;font-weight:600}
.cart-close{border:0;background:#f0f7f5;cursor:pointer;width:34px;height:34px;border-radius:9px;font-size:17px;color:var(--muted-4)}
.cart-body{flex:1;overflow:auto;padding:20px 26px}
.cart-empty{text-align:center;padding:60px 10px}
.cart-empty .ce-title{font-size:16.5px;font-weight:600;margin-bottom:8px}
.cart-empty p{font-size:14.5px;color:var(--muted-3);line-height:1.6;margin:0 0 20px}
.cart-line{display:flex;gap:14px;padding:16px 0;border-bottom:1px solid var(--line-2)}
.cart-line-thumb{width:64px;height:64px;border-radius:11px;background-size:cover;background-position:center;flex-shrink:0}
.cart-line-name{font-size:15px;font-weight:600;line-height:1.35;margin-bottom:4px}
.cart-line-unit{font-size:13.5px;color:var(--muted-3);margin-bottom:10px}
.qty-row{display:flex;align-items:center;gap:10px}
.qty-btn{border:1px solid var(--line-3);background:#fff;cursor:pointer;width:28px;height:28px;border-radius:8px;font-size:15px;color:var(--muted-4)}
.qty-val{font-size:14.5px;font-weight:600;min-width:18px;text-align:center}
.cart-remove{border:0;background:transparent;cursor:pointer;font-size:13px;color:var(--muted-5);margin-left:6px;text-decoration:underline}
.cart-line-total{font-family:'Outfit',sans-serif;font-size:16px;font-weight:600;white-space:nowrap}
.cart-summary{border-top:1px solid var(--line);padding:22px 26px}
.sum-row{display:flex;justify-content:space-between;font-size:14.8px;margin-bottom:9px}
.sum-row .k{color:var(--muted-3)}
.sum-row .v{font-weight:600}
.sum-total{display:flex;justify-content:space-between;align-items:baseline;border-top:1px solid var(--line);padding-top:14px;margin-bottom:16px}
.sum-total .k{font-size:16px;font-weight:600}
.sum-total .v{font-family:'Outfit',sans-serif;font-size:26px;font-weight:600;color:var(--ink)}
.free-ship-note{font-size:13px;color:var(--muted-3);margin-bottom:14px}
.order-done{border-top:1px solid var(--line);padding:26px;background:var(--good-bg)}
.order-done .od-title{font-family:'Outfit',sans-serif;font-size:19px;font-weight:600;margin-bottom:8px}
.order-done p{font-size:14.5px;color:var(--muted-2);line-height:1.6;margin:0}

/* ===== Cookie banner ===== */
.cookie-banner{position:fixed;left:24px;bottom:24px;z-index:70;max-width:440px;background:#fff;border:1px solid var(--line-3);border-radius:var(--radius-xl);padding:24px;box-shadow:var(--shadow-banner);display:none}
.cookie-banner.show{display:block}
.cookie-title{font-family:'Outfit',sans-serif;font-size:18px;font-weight:600;margin-bottom:9px}
.cookie-banner p{font-size:14.3px;line-height:1.6;color:var(--muted-2);margin:0 0 16px}
.cookie-actions{display:flex;gap:10px;flex-wrap:wrap}
.btn-cookie-accept{border:0;background:var(--teal);color:#fff;cursor:pointer;padding:12px 20px;border-radius:11px;font-size:14px;font-weight:600}
.btn-cookie-reject{border:1px solid var(--line-3);background:#fff;cursor:pointer;padding:12px 20px;border-radius:11px;font-size:14px;font-weight:600;color:var(--muted-4)}
.btn-cookie-settings{border:0;background:transparent;cursor:pointer;padding:12px 6px;font-size:14px;color:var(--muted-3);text-decoration:underline}

/* ===== Utility ===== */
.mt-0{margin-top:0}
.center{text-align:center}
.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}

/* ===== Responsive ===== */
@media (max-width:980px){
  .hero{grid-template-columns:1fr;padding:44px 20px 30px}
  .hero h1{font-size:42px}
  .steps-media{grid-template-columns:1fr}
  .about-grid{grid-template-columns:1fr}
  .checklist-wrap{grid-template-columns:1fr}
  .grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .service-long{grid-template-columns:1fr}
  .rule-box{grid-template-columns:1fr}
  .week-wrap{grid-template-columns:1fr}
  .legal-layout{grid-template-columns:1fr}
  .legal-nav{position:static}
  .contact-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .article-row{grid-template-columns:1fr}
  .article-points{grid-template-columns:1fr}
}
@media (max-width:720px){
  .main-nav{display:none}
  .nav-toggle{display:flex}
  body.nav-open .main-nav{display:flex;position:fixed;top:64px;left:0;right:0;background:#fff;flex-direction:column;padding:14px;border-bottom:1px solid var(--line);margin-left:0;z-index:50}
  .hero h1{font-size:34px}
  .grid-3,.grid-4,.grid-2,.good-bad,.product-grid{grid-template-columns:1fr}
  .section-pad,.page-head,.band .container{padding-left:18px;padding-right:18px}
  .cta-band{padding:32px}
  .form-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;padding:44px 20px 20px}
  .cart-drawer{width:100%}
  .cookie-banner{left:12px;right:12px;max-width:none;bottom:12px}
  h1{font-size:34px !important}
  .section-head h2,h2.h-38{font-size:28px !important}
}
