/* ============================================================
   Birlik Multi Trading — Design System
   Deep navy, teal accent, premium minimal.
   ============================================================ */

:root {
  /* Brand */
  --navy:      #081B3A;   /* page background */
  --navy-2:    #0A2046;   /* elevated band   */
  --navy-3:    #0D2750;   /* card base       */
  --teal:      #2EC4B6;
  --teal-2:    #38D9C9;   /* bright          */
  --teal-deep: #1B9A8E;
  --cream:     #F4F6F2;   /* light section   */
  --cream-2:   #ECEFE9;
  --ink:       #0A1A33;   /* text on cream   */
  --ink-soft:  #45556B;

  /* On-dark text */
  --white:     #FFFFFF;
  --text:      rgba(236, 242, 250, 0.94);
  --muted:     rgba(206, 219, 238, 0.62);
  --muted-2:   rgba(206, 219, 238, 0.42);

  /* Lines & glass */
  --line:      rgba(255, 255, 255, 0.10);
  --line-2:    rgba(255, 255, 255, 0.18);
  --glass:     linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018));
  --glass-2:   linear-gradient(160deg, rgba(56,217,201,0.10), rgba(255,255,255,0.015));

  /* Accent gradient (themeable) */
  --accent:        var(--teal);
  --accent-grad:   linear-gradient(135deg, #38D9C9 0%, #2EC4B6 55%, #1FB0A3 100%);
  --accent-glow:   rgba(46, 196, 182, 0.35);

  /* Radii */
  --r:    22px;
  --r-lg: 30px;
  --r-sm: 14px;
  --pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.18);
  --shadow:    0 18px 50px -22px rgba(0,0,0,0.65);
  --shadow-lg: 0 40px 90px -30px rgba(0,0,0,0.7);

  /* Type */
  --display: "Schibsted Grotesk", system-ui, sans-serif;
  --body:    "Hanken Grotesk", system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(76px, 11vw, 148px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
/* Empty image-slot fill so placeholders read as image areas on dark */
image-slot { background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)); border-radius: var(--r-sm); color: var(--muted-2); }
.section--light image-slot { background: linear-gradient(160deg, rgba(10,26,51,0.06), rgba(10,26,51,0.02)); }
a { color: inherit; text-decoration: none; }
::selection { background: var(--teal); color: #04122a; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(54px, 7vw, 92px); }

.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-2);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: linear-gradient(90deg, var(--teal-2), transparent);
}
.section--light .eyebrow { color: var(--teal-deep); }
.section--light .eyebrow::before { background: linear-gradient(90deg, var(--teal-deep), transparent); }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; letter-spacing: -0.025em; line-height: 1.04; margin: 0; }

.h-display { font-size: clamp(2.7rem, 7vw, 5.1rem); letter-spacing: -0.035em; line-height: 1.0; }
.h-section { font-size: clamp(2rem, 4.6vw, 3.35rem); }
.h-sub     { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }

