/* ============================
   GORN.IMPORT — Corporate Pro
   ============================ */

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

:root {
  --navy:       #0D2137;
  --navy-mid:   #163352;
  --navy-light: #1E4370;
  --red:        #C8392D;
  --red-dim:    rgba(200, 57, 45, 0.08);
  --gold:       #C9A24A;
  --bg:         #FFFFFF;
  --surface:    #F4F6F9;
  --surface2:   #E8EDF3;
  --text:       #0D1526;
  --muted:      #5E7191;
  --muted2:     #94A3B8;
  --border:     rgba(13, 33, 55, 0.1);
  --border2:    rgba(13, 33, 55, 0.06);
  --font-h:     'Montserrat', sans-serif;
  --font-b:     'Inter', sans-serif;
  --ease:       cubic-bezier(0.25, 1, 0.5, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
body.no-scroll { overflow: hidden; }

/* ===== CURSOR ===== */
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--red); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease);
}
.cursor-follower {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(200,57,45,0.4); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .4s var(--ease), height .4s var(--ease), border-color .3s;
}
.cursor.hovered { width: 14px; height: 14px; }
.cursor-follower.hovered { width: 60px; height: 60px; border-color: rgba(200,57,45,.7); }
.cursor.clicking { transform: translate(-50%,-50%) scale(0.7); }