.lead { font-size: clamp(1.06rem, 1.7vw, 1.32rem); color: var(--muted); line-height: 1.6; max-width: 56ch; }
.muted { color: var(--muted); }
.teal { color: var(--teal-2); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: var(--body); font-weight: 600; font-size: 1rem;
  padding: 16px 28px; border-radius: var(--pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary {
  background: var(--accent-grad); color: #042018;
  box-shadow: 0 14px 34px -14px var(--accent-glow);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -16px var(--accent-glow); }
.btn--ghost { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--teal); background: rgba(46,196,182,0.10); transform: translateY(-3px); }
.btn--light { background: var(--ink); color: #fff; }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--sm { padding: 12px 20px; font-size: 0.92rem; }
.btn--block { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal-2); font-weight: 600; font-size: 0.98rem;
  transition: gap .3s var(--ease), color .3s;
}
.textlink svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.textlink:hover { gap: 12px; }
.textlink:hover svg { transform: translateX(3px); }

/* ---------- Glass card ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--r);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: var(--shadow);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 22, 44, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.brand-name { font-family: var(--display); font-weight: 600; font-size: 1.28rem; letter-spacing: -0.02em; }
.brand-name b { color: var(--teal-2); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 0.96rem; color: var(--muted); font-weight: 500; transition: color .25s; position: relative; white-space: nowrap; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(124px, 16vw, 188px); padding-bottom: clamp(60px, 8vw, 96px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; z-index: 0; inset: -20% -10% auto auto;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(46,196,182,0.20), transparent 62%);
  filter: blur(20px); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; z-index: 0; left: -14%; bottom: -28%;
  width: 52vw; height: 52vw; max-width: 640px; max-height: 640px;
  background: radial-gradient(circle, rgba(20,60,120,0.5), transparent 64%);
  filter: blur(10px); pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 12px; border-radius: var(--pill);
  background: rgba(255,255,255,0.045); border: 1px solid var(--line-2);
  font-size: 0.82rem; color: var(--muted); margin-bottom: 26px; font-weight: 500;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-2); box-shadow: 0 0 0 4px rgba(56,217,201,0.18); }
.hero h1 { margin-bottom: 24px; }
.hero h1 .grad { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 26px; }
.hero-fine { font-size: 0.86rem; color: var(--muted-2); display: flex; align-items: center; gap: 9px; }
.hero-fine svg { width: 16px; height: 16px; color: var(--teal-2); flex: none; }

/* Hero visual collage */
.hero-visual { position: relative; }
.collage { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.collage image-slot { width: 100%; aspect-ratio: 1 / 1; height: auto; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 18px; }
.collage .c2, .collage .c4 { transform: translateY(34px); }
.float-chip {
  position: absolute; z-index: 3;
  background: rgba(8,22,44,0.78); border: 1px solid var(--line-2);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.float-chip.tl { top: -16px; left: -26px; }
.float-chip.br { bottom: 18px; right: -20px; }
.float-chip .big { font-family: var(--display); font-size: 1.5rem; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.float-chip .lbl { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }
.float-chip .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--accent-grad); display: grid; place-items: center; color: #04201a; flex: none; }
.float-chip .ic svg { width: 21px; height: 21px; }

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 26px clamp(14px, 2.4vw, 30px); border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: none; }
.trust-item .ti { width: 40px; height: 40px; flex: none; border-radius: 11px; display: grid; place-items: center; background: rgba(46,196,182,0.12); color: var(--teal-2); }
.trust-item .ti svg { width: 22px; height: 22px; }
.trust-item .tt { font-family: var(--display); font-weight: 600; font-size: 1.02rem; letter-spacing: -0.01em; line-height: 1.2; }
.trust-item .ts { font-size: 0.8rem; color: var(--muted-2); }

/* ---------- Generic grid ---------- */
.grid { display: grid; gap: clamp(18px, 2vw, 26px); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Trust cards ---------- */
.feature-card { padding: 36px 32px 34px; border-radius: var(--r); position: relative; overflow: hidden; }
.feature-card .fc-ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--glass-2); border: 1px solid var(--line); color: var(--teal-2); margin-bottom: 26px; }
.feature-card .fc-ic svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.feature-card p { color: var(--muted); margin: 0; font-size: 1rem; }
.feature-card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(56,217,201,0.5), transparent); opacity: 0; transition: opacity .4s; }
.feature-card:hover::after { opacity: 1; }

/* ---------- Categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat-card {
  display: flex; flex-direction: column; gap: 18px; padding: 28px 24px;
  border-radius: var(--r); background: var(--glass); border: 1px solid var(--line);
  transition: transform .4s var(--ease), border-color .35s, background .35s;
  min-height: 196px; justify-content: space-between;
}
.cat-card:hover { transform: translateY(-6px); border-color: rgba(56,217,201,0.4); background: var(--glass-2); }
.cat-card .cat-ic { width: 52px; height: 52px; color: var(--teal-2); }
.cat-card .cat-ic svg { width: 100%; height: 100%; stroke-width: 1.4; }
.cat-card h3 { font-size: 1.18rem; letter-spacing: -0.01em; }
.cat-card .cat-go { display: inline-flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--muted); font-weight: 500; transition: color .3s, gap .3s; }
.cat-card .cat-go svg { width: 15px; height: 15px; transition: transform .3s; }
.cat-card:hover .cat-go { color: var(--teal-2); }
.cat-card:hover .cat-go svg { transform: translateX(3px); }

/* ---------- Light section ---------- */
.section--light { background: var(--cream); color: var(--ink); }
.section--light .lead, .section--light .muted { color: var(--ink-soft); }
.section--light h1, .section--light h2, .section--light h3 { color: var(--ink); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 36px); margin-top: 56px; }
.step { position: relative; }
.step .step-n { font-family: var(--display); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.14em; color: var(--teal-deep); margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.step .step-n span { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: #fff; border: 1px solid var(--cream-2); box-shadow: 0 6px 18px -10px rgba(10,26,51,0.3); color: var(--teal-deep); }
.step .step-n span svg { width: 23px; height: 23px; }
.step h3 { font-size: 1.32rem; margin-bottom: 12px; letter-spacing: -0.015em; }
.step p { color: var(--ink-soft); margin: 0; font-size: 1.01rem; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 23px; right: -18px; width: 36px; height: 1px; background: repeating-linear-gradient(90deg, var(--teal-deep) 0 5px, transparent 5px 11px); opacity: 0.5; }
.source-note { margin-top: 52px; padding: 24px 28px; border-radius: var(--r); background: #fff; border: 1px solid var(--cream-2); display: flex; gap: 18px; align-items: center; box-shadow: 0 12px 30px -20px rgba(10,26,51,0.25); }
.source-note .sn-ic { width: 46px; height: 46px; flex: none; border-radius: 13px; background: rgba(27,154,142,0.12); color: var(--teal-deep); display: grid; place-items: center; }
.source-note .sn-ic svg { width: 24px; height: 24px; }
.source-note p { margin: 0; font-size: 1rem; color: var(--ink-soft); }
.source-note b { color: var(--ink); font-weight: 700; }

/* ---------- Authenticity band ---------- */
.guarantee { position: relative; overflow: hidden; }
.guarantee-inner {
  border-radius: var(--r-lg); padding: clamp(44px, 6vw, 78px) clamp(28px, 5vw, 72px);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(46,196,182,0.16), transparent 55%),
    linear-gradient(160deg, #0C2452, #081B3A);
  border: 1px solid var(--line-2);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(30px, 4vw, 56px); align-items: center;
  position: relative; overflow: hidden;
}
.guarantee-inner::before { content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(56,217,201,0.18); }
.guarantee-inner::after { content: ""; position: absolute; right: -10px; top: -10px; width: 180px; height: 180px; border-radius: 50%; border: 1px solid rgba(56,217,201,0.12); }
.guarantee h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); margin-bottom: 18px; }
.guarantee h2 .grad { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.guarantee p { color: var(--muted); margin: 0; max-width: 46ch; }
.seal { position: relative; z-index: 1; justify-self: center; width: clamp(180px, 22vw, 230px); height: clamp(180px, 22vw, 230px); border-radius: 50%; display: grid; place-items: center; text-align: center; background: var(--glass); border: 1px solid var(--line-2); box-shadow: var(--shadow-lg); }
.seal .seal-in { width: 78%; height: 78%; border-radius: 50%; border: 1.5px dashed rgba(56,217,201,0.4); display: grid; place-items: center; gap: 6px; align-content: center; }
.seal svg { width: 46px; height: 46px; color: var(--teal-2); }
.seal .seal-t { font-family: var(--display); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); }
.seal .seal-s { font-size: 0.68rem; color: var(--muted-2); letter-spacing: 0.08em; }

/* ---------- Why choose ---------- */
.why-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.why-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 4px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-top: 1px solid var(--line); }
.why-list li:last-child { border-bottom: 1px solid var(--line); }
.why-list .wc { width: 28px; height: 28px; flex: none; border-radius: 9px; background: rgba(46,196,182,0.14); color: var(--teal-2); display: grid; place-items: center; margin-top: 1px; }
.why-list .wc svg { width: 16px; height: 16px; }
.why-list .wt { font-family: var(--display); font-weight: 600; font-size: 1.08rem; letter-spacing: -0.01em; }
.why-list .wd { display: block; font-family: var(--body); font-weight: 400; font-size: 0.92rem; color: var(--muted); letter-spacing: 0; margin-top: 2px; }
.why-visual { position: relative; }
.why-visual image-slot { width: 100%; aspect-ratio: 4/5; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.why-stat { position: absolute; left: -24px; bottom: 30px; background: rgba(8,22,44,0.82); border: 1px solid var(--line-2); backdrop-filter: blur(14px); border-radius: 18px; padding: 18px 22px; box-shadow: var(--shadow-lg); }
.why-stat .n { font-family: var(--display); font-size: 2.1rem; font-weight: 600; letter-spacing: -0.03em; line-height: 1; color: var(--teal-2); }
.why-stat .l { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

/* ---------- Products ---------- */
.prod-card { border-radius: var(--r); overflow: hidden; background: var(--glass); border: 1px solid var(--line); transition: transform .4s var(--ease), border-color .35s; display: flex; flex-direction: column; }
.prod-card:hover { transform: translateY(-6px); border-color: rgba(56,217,201,0.35); }
.prod-media { position: relative; }
.prod-media image-slot { width: 100%; aspect-ratio: 1 / 1; }
.prod-badge { position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: var(--pill); background: rgba(8,22,44,0.82); border: 1px solid var(--line-2); backdrop-filter: blur(10px); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.02em; color: var(--text); white-space: nowrap; }
.prod-badge .pb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-2); }
.prod-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prod-cat { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--teal-2); font-weight: 600; }
.prod-name { font-family: var(--display); font-size: 1.22rem; font-weight: 600; letter-spacing: -0.02em; }
.prod-meta { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; }
.prod-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.prod-tag { font-size: 0.8rem; font-weight: 600; color: var(--teal-2); white-space: nowrap; }
.prod-price { display: flex; align-items: baseline; gap: 9px; font-family: var(--display); white-space: nowrap; }
.prod-price .now { font-size: 1.16rem; font-weight: 600; letter-spacing: -0.02em; color: var(--text); }
.prod-price s { font-size: 0.86rem; font-weight: 500; color: var(--muted-2); text-decoration-thickness: 1px; }
.arrivals-note { margin: 44px auto 0; max-width: 780px; text-align: center; font-size: 0.86rem; line-height: 1.65; color: var(--muted-2); }
.arrivals-note strong { color: var(--muted); font-weight: 600; }
.prod-card .btn { padding: 11px 18px; font-size: 0.88rem; }