/* ===== PAGE REVEAL ===== */
.page-reveal {
  position: fixed; inset: 0; background: var(--navy);
  z-index: 8000; transform-origin: bottom; transform: scaleY(1);
  transition: transform .7s var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.page-reveal.done { transform: scaleY(0); transform-origin: top; }
.page-reveal__logo {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--red);
  opacity: 0;
  animation: logoFadeIn .35s ease .1s forwards;
}
.page-reveal__logo span { color: var(--red); opacity: .5; }
@keyframes logoFadeIn {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* ===== BASE ===== */
h1,h2,h3,h4 { font-family: var(--font-h); line-height: 1.1; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 4px;
  font-family: var(--font-b); font-weight: 600; font-size: 14px;
  transition: all .3s var(--ease); cursor: none; border: none; outline: none;
  letter-spacing: .02em;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: #a82e23; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,57,45,.3); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,33,55,.25); }
.btn--outline { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--outline-white { border: 2px solid rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn--large { padding: 18px 40px; font-size: 15px; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section { padding: 100px 0; }
.section--navy { background: var(--navy); color: #fff; }
.section--surface { background: var(--surface); }
.accent-red { color: var(--red); }
.accent-gold { color: var(--gold); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0; background: transparent;
  transition: background .4s, backdrop-filter .4s, border-color .4s, padding .3s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.96); backdrop-filter: blur(20px);
  border-color: var(--border); padding: 14px 0;
  box-shadow: 0 2px 20px rgba(13,33,55,.08);
}
.nav.nav--dark { background: var(--navy); border-color: rgba(255,255,255,.1); }
.nav.nav--dark .nav__links a { color: rgba(255,255,255,.65); }
.nav.nav--dark .nav__links a:hover { color: #fff; }
.nav.nav--dark .nav__logo { color: #fff; }
.nav.nav--dark.scrolled {
  background: rgba(255,255,255,.97);
  border-color: var(--border);
}
.nav.nav--dark.scrolled .nav__logo { color: var(--navy); }
.nav.nav--dark.scrolled .nav__links a { color: var(--muted); }
.nav.nav--dark.scrolled .nav__links a:hover { color: var(--text); }
.nav.nav--dark.scrolled .nav__burger span { background: var(--navy); }
.nav.nav--dark.scrolled .btn--outline-white {
  border-color: var(--border);
  color: var(--navy);
}
.nav.nav--dark.scrolled .btn--outline-white:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.nav__logo { font-family: var(--font-h); font-weight: 800; font-size: 18px; letter-spacing: .04em; color: var(--navy); flex-shrink: 0; }
.nav__logo span { color: var(--red); }
.nav__logo--white { color: #fff; }
.nav__links { display: flex; gap: 36px; }
.nav__links a { font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: .03em; transition: color .3s; position: relative; }
.nav__links a::after { content:''; position:absolute; bottom:-2px; left:0; right:0; height:2px; background:var(--red); transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease); }
.nav__links a:hover, .nav__links a.active { color: var(--text); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }

.nav__burger { display:none; flex-direction:column; gap:5px; cursor:none; background:none; border:none; padding:4px; }
.nav__burger span { display:block; width:22px; height:2px; background:currentColor; transition:all .4s var(--ease); transform-origin:center; }
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__burger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  position:fixed; inset:0; background:var(--navy); z-index:90;
  display:flex; flex-direction:column; justify-content:center; align-items:center; gap:36px;
  opacity:0; pointer-events:none; transition:opacity .4s var(--ease);
}
.mobile-menu.open { opacity:1; pointer-events:all; }
.mobile-menu a { font-family:var(--font-h); font-size:clamp(28px,8vw,56px); font-weight:800; color:rgba(255,255,255,.45); transition:color .3s; }
.mobile-menu a:hover { color:#fff; }
.mobile-menu__email { font-family:var(--font-b) !important; font-size:14px !important; font-weight:400 !important; color:var(--muted2) !important; margin-top:8px; }

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  min-height: 100vh; display:flex; flex-direction:column; justify-content:center;
  padding-top: 88px; position:relative; overflow:hidden; color:#fff;
}
.hero__pattern {
  position:absolute; inset:0; pointer-events:none; opacity:.04;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,.5) 60px, rgba(255,255,255,.5) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,.5) 60px, rgba(255,255,255,.5) 61px);
}
.hero__red-bar { position:absolute; top:0; left:0; bottom:0; width:4px; background: var(--red); }
.hero__inner {
  max-width:1200px; margin:0 auto; padding:80px 48px;
  display:grid; grid-template-columns:1fr 440px; gap:80px; align-items:center; width:100%;
}
.hero__tag {
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(200,57,45,.15); border:1px solid rgba(200,57,45,.3);
  padding:7px 16px; border-radius:4px; margin-bottom:32px;
  font-size:11px; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.8);
}
.hero__tag-dot { width:6px; height:6px; background:var(--red); border-radius:50%; animation:blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero__title { font-size:clamp(40px,5vw,72px); font-weight:800; line-height:1.06; margin-bottom:28px; }
.hero__title span { color:var(--red); }
.hero__sub { font-size:16px; color:rgba(255,255,255,.65); max-width:480px; margin-bottom:44px; line-height:1.75; }
.hero__actions { display:flex; gap:16px; flex-wrap:wrap; align-items:center; }
.hero__scroll { position:absolute; bottom:36px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:10px; color:rgba(255,255,255,.3); font-size:10px; letter-spacing:.18em; text-transform:uppercase; }
.hero__scroll-line { width:1px; height:50px; background:linear-gradient(to bottom, rgba(255,255,255,.4), transparent); animation:scrollPulse 2.5s infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* Hero photo */
.hero__photo { position:relative; }
.hero__photo-frame {
  position:relative; border-radius:4px; overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.hero__photo-frame img { width:100%; display:block; aspect-ratio:3/4; object-fit:cover; object-position:top center; }
.hero__photo-placeholder {
  width:100%; aspect-ratio:3/4; background:var(--navy-mid);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:16px; color:rgba(255,255,255,.2);
}
.hero__photo-placeholder-letters { font-family:var(--font-h); font-size:72px; font-weight:800; letter-spacing:.1em; }
.hero__photo-placeholder-text { font-size:12px; letter-spacing:.15em; text-transform:uppercase; }
.hero__photo-badge {
  position:absolute; bottom:-20px; left:-20px;
  background:var(--red); color:#fff; border-radius:4px;
  padding:16px 20px; min-width:180px;
  box-shadow: 0 8px 32px rgba(200,57,45,.4);
}
.hero__photo-badge-num { font-family:var(--font-h); font-size:36px; font-weight:800; line-height:1; }
.hero__photo-badge-text { font-size:12px; color:rgba(255,255,255,.75); margin-top:2px; line-height:1.4; }
.hero__photo-badge2 {
  position:absolute; top:-20px; right:-20px;
  background:#fff; color:var(--navy); border-radius:4px;
  padding:16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.hero__photo-badge2-num { font-family:var(--font-h); font-size:28px; font-weight:800; line-height:1; color:var(--navy); }
.hero__photo-badge2-text { font-size:11px; color:var(--muted); margin-top:2px; line-height:1.4; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:28px 0;
}
.trust-bar__inner {
  max-width:1200px; margin:0 auto; padding:0 48px;
  display:flex; align-items:center; gap:48px; flex-wrap:wrap;
}
.trust-bar__label { font-size:11px; font-weight:600; letter-spacing:.15em; text-transform:uppercase; color:var(--muted2); white-space:nowrap; }
.trust-bar__items { display:flex; gap:40px; flex-wrap:wrap; align-items:center; flex:1; }
.trust-bar__item { font-size:13px; font-weight:600; color:var(--muted); transition:color .3s; }
.trust-bar__item:hover { color:var(--text); }
.trust-bar__sep { color:var(--border); font-size:20px; }

/* ===== MARQUEE ===== */
.marquee { padding:14px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); overflow:hidden; background:var(--surface); }
.marquee__track { display:flex; }
.marquee__content { display:flex; gap:48px; align-items:center; animation:marqueeScroll 35s linear infinite; white-space:nowrap; flex-shrink:0; padding-right:48px; font-size:11px; font-weight:600; color:var(--muted2); text-transform:uppercase; letter-spacing:.15em; }
.marquee__content .dot { color:var(--red); font-size:14px; }
.marquee__track:hover .marquee__content { animation-play-state:paused; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom:64px; }
.section-header--center { text-align:center; }
.section-eyebrow {
  display:inline-flex; align-items:center; gap:10px; margin-bottom:16px;
  font-size:11px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--red);
}
.section-eyebrow-line { width:28px; height:2px; background:var(--red); }
.section-title { font-size:clamp(28px,3.5vw,48px); font-weight:800; margin-bottom:16px; }
.section-sub { font-size:15px; color:var(--muted); max-width:560px; line-height:1.75; }
.section-header--center .section-sub { margin:0 auto; }
.section-header--light .section-title { color:#fff; }
.section-header--light .section-sub { color:rgba(255,255,255,.6); }
.section-header--light .section-eyebrow { color:var(--gold); }
.section-header--light .section-eyebrow-line { background:var(--gold); }

/* ===== BENEFITS ===== */
.benefits__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.benefit-card {
  padding:40px 36px; border:1px solid var(--border); border-radius:8px;
  background:var(--bg); position:relative; overflow:hidden;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.benefit-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(13,33,55,.1); border-color:var(--red); }
.benefit-card__accent { position:absolute; top:0; left:0; right:0; height:3px; background:var(--red); transform:scaleX(0); transform-origin:left; transition:transform .4s var(--ease); }
.benefit-card:hover .benefit-card__accent { transform:scaleX(1); }
.benefit-card__num { font-size:11px; font-weight:700; color:var(--muted2); letter-spacing:.1em; margin-bottom:32px; }
.benefit-card__icon { font-size:32px; margin-bottom:18px; display:block; }
.benefit-card h3 { font-size:17px; font-weight:700; margin-bottom:12px; line-height:1.3; }
.benefit-card p { font-size:13px; color:var(--muted); line-height:1.75; }

/* ===== ABOUT SPLIT ===== */
.about-split { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.about-split__photo { position:relative; }
.about-split__photo-frame {
  border-radius:4px; overflow:hidden; position:relative;
  box-shadow: 0 20px 60px rgba(13,33,55,.12);
}
.about-split__photo-frame img { width:100%; display:block; aspect-ratio:3/4; object-fit:cover; object-position:top center; }
.about-split__photo-placeholder {
  width:100%; aspect-ratio:3/4; background:var(--surface2);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:12px; color:var(--muted2);
}
.about-split__photo-placeholder-letters { font-family:var(--font-h); font-size:80px; font-weight:800; color:var(--border); }
.about-split__photo-badge {
  position:absolute; bottom:24px; right:-24px;
  background:var(--red); color:#fff; border-radius:4px; padding:18px 22px;
  box-shadow: 0 8px 24px rgba(200,57,45,.3);
}
.about-split__photo-badge-num { font-family:var(--font-h); font-size:32px; font-weight:800; }
.about-split__photo-badge-text { font-size:11px; color:rgba(255,255,255,.75); line-height:1.4; margin-top:2px; }
.about-split__tag { display:inline-flex; align-items:center; gap:8px; margin-bottom:16px; font-size:11px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--red); }
.about-split__name { font-size:clamp(28px,3vw,40px); font-weight:800; margin-bottom:6px; }
.about-split__role { font-size:14px; color:var(--muted); margin-bottom:28px; padding-bottom:28px; border-bottom:1px solid var(--border); }
.about-split__text p { font-size:15px; color:var(--muted); line-height:1.85; margin-bottom:20px; }
.about-split__text p strong { color:var(--text); }
.about-split__creds { margin-top:36px; display:flex; flex-direction:column; gap:12px; }
.about-split__cred { display:flex; gap:14px; align-items:flex-start; padding:16px 18px; border:1px solid var(--border); border-radius:6px; transition:border-color .3s, background .3s; }
.about-split__cred:hover { border-color:var(--red); background:var(--red-dim); }
.about-split__cred-icon { color:var(--red); font-size:16px; flex-shrink:0; margin-top:2px; }
.about-split__cred-text h4 { font-size:13px; font-weight:700; margin-bottom:3px; }
.about-split__cred-text p { font-size:12px; color:var(--muted); line-height:1.5; }

/* ===== SERVICES ===== */
.services__list { display:flex; flex-direction:column; border:1px solid var(--border); border-radius:8px; overflow:hidden; }
.service-item {
  display:grid; grid-template-columns:56px 1fr 44px; gap:32px; align-items:center;
  padding:28px 36px; background:var(--bg);
  border-bottom:1px solid var(--border);
  transition:background .3s, padding-left .4s var(--ease);
  text-decoration:none; color:inherit;
}
.service-item:last-child { border-bottom:none; }
.service-item:hover { background:var(--red-dim); padding-left:48px; }
.service-item:hover .service-item__arrow { transform:translateX(6px); color:var(--red); }
.service-item__num { font-size:11px; font-weight:700; color:var(--muted2); letter-spacing:.1em; }
.service-item__content h3 { font-size:18px; font-weight:700; margin-bottom:4px; }
.service-item__content p { font-size:13px; color:var(--muted); }
.service-item__arrow { font-size:20px; color:var(--muted2); transition:transform .4s var(--ease), color .3s; }

/* ===== CASES ===== */
.cases__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.case-card {
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
  border-radius:8px; padding:36px; position:relative; overflow:hidden;
  transition:background .3s, border-color .3s, transform .3s;
}
.case-card:hover { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.2); transform:translateY(-4px); }
.case-card__tag { font-size:10px; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--gold); margin-bottom:28px; display:block; }
.case-card__metric { font-family:var(--font-h); font-size:52px; font-weight:800; color:#fff; line-height:1; margin-bottom:4px; }
.case-card__metric span { color:var(--gold); }
.case-card__metric-label { font-size:13px; color:rgba(255,255,255,.5); margin-bottom:24px; }
.case-card h4 { font-size:16px; font-weight:700; color:#fff; margin-bottom:10px; }
.case-card p { font-size:13px; color:rgba(255,255,255,.5); line-height:1.7; }
.case-card__line { position:absolute; top:0; left:0; right:0; height:3px; background:var(--red); }

/* ===== STATS ===== */
.stats__grid { display:grid; grid-template-columns:repeat(4,1fr); }
.stat-item { display:flex; flex-direction:column; gap:8px; padding:52px 44px; border-right:1px solid rgba(255,255,255,.08); }
.stat-item:last-child { border-right:none; }
.stat-item__row { display:flex; align-items:baseline; gap:2px; }
.stat-item__num { font-family:var(--font-h); font-size:clamp(40px,4vw,64px); font-weight:800; color:#fff; line-height:1; }
.stat-item__unit { font-family:var(--font-h); font-size:clamp(20px,2.2vw,32px); color:var(--red); font-weight:800; }
.stat-item__label { font-size:13px; color:rgba(255,255,255,.5); line-height:1.5; }

/* ===== PROCESS ===== */
.process__steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; margin-top:64px; }
.process__steps::before { content:''; position:absolute; top:28px; left:calc(12.5% + 28px); right:calc(12.5% + 28px); height:2px; background:var(--border); z-index:0; }
.process__step { display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 24px; }
.process__step-icon {
  width:56px; height:56px; border-radius:50%;
  background:var(--bg); border:2px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-h); font-size:18px; font-weight:800; color:var(--navy);
  margin-bottom:24px; position:relative; z-index:1;
  transition:background .3s, border-color .3s, color .3s;
}
.process__step:hover .process__step-icon { background:var(--red); border-color:var(--red); color:#fff; }
.process__step h4 { font-size:16px; font-weight:700; margin-bottom:10px; }
.process__step p { font-size:13px; color:var(--muted); line-height:1.7; }

/* ===== SUPPLIER PROMO ===== */
.supplier-promo { display:flex; align-items:center; gap:32px; background:#fff; border:1px solid rgba(13,33,55,.08); border-radius:12px; padding:40px 48px; box-shadow:0 4px 24px rgba(13,33,55,.06); }
.supplier-promo__icon { flex-shrink:0; width:72px; height:72px; background:var(--navy); border-radius:12px; display:flex; align-items:center; justify-content:center; color:var(--gold); }
.supplier-promo__text { flex:1; }
.supplier-promo__text h3 { font-family:var(--font-h); font-size:20px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.supplier-promo__text p { font-size:15px; color:var(--muted); line-height:1.65; }
@media (max-width:768px) { .supplier-promo { flex-direction:column; padding:28px 24px; text-align:center; } }

/* ===== CTA BANNER ===== */
.cta-banner { background:var(--red); padding:100px 0; text-align:center; color:#fff; position:relative; overflow:hidden; }
.cta-banner::before { content:''; position:absolute; top:-100px; left:-100px; width:400px; height:400px; border-radius:50%; background:rgba(255,255,255,.05); }
.cta-banner::after { content:''; position:absolute; bottom:-80px; right:-80px; width:300px; height:300px; border-radius:50%; background:rgba(0,0,0,.08); }
.cta-banner__inner { position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; gap:24px; }
.cta-banner__title { font-size:clamp(28px,4.5vw,60px); font-weight:800; }
.cta-banner__sub { font-size:16px; color:rgba(255,255,255,.75); line-height:1.7; }

/* ===== FAQ ===== */
.faq__list { display:flex; flex-direction:column; }
.faq__item { border-top:1px solid var(--border); }
.faq__item:last-child { border-bottom:1px solid var(--border); }
.faq__question { display:flex; justify-content:space-between; align-items:center; padding:24px 0; cursor:none; gap:40px; }
.faq__question h4 { font-size:16px; font-weight:700; }
.faq__icon { width:32px; height:32px; border:2px solid var(--border); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:18px; color:var(--red); flex-shrink:0; transition:transform .4s var(--ease), background .3s, border-color .3s; }
.faq__item.open .faq__icon { transform:rotate(45deg); background:var(--red); color:#fff; border-color:var(--red); }
.faq__answer { max-height:0; overflow:hidden; transition:max-height .5s var(--ease); }
.faq__answer-inner { padding-bottom:24px; font-size:14px; color:var(--muted); line-height:1.8; max-width:680px; }

/* ===== FOOTER ===== */
.footer { background:var(--navy); color:#fff; padding:72px 0 40px; }
.footer__inner { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:60px; margin-bottom:60px; }
.footer__brand p { font-size:13px; color:rgba(255,255,255,.4); margin-top:16px; line-height:1.7; max-width:240px; }
.footer__col h5 { font-size:11px; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:rgba(255,255,255,.3); margin-bottom:20px; }
.footer__col a { display:block; font-size:14px; color:rgba(255,255,255,.55); margin-bottom:12px; transition:color .3s; }
.footer__col a:hover { color:#fff; }
.footer__col a.accent { color:var(--gold); }
.footer__bottom { border-top:1px solid rgba(255,255,255,.08); padding-top:28px; display:flex; justify-content:space-between; align-items:center; font-size:12px; color:rgba(255,255,255,.25); }

/* ===== PAGE HERO ===== */
.page-hero { background:var(--navy); color:#fff; padding:180px 0 100px; position:relative; overflow:hidden; border-bottom:none; }
.page-hero__pattern { position:absolute; inset:0; pointer-events:none; opacity:.04; background-image:repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,.5) 60px, rgba(255,255,255,.5) 61px), repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,.5) 60px, rgba(255,255,255,.5) 61px); }
.page-hero__red-bar { position:absolute; top:0; left:0; bottom:0; width:4px; background:var(--red); }
.page-hero__eyebrow { display:inline-flex; align-items:center; gap:10px; margin-bottom:20px; font-size:11px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.5); }
.page-hero__eyebrow-line { width:24px; height:2px; background:var(--red); }
.page-hero__title { font-size:clamp(40px,5.5vw,80px); font-weight:800; line-height:1.06; color:#fff; }
.page-hero__title span { color:var(--red); }
.page-hero__title .line { overflow:hidden; display:block; padding-bottom:.05em; }
.page-hero__sub { font-size:16px; color:rgba(255,255,255,.55); max-width:560px; margin-top:24px; line-height:1.8; }

/* ===== TIMELINE ===== */
.timeline__list { margin-top:64px; display:flex; flex-direction:column; position:relative; }
.timeline__list::before { content:''; position:absolute; left:100px; top:0; bottom:0; width:2px; background:var(--border); }
.timeline__item { display:grid; grid-template-columns:100px 48px 1fr; gap:0 24px; align-items:start; padding-bottom:52px; }
.timeline__item:last-child { padding-bottom:0; }
.timeline__year { font-family:var(--font-h); font-size:14px; font-weight:800; color:var(--red); padding-top:2px; text-align:right; }
.timeline__dot { display:flex; justify-content:center; padding-top:6px; }
.timeline__dot::before { content:''; width:10px; height:10px; background:var(--red); border-radius:50%; flex-shrink:0; }
.timeline__body h4 { font-size:16px; font-weight:700; margin-bottom:8px; }
.timeline__body p { font-size:13px; color:var(--muted); line-height:1.75; }

/* ===== PARTNERS ===== */
.partners__grid { display:grid; grid-template-columns:repeat(5,1fr); gap:1px; background:var(--border); margin-top:56px; border-radius:8px; overflow:hidden; }
.partner-card { background:var(--bg); padding:32px 20px; display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center; transition:background .3s; }
.partner-card:hover { background:var(--surface); }
.partner-card__flag { font-size:30px; }
.partner-card__name { font-size:11px; font-weight:600; color:var(--muted2); letter-spacing:.06em; }

/* ===== CONTACT ===== */
.contact__grid { display:grid; grid-template-columns:1fr 1.2fr; gap:80px; align-items:start; }
.contact__info { display:flex; flex-direction:column; gap:40px; }
.contact__info-item h4 { font-size:10px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--muted2); margin-bottom:10px; }
.contact__info-item a { font-family:var(--font-h); font-size:18px; font-weight:800; color:var(--text); transition:color .3s; }
.contact__info-item a:hover { color:var(--red); }
.contact__info-item p { font-size:13px; color:var(--muted); margin-top:4px; }
.contact__form-wrap { background:var(--surface); border-radius:12px; padding:44px; }
.contact__form-title { font-size:24px; font-weight:800; margin-bottom:6px; }
.contact__form-sub { font-size:13px; color:var(--muted); margin-bottom:32px; line-height:1.7; }
.form-group { display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
.form-group label { font-size:11px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }
.form-group input, .form-group textarea, .form-group select {
  background:#fff; border:1.5px solid var(--border); border-radius:6px;
  padding:13px 16px; color:var(--text); font-family:var(--font-b); font-size:14px;
  outline:none; transition:border-color .3s, box-shadow .3s; cursor:none; appearance:none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color:var(--muted2); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color:var(--red); box-shadow:0 0 0 3px rgba(200,57,45,.1); }
.form-group textarea { resize:vertical; min-height:120px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.contact__promise { background:#fff; border:1px solid var(--border); border-radius:8px; padding:20px; display:flex; gap:14px; align-items:flex-start; margin-top:24px; }
.contact__promise-icon { color:var(--red); font-size:18px; flex-shrink:0; }
.contact__promise-text h4 { font-size:13px; font-weight:700; margin-bottom:4px; }
.contact__promise-text p { font-size:12px; color:var(--muted); line-height:1.6; }

/* ===== SERVICE CARDS DETAIL ===== */
.services-grid { display:flex; flex-direction:column; gap:2px; }
.service-card {
  background:var(--bg); padding:52px 52px; display:grid; grid-template-columns:56px 1fr auto;
  gap:40px; align-items:start; border:1px solid var(--border); border-radius:0;
  position:relative; transition:background .3s;
}
.service-card:first-child { border-radius:8px 8px 0 0; }
.service-card:last-child { border-radius:0 0 8px 8px; }
.service-card::before { content:''; position:absolute; left:0; top:0; bottom:0; width:3px; background:var(--red); transform:scaleY(0); transform-origin:bottom; transition:transform .5s var(--ease); border-radius:3px 0 0 3px; }
.service-card:hover { background:var(--red-dim); }
.service-card:hover::before { transform:scaleY(1); }
.service-card__num { font-size:11px; font-weight:700; color:var(--muted2); letter-spacing:.1em; padding-top:6px; }
.service-card__body h3 { font-size:24px; font-weight:800; margin-bottom:14px; }
.service-card__body p { font-size:14px; color:var(--muted); line-height:1.8; margin-bottom:24px; }
.service-card__features { display:flex; flex-direction:column; gap:9px; }
.service-card__feature { display:flex; gap:12px; align-items:flex-start; font-size:13px; color:var(--muted); }
.service-card__feature::before { content:'✓'; color:var(--red); font-weight:700; flex-shrink:0; }
.service-card__price { text-align:right; flex-shrink:0; padding-top:4px; }
.service-card__price-label { font-size:10px; font-weight:600; color:var(--muted2); letter-spacing:.12em; text-transform:uppercase; display:block; margin-bottom:6px; }
.service-card__price-val { font-family:var(--font-h); font-size:14px; font-weight:800; color:var(--red); white-space:nowrap; }

/* Process */
.process { padding:100px 0; background:var(--surface); border-top:1px solid var(--border); }

/* Why contact */
.contact__why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:64px; }
.why-card { background:var(--bg); padding:36px; border:1px solid var(--border); border-radius:8px; transition:border-color .3s, transform .3s; }
.why-card:hover { border-color:var(--red); transform:translateY(-4px); }
.why-card__icon { font-size:28px; margin-bottom:18px; display:block; color:var(--red); }
.why-card h4 { font-size:16px; font-weight:700; margin-bottom:10px; }
.why-card p { font-size:13px; color:var(--muted); line-height:1.75; }

/* ===== ANIMATIONS ===== */
.reveal-up { opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); transition-delay:var(--delay,0s); }
.reveal-up.visible { opacity:1; transform:translateY(0); }
.reveal-word { display:inline-block; transform:translateY(110%); opacity:0; transition:transform .9s var(--ease), opacity .6s var(--ease); }
.reveal-word.visible { transform:translateY(0); opacity:1; }

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .hero__inner { grid-template-columns:1fr; padding:60px 48px; }
  .hero__photo { display:none; }
  .about-split { grid-template-columns:1fr; gap:60px; }
  .about-split__photo-frame { max-width:100%; }
  .about-split__photo-frame img { aspect-ratio:3/4; object-position:top center; }
  .about-split__photo-placeholder { aspect-ratio:3/4; }
  .about-split__photo-badge { right:0; bottom:0; }
  .contact__grid { grid-template-columns:1fr; }
  .service-card { grid-template-columns:44px 1fr; }
  .service-card__price { display:none; }
  .process__steps { grid-template-columns:repeat(2,1fr); gap:40px; }
  .process__steps::before { display:none; }
  .footer__inner { grid-template-columns:1fr 1fr; gap:40px; }
}
@media (max-width:768px) {
  .container { padding:0 24px; }
  .section { padding:72px 0; }
  .nav__inner { padding:0 24px; }
  .nav__links, .nav .btn--outline, .nav .btn--outline-white { display:none; }
  .nav__burger { display:flex; color:var(--navy); }
  .nav.nav--dark .nav__burger { color:#fff; }
  .benefits__grid { grid-template-columns:1fr; }
  .cases__grid { grid-template-columns:1fr; }
  .stats__grid { grid-template-columns:repeat(2,1fr); }
  .stat-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.08); }
  .footer__inner { grid-template-columns:1fr; gap:40px; }
  .footer__bottom { flex-direction:column; gap:8px; text-align:center; }
  .page-hero { padding:140px 0 72px; }
  .hero__inner { padding:60px 24px; }
  .hero__scroll { display:none; }
  .partners__grid { grid-template-columns:repeat(3,1fr); }
  .timeline__list::before { left:70px; }
  .timeline__item { grid-template-columns:70px 32px 1fr; gap:0 14px; }
  .process__steps { grid-template-columns:1fr; gap:32px; }
  .form-row { grid-template-columns:1fr; }
  .contact__why-grid { grid-template-columns:1fr; }
  .trust-bar__inner { gap:24px; }
  .service-card { padding:36px 24px; }
  .service-card__num { display:none; }
  .service-card { grid-template-columns:1fr; }
  .marquee { display:none; }
}
/* ===== EXPANDABLE SERVICE CARDS ===== */
.service-card--expandable {
  cursor: default;
  display: block !important;
}
.service-card__header {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  gap: 0 24px;
  align-items: start;
}
.service-card__toggle {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 4px; padding: 9px 16px;
  font-family: var(--font-b); font-size: 13px; font-weight: 600;
  color: var(--red); background: var(--red-dim);
  border: 1px solid rgba(200,57,45,.2); border-radius: 4px;
  cursor: pointer; flex-shrink: 0; white-space: nowrap;
  transition: background .2s, color .2s;
}
.service-card__toggle:hover { background: var(--red); color: #fff; }
.service-card--open .service-card__toggle { background: var(--red); color: #fff; }
.service-card--open .service-card__toggle .toggle-v { opacity: 0; }

.service-card__expand {
  max-height: 0; overflow: hidden;
  transition: max-height .55s cubic-bezier(0.25,1,0.5,1);
}
.service-card--open .service-card__expand { max-height: 1200px; }

.service-card__expand-inner {
  border-top: 1px solid var(--border);
  margin-top: 28px; padding-top: 32px;
}
.svc-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-bottom: 32px;
}
.svc-detail-h {
  font-family: var(--font-h); font-size: 14px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 16px;
}
.svc-detail-steps, .svc-detail-list {
  display: flex; flex-direction: column; gap: 12px;
  padding-left: 20px;
}
.svc-detail-steps li, .svc-detail-list li {
  font-size: 14px; line-height: 1.65; color: var(--muted);
}
.svc-detail-steps li strong, .svc-detail-list li strong { color: var(--text); }
.svc-detail-case {
  background: var(--navy); border-radius: 8px; padding: 20px 24px;
  margin-top: 24px;
}
.svc-detail-case__label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.svc-detail-case__metric {
  font-family: var(--font-h); font-size: 36px; font-weight: 900;
  color: #fff; line-height: 1; margin-bottom: 8px;
}
.svc-detail-case__text { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.5; }
.svc-detail-cta {
  display: flex; align-items: center; gap: 20px;
  padding-top: 24px; border-top: 1px solid var(--border2);
}
.svc-detail-cta__note { font-size: 12px; color: var(--muted2); line-height: 1.5; }

@media (max-width: 860px) {
  .service-card__header { grid-template-columns: 40px 1fr; }
  .service-card__price { grid-column: 2; }
  .service-card__toggle { grid-column: 1 / -1; justify-self: start; }
  .svc-detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .svc-detail-cta { flex-direction: column; align-items: flex-start; }
}

/* ===== CRED HIGHLIGHT (RKEP badge) ===== */
.cred-highlight {
  background: var(--navy);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.cred-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,162,74,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cred-highlight::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
}
.cred-highlight__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,74,.15);
  border: 1px solid rgba(201,162,74,.3);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.cred-highlight__org {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 6px;
}
.cred-highlight__title {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.cred-highlight__event {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

/* ===== FLAG CODES ===== */
.flag-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  line-height: 1.6;
  vertical-align: middle;
}

@media (max-width:480px) {
  .hero__title { font-size:clamp(32px,9vw,48px); }
  .hero__actions { flex-direction:column; align-items:flex-start; }
  .hero__actions .btn { width:100%; justify-content:center; }
  .partners__grid { grid-template-columns:repeat(2,1fr); }
  .benefits__grid { gap:16px; }
  .footer__inner { grid-template-columns:1fr; }
}

/* ===== MOBILE POLISH ===== */
@media (max-width:768px) {
  /* hero mobile — фото убираем, контент центрируем */
  .hero__inner { min-height:auto; padding:100px 24px 56px; grid-template-columns:1fr; }
  .hero__photo { display:none; }
  .hero__sub { font-size:15px; max-width:100%; }
  .hero__title { font-size:clamp(34px,8vw,52px); }

  /* section titles */
  .section-title { font-size:clamp(24px,6vw,36px); }
  .section { padding:60px 0; }

  /* benefits */
  .benefit-card { padding:28px 24px; }

  /* about */
  .about-split__name { font-size:28px; }
  .about-split__role { font-size:13px; line-height:1.5; }
  .cred-highlight { padding:16px; }

  /* cases */
  .case-card { padding:28px 24px; }
  .case-card__metric { font-size:52px; }

  /* stats */
  .stat-item__num { font-size:clamp(40px,10vw,60px); }

  /* journey table */
  .jrn__header { font-size:11px; padding:10px 12px; }
  .jrn__row { grid-template-columns:1fr; gap:4px; padding:14px 12px; }
  .jrn__bad, .jrn__good { font-size:12px; }
  .jrn__days { font-size:11px; }
  .jrn__result { grid-template-columns:1fr; gap:12px; padding:20px 16px; }
  .jrn__result-num { font-size:36px; }
  .jrn__result-label { font-size:10px; }
  .jrn__result-vs { display:none; }
  .jrn__result-footer { flex-direction:column; gap:12px; padding:20px 16px; }

  /* trust bar */
  .trust-bar__inner { flex-direction:column; align-items:flex-start; gap:12px; padding:20px 24px; }
  .trust-bar__items { gap:8px 16px; justify-content:flex-start; }
  .trust-bar__sep { display:none; }
  .trust-bar__item { font-size:12px; background:var(--bg); border:1px solid var(--border); border-radius:4px; padding:4px 10px; }

  /* supplier promo */
  .supplier-promo { gap:20px; }
  .supplier-promo__icon { width:56px; height:56px; }

  /* CTA banner */
  .cta-banner { padding:60px 0; }
  .cta-banner__title { font-size:clamp(24px,7vw,40px); }

  /* contact */
  .contact-info__item { flex-direction:column; gap:12px; }

  /* buttons full width on small screens */
  .hero__actions .btn--large { padding:16px 24px; font-size:14px; }
}

/* ===== WHATSAPP FLOAT ===== */
.tg-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.tg-float__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #229ED9;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(34,158,217,.45);
  transition: transform .25s var(--ease), box-shadow .25s;
  animation: tgPulse 2.5s ease-in-out 3s 3;
}
.tg-float__btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(34,158,217,.65); }
@keyframes tgPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(34,158,217,.45); }
  50% { box-shadow: 0 6px 32px rgba(34,158,217,.8), 0 0 0 10px rgba(34,158,217,.15); }
}
.tg-float__popup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 56px rgba(0,0,0,.18);
  width: 300px;
  max-width: calc(100vw - 56px);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.85) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s;
}
.tg-float__popup.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.tg-float__popup-header {
  background: #229ED9;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.tg-float__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.3);
}
.tg-float__popup-header h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.tg-float__popup-header p { font-size: 12px; color: rgba(255,255,255,.8); }
.tg-online { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #fff; margin-right: 4px; opacity: .9; }
.tg-float__popup-body { padding: 16px 20px; background: #F1F3F5; }
.tg-bubble {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  margin-bottom: 4px;
}
.tg-bubble span { font-size: 11px; color: #aaa; display: block; text-align: right; margin-top: 4px; }
.tg-float__popup-footer { padding: 12px 20px; background: #fff; }
.tg-send-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: #229ED9;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background .2s;
}
.tg-send-btn:hover { background: #1a8bbf; }
.tg-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

/* ===== ROI CALCULATOR ===== */
.calc-widget {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.calc-widget::before {
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(200,57,45,.08) 0%,transparent 60%);
  pointer-events:none;
}
.calc-widget__title { font-family:var(--font-h); font-size:28px; font-weight:900; color:#fff; margin-bottom:8px; }
.calc-widget__sub { font-size:14px; color:rgba(255,255,255,.5); margin-bottom:36px; }
.calc-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.calc-field label { display:block; font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.45); margin-bottom:8px; }
.calc-field input, .calc-field select {
  width:100%; padding:14px 16px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12);
  border-radius:8px; color:#fff; font-size:16px; font-family:var(--font-b);
  outline:none; transition:border-color .2s;
  -webkit-appearance:none;
}
.calc-field input:focus, .calc-field select:focus { border-color:rgba(200,57,45,.6); }
.calc-field select option { background:#0D2137; }
.calc-btn {
  grid-column:1/-1; padding:16px 32px;
  background:var(--red); color:#fff; border:none; border-radius:8px;
  font-family:var(--font-h); font-size:16px; font-weight:700;
  cursor:pointer; transition:background .2s, transform .15s;
}
.calc-btn:hover { background:#b82e1f; transform:translateY(-1px); }
.calc-result {
  grid-column:1/-1;
  display:none;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  padding:28px 32px;
  margin-top:8px;
}
.calc-result.show { display:block; }
.calc-result__numbers { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:20px; }
.calc-result__num { text-align:center; }
.calc-result__num .val { font-family:var(--font-h); font-size:32px; font-weight:900; color:#fff; display:block; }
.calc-result__num .val.green { color:#4AE54A; }
.calc-result__num .lbl { font-size:12px; color:rgba(255,255,255,.45); margin-top:4px; display:block; }
.calc-result__cta { text-align:center; padding-top:20px; border-top:1px solid rgba(255,255,255,.08); font-size:13px; color:rgba(255,255,255,.5); }
.calc-result__cta a { color:var(--gold); font-weight:600; }

@media (max-width:768px) {
  .calc-grid { grid-template-columns:1fr; gap:16px; }
  .calc-widget { padding:32px 24px; }
  .calc-result__numbers { grid-template-columns:1fr; gap:12px; }
  .tg-float { bottom:20px; right:16px; }
  .tg-float__popup { width:calc(100vw - 32px); }
  /* expandable service cards mobile */
  .service-card__header { grid-template-columns:1fr auto; gap:12px 16px; }
  .service-card__header .service-card__num { display:none; }
  .service-card__price { display:block; grid-column:1; }
  .svc-detail-grid { grid-template-columns:1fr; }
  /* blog */
  .blog-card--featured { grid-template-columns:1fr; }
  .article-layout { grid-template-columns:1fr; }
  .article-toc { display:none; }
}

@media (max-width:380px) {
  .tg-float__btn { width:50px; height:50px; }
}