/* ---------- Reviews ---------- */
.review-card { padding: 32px 30px; border-radius: var(--r); display: flex; flex-direction: column; gap: 20px; }
.stars { display: flex; gap: 3px; color: var(--teal-2); }
.stars svg { width: 18px; height: 18px; }
.review-card p { margin: 0; font-size: 1.06rem; line-height: 1.62; color: var(--text); font-weight: 400; }
.review-who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.review-av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 600; font-size: 1.02rem; color: #04201a; background: var(--accent-grad); flex: none; }
.review-who .rn { font-family: var(--display); font-weight: 600; font-size: 1rem; letter-spacing: -0.01em; }
.review-who .rl { font-size: 0.82rem; color: var(--muted-2); }

/* ---------- Instagram ---------- */
.insta { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 4vw, 56px); align-items: center; }
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.insta-grid image-slot { width: 100%; aspect-ratio: 1/1; border: 1px solid var(--line); }
.insta-handle { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 600; font-size: 1.16rem; margin: 18px 0 26px; }
.insta-handle svg { width: 24px; height: 24px; color: var(--teal-2); }

/* ---------- Visit us ---------- */
.visit { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.visit-info { display: flex; flex-direction: column; gap: 22px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-row .ir-ic { width: 44px; height: 44px; flex: none; border-radius: 12px; background: rgba(46,196,182,0.12); color: var(--teal-2); display: grid; place-items: center; }
.info-row .ir-ic svg { width: 22px; height: 22px; }
.info-row .ir-l { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted-2); margin-bottom: 4px; }
.info-row .ir-v { font-size: 1.04rem; color: var(--text); line-height: 1.5; }
.info-row .ir-v a:hover { color: var(--teal-2); }
.map-wrap { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); min-height: 340px; position: relative; background: var(--navy-2); box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(0.2) contrast(1.05); display: block; }
.franchise { margin-top: 8px; border-radius: var(--r); padding: 30px 32px; background: var(--glass-2); border: 1px solid var(--line-2); display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between; }
.franchise .fr-t { font-family: var(--display); font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; }
.franchise p { margin: 0; color: var(--muted); max-width: 52ch; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin-inline: auto; margin-top: 48px; }
.faq { border-top: 1px solid var(--line); }
.faq:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 26px 8px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--display); font-weight: 600; font-size: clamp(1.1rem, 1.8vw, 1.32rem); letter-spacing: -0.015em; transition: color .3s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--teal-2); }
.faq .faq-ic { width: 32px; height: 32px; flex: none; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: transform .4s var(--ease), background .3s, border-color .3s; }
.faq .faq-ic svg { width: 16px; height: 16px; color: var(--teal-2); }
.faq[open] .faq-ic { transform: rotate(45deg); background: rgba(46,196,182,0.14); border-color: transparent; }
.faq-body { overflow: hidden; }
.faq-body p { margin: 0; padding: 0 50px 28px 8px; color: var(--muted); font-size: 1.02rem; line-height: 1.65; }
.faq[open] .faq-body { animation: faqOpen .45s var(--ease); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .inner { border-radius: var(--r-lg); padding: clamp(46px, 6vw, 86px) var(--gutter); background: radial-gradient(120% 160% at 50% 0%, rgba(46,196,182,0.14), transparent 60%), linear-gradient(160deg, #0C2452, #081B3A); border: 1px solid var(--line-2); }
.cta-band h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: 18px; }
.cta-band .lead { margin: 0 auto 34px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 88px); padding-bottom: 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(30px, 4vw, 64px); padding-bottom: 52px; border-bottom: 1px solid var(--line); }
.footer-brand img { height: 52px; margin-bottom: 20px; }
.footer-brand p { color: var(--muted); max-width: 34ch; margin: 0 0 22px; }
.foot-soc { display: flex; gap: 12px; }
.foot-soc a { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--muted); transition: color .3s, border-color .3s, background .3s, transform .3s; }
.foot-soc a:hover { color: var(--teal-2); border-color: var(--teal); background: rgba(46,196,182,0.1); transform: translateY(-3px); }
.foot-soc a svg { width: 20px; height: 20px; }
.foot-col h4 { font-family: var(--display); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted-2); margin-bottom: 20px; font-weight: 600; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.foot-col a { color: var(--muted); font-size: 0.98rem; transition: color .25s; }
.foot-col a:hover { color: var(--teal-2); }
.foot-disclaimer { font-size: 0.8rem; color: var(--muted-2); line-height: 1.6; max-width: 92ch; margin: 30px 0 22px; }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: 0.86rem; color: var(--muted-2); }
.foot-bottom .made { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Reveal animation (capture-safe: never hides via opacity) ---------- */
[data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  [data-reveal].in { animation: revealUp .75s var(--ease) both; }
  [data-reveal-delay="1"].in { animation-delay: .09s; }
  [data-reveal-delay="2"].in { animation-delay: .18s; }
  [data-reveal-delay="3"].in { animation-delay: .27s; }
  [data-reveal-delay="4"].in { animation-delay: .36s; }
}
@keyframes revealUp { from { transform: translateY(24px); } to { transform: none; } }

/* ---------- Mobile menu ---------- */
.mobile-menu { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin-inline: auto; width: 100%; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: left; }
  .seal { justify-self: start; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { max-width: 460px; }
  .insta { grid-template-columns: 1fr; }
  .visit { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-cta .nav-toggle { display: inline-grid; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-left: 1px solid var(--line); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .trust-item:nth-child(3) { border-left: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .step:not(:last-child)::after { display: none; }
  .float-chip.tl { left: 8px; top: 8px; }
  .float-chip.br { right: 8px; bottom: 8px; }
  .why-stat { left: 8px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-name { display: none; }
}

/* ---------- Small phones: de-cramp ---------- */
@media (max-width: 560px) {
  :root { --gutter: 18px; }
  .hero { padding-top: 104px; }
  .float-chip { padding: 9px 12px; gap: 9px; border-radius: 14px; }
  .float-chip .ic { width: 30px; height: 30px; border-radius: 9px; }
  .float-chip .ic svg { width: 17px; height: 17px; }
  .float-chip .ic span { font-size: 16px !important; }
  .float-chip .big { font-size: 1.18rem; }
  .float-chip .lbl { font-size: 0.64rem; }
  .collage { gap: 12px; }
  .collage .c2, .collage .c4 { transform: none; }
  .float-chip { display: none; }
  .trust-row { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(2), .trust-item:nth-child(3) { border-left: none; }
  .trust-item:nth-child(2), .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .trust-item { padding: 20px 6px; }
  .seal { width: 168px; height: 168px; }
  .review-card, .feature-card { padding: 28px 24px; }
}

/* ---------- Mobile slide menu ---------- */
.m-nav { position: fixed; inset: 0; z-index: 60; background: rgba(8,22,44,0.97); backdrop-filter: blur(16px); display: flex; flex-direction: column; padding: 28px var(--gutter); transform: translateY(-100%); transition: transform .5s var(--ease); }
.m-nav.open { transform: translateY(0); }
.m-nav-head { display: flex; align-items: center; justify-content: space-between; height: 48px; margin-bottom: 30px; }
.m-nav a.m-link { font-family: var(--display); font-weight: 600; font-size: 1.7rem; letter-spacing: -0.02em; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--text); }
.m-nav a.m-link:active { color: var(--teal-2); }
.m-nav .m-cta { margin-top: 28px; }
.icon-btn { width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(255,255,255,0.03); display: grid; place-items: center; color: var(--text); cursor: pointer; }
.icon-btn svg { width: 22px; height: 22px; }
