/* =========================================================
   TopNotch Possibilities Unlimited — Main Stylesheet
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ---------- Variables ---------- */
:root {
  --red: #E2001A;
  --red-dark: #A6000F;
  --red-light: #FF3B4E;
  --red-tint: #FDEBEC;
  --black: #17140F;
  --ink: #2A2622;
  --grey: #6B6560;
  --grey-light: #9C948D;
  --line: #ECE4E0;
  --off-white: #FBF8F6;
  --white: #FFFFFF;

  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(23, 20, 15, 0.06);
  --shadow: 0 10px 30px rgba(23, 20, 15, 0.09);
  --shadow-red: 0 14px 30px rgba(226, 0, 26, 0.25);

  --ease: cubic-bezier(.4,0,.2,1);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--black);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { color: var(--grey); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }
.section-pad { padding: 100px 0; }
@media (max-width: 768px) { .section-pad { padding: 64px 0; } }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mono-red { color: var(--red); }
.bg-black { background: var(--black); color: var(--white); }
.bg-off { background: var(--off-white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-tint);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 16px; }
.section-head p { font-size: 17px; }
.section-head.align-left { margin: 0 0 48px; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 100px;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(226,0,26,.34); }
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--black); background: var(--black); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.2); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--black);
  color: rgba(255,255,255,.82);
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-links { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar-links a { display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.topbar-links a:hover { color: var(--red-light); }
.topbar-links svg { width: 15px; height: 15px; color: var(--red-light); flex-shrink: 0; }
.topbar-tag { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.55); }
.topbar-tag svg { width: 14px; height: 14px; color: var(--red-light); }

@media (max-width: 560px) {
  .topbar-tag { display: none; }
  .topbar-links { gap: 16px; }
  .topbar { font-size: 12px; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon { height: 42px; width: auto; }
.brand-text { font-family: var(--font-head); line-height: 1.15; }
.brand-text .t1 { font-weight: 800; font-size: 19px; letter-spacing: .01em; color: var(--black); display: block; }
.brand-text .t1 span { color: var(--red); }
.brand-text .t2 { font-weight: 500; font-size: 11.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--grey-light); }

.nav-desktop { display: flex; align-items: center; gap: 40px; }
.nav-desktop a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-desktop a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .25s var(--ease);
}
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }
.nav-desktop a.active { color: var(--red); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 14.5px; }
.header-phone .ic { width: 38px; height: 38px; border-radius: 50%; background: var(--red-tint); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.header-phone .ic svg { width: 17px; height: 17px; }
.header-phone small { display: block; color: var(--grey-light); font-weight: 500; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; background: var(--off-white); }
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-nav {
  position: fixed; inset: 88px 0 0 0;
  background: var(--white);
  z-index: 199;
  padding: 30px 24px;
  display: none;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: all .3s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav a { font-family: var(--font-head); font-weight: 600; font-size: 20px; padding: 16px 4px; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 20px; }

@media (max-width: 992px) {
  .nav-desktop, .header-phone { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 560px) {
  .site-header .container { height: 76px; }
  .mobile-nav { inset: 76px 0 0 0; }
  .brand-icon { height: 32px; }
  .brand-text .t1 { font-size: 15px; }
  .brand-text .t2 { display: none; }
  .header-cta .btn-primary { display: none; }
}
@media (max-width: 400px) {
  .brand-text .t1 { font-size: 13px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 84px 0 110px;
  background: var(--black);
  overflow: hidden;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 88% -10%, rgba(226,0,26,.45), transparent 60%),
    radial-gradient(600px 500px at 10% 110%, rgba(226,0,26,.22), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 75%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 9px 18px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 600; font-size: 12.5px;
  letter-spacing: .1em; text-transform: uppercase;
  color: #fff; margin-bottom: 26px;
}
.hero-eyebrow svg { width: 15px; height: 15px; color: var(--red-light); }
.hero h1 { font-size: clamp(36px, 5vw, 60px); color: #fff; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--red-light); }
.hero p.lead { font-size: 18px; color: rgba(255,255,255,.68); max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust div { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,.7); }
.hero-trust svg { width: 20px; height: 20px; color: var(--red-light); flex-shrink: 0; }

.hero-panel {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 34px;
  backdrop-filter: blur(6px);
}
.hero-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.hero-panel-head .live { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: #7CFFA0; font-family: var(--font-head); }
.hero-panel-head .live span { width: 8px; height: 8px; border-radius: 50%; background: #7CFFA0; box-shadow: 0 0 0 0 rgba(124,255,160,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(124,255,160,.55);} 70%{box-shadow:0 0 0 9px rgba(124,255,160,0);} 100%{box-shadow:0 0 0 0 rgba(124,255,160,0);} }
.hero-metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-metric { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px; }
.hero-metric b { display: block; font-family: var(--font-head); font-size: 26px; color: #fff; }
.hero-metric span { font-size: 12.5px; color: rgba(255,255,255,.55); }
.hero-metric.wide { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; }
.hero-panel-foot { margin-top: 18px; padding-top: 18px; border-top: 1px dashed rgba(255,255,255,.14); display: flex; gap: 10px; flex-wrap: wrap; }
.chip { font-size: 12px; font-weight: 600; font-family: var(--font-head); padding: 7px 13px; border-radius: 100px; background: rgba(226,0,26,.16); color: var(--red-light); border: 1px solid rgba(226,0,26,.3); }

@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 70px; }
  .hero p.lead { max-width: 100%; }
}

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
}
.strip-track { display: flex; gap: 50px; white-space: nowrap; animation: marquee 26s linear infinite; width: max-content; }
.strip-track span { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: #fff; letter-spacing: .03em; display: inline-flex; align-items: center; gap: 12px; text-transform: uppercase; }
.strip-track span::after { content: '◆'; font-size: 9px; color: rgba(255,255,255,.55); margin-left: 38px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Icon boxes / cards ---------- */
.icon-box {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-red);
  flex-shrink: 0;
}
.icon-box svg { width: 26px; height: 26px; }
.icon-box.ghost { background: var(--red-tint); color: var(--red); box-shadow: none; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 992px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: all .35s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card h3 { font-size: 19px; margin: 20px 0 10px; }
.card p { font-size: 14.5px; margin-bottom: 0; }
.card .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.card .tags span { font-size: 11.5px; font-weight: 600; background: var(--off-white); color: var(--grey); padding: 5px 11px; border-radius: 100px; }

.card-dark {
  background: var(--black);
  color: rgba(255,255,255,.7);
  border-radius: var(--radius);
  padding: 34px 28px;
}
.card-dark h3 { color: #fff; }

/* Service vertical card w/ number */
.vcard {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  overflow: hidden;
  transition: all .35s var(--ease);
}
.vcard:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.vcard .num { position: absolute; top: -6px; right: 10px; font-family: var(--font-head); font-weight: 800; font-size: 64px; color: var(--off-white); z-index: 0; }
.vcard > * { position: relative; z-index: 1; }
.vcard h3 { font-size: 20px; margin: 18px 0 10px; }
.vcard p { font-size: 14.5px; }
.vcard ul { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.vcard ul li { font-size: 13.5px; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.vcard ul li svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; position: relative; }
@media (max-width: 992px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 30px 24px; background: var(--off-white); border-radius: var(--radius); }
.step .step-num { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: #fff; background: var(--red); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 13.5px; margin: 0; }

/* ---------- Stats ---------- */
.stats-bar { background: var(--black); border-radius: var(--radius-lg); padding: 52px 40px; display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
@media (max-width: 768px) { .stats-bar { grid-template-columns: repeat(2,1fr); padding: 36px 22px; } }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(30px,4vw,42px); color: #fff; }
.stat b span { color: var(--red-light); }
.stat p { font-size: 13.5px; color: rgba(255,255,255,.55); margin: 6px 0 0; }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-contact { grid-template-columns: .8fr 1.2fr; align-items: flex-start; }
@media (max-width: 900px) { .split, .split-contact { grid-template-columns: 1fr; gap: 40px; } }
.split-visual { position: relative; }
.check-list { display: flex; flex-direction: column; gap: 16px; margin: 26px 0 32px; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--ink); }
.check-list li b { display:block; color: var(--black); }
.check-list .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--red-tint); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.check-list .tick svg { width: 13px; height: 13px; }

.mockup-panel {
  background: linear-gradient(160deg, var(--black) 0%, #2b1010 100%);
  border-radius: var(--radius-lg);
  padding: 34px;
  color: #fff;
  box-shadow: var(--shadow);
}
.mockup-panel h4 { color: #fff; font-size: 16px; margin-bottom: 20px; display:flex; align-items:center; gap:10px;}
.filter-row { display: flex; justify-content: space-between; align-items:center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 14px 18px; margin-bottom: 12px; font-size: 13.5px; }
.filter-row span:first-child { color: rgba(255,255,255,.55); }
.filter-row span:last-child { font-family: var(--font-head); font-weight: 600; color: #fff; }
.filter-row .ok { color: #7CFFA0; }

/* ---------- Testimonial-free trust badges ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.badge-pill { display: flex; align-items: center; gap: 10px; background: var(--off-white); border: 1px solid var(--line); padding: 12px 20px; border-radius: 100px; font-family: var(--font-head); font-weight: 600; font-size: 13.5px; }
.badge-pill svg { width: 18px; height: 18px; color: var(--red); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background: linear-gradient(120deg, var(--red-dark), var(--red) 60%, var(--red-light));
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  overflow: hidden;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-banner::after { content:''; position:absolute; width:340px; height:340px; border-radius:50%; background: rgba(255,255,255,.08); top:-160px; right:-80px; }
.cta-banner h2 { color: #fff; font-size: clamp(24px,3vw,34px); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,.85); margin: 0; max-width: 480px; }
.cta-banner .actions { position: relative; z-index: 2; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(255,255,255,.6); padding-top: 90px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .brand-icon { height: 40px; filter: brightness(0) invert(1); }
.footer-brand .t1 { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: #fff; }
.footer-brand .t1 span { color: var(--red-light); }
.site-footer p.tagline { font-size: 14px; max-width: 320px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: all .25s var(--ease); }
.footer-social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; color: #fff; }
.site-footer h4 { color: #fff; font-family: var(--font-head); font-size: 15px; margin-bottom: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 13px; }
.footer-links a { font-size: 14.5px; transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--red-light); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; font-size: 14.5px; margin-bottom: 18px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--red-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--red-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 26px 0; font-size: 13px; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--red-light); }

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  position: relative;
  background: var(--black);
  padding: 62px 0 58px;
  overflow: hidden;
  color: #fff;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 90% 0%, rgba(226,0,26,.4), transparent 60%);
}
.page-banner .container { position: relative; z-index: 2; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.55); margin-bottom: 14px; font-family: var(--font-head); }
.crumbs a:hover { color: var(--red-light); }
.crumbs svg { width: 12px; height: 12px; }
.page-banner h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); }
.page-banner p { color: rgba(255,255,255,.6); max-width: 600px; margin-top: 14px; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.form-field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 13.5px; margin-bottom: 9px; color: var(--black); }
.form-field label sup { color: var(--red); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  background: var(--off-white);
  transition: border-color .2s, background .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--red); background: #fff;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); }
@media (max-width: 560px) { .form-card { padding: 26px; } }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-msg { display: none; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; margin-bottom: 20px; font-family: var(--font-head); }
.form-msg.show { display: block; }
.form-msg.ok { background: #E9F9EE; color: #158C46; }
.form-msg.err { background: #FDEBEC; color: var(--red-dark); }

.contact-info-card { display: flex; gap: 18px; padding: 26px; border-radius: var(--radius); background: var(--off-white); align-items: flex-start; }
.contact-info-card h4 { font-size: 16px; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 14.5px; }
.contact-info-card a:hover { color: var(--red); }

/* map */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(.15); }

/* ---------- About page ---------- */
.founder-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-photo-wrap { position: relative; }
.founder-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--off-white);
  box-shadow: var(--shadow);
}
.founder-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo-frame .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--black) 0%, var(--red-dark) 130%);
}
.founder-photo-frame .placeholder span { font-family: var(--font-head); font-weight: 800; font-size: 96px; color: rgba(255,255,255,.92); letter-spacing: .02em; }
.founder-photo-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(226,0,26,.14), transparent 45%);
  pointer-events: none;
}
.founder-badge {
  position: absolute; bottom: -22px; left: 26px;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 22px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line);
}
.founder-badge b { display:block; font-family: var(--font-head); font-size: 15px; }
.founder-badge span { font-size: 12px; color: var(--grey); }
.founder-quote { font-family: var(--font-head); font-size: 21px; font-weight: 500; color: var(--black); line-height: 1.5; margin: 20px 0 26px; }
.founder-quote::before { content: '\201C'; color: var(--red); font-size: 44px; line-height: 0; vertical-align: -18px; margin-right: 4px; font-family: Georgia, serif; }
.social-row { display: flex; gap: 12px; margin-top: 26px; }
.social-row a { display: flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: 100px; border: 1.5px solid var(--line); font-family: var(--font-head); font-weight: 600; font-size: 13.5px; transition: all .25s var(--ease); }
.social-row a:hover { border-color: var(--red); color: var(--red); background: var(--red-tint); }
.social-row svg { width: 16px; height: 16px; }

.value-card { text-align: center; padding: 34px 24px; }
.value-card .icon-box { margin: 0 auto 18px; }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before { content:''; position:absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-item { display: flex; gap: 24px; padding-bottom: 40px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--red-tint); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; border: 4px solid #fff; }
.tl-dot svg { width: 18px; height: 18px; }
.tl-item h4 { font-size: 16.5px; margin-bottom: 6px; }
.tl-item p { font-size: 14px; margin: 0; }

/* ---------- Misc ---------- */
.divider-fade { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); margin: 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

.accordion-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.accordion-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 15.5px; cursor: pointer; }
.accordion-q svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; transition: transform .3s var(--ease); }
.accordion-item.open .accordion-q svg { transform: rotate(45deg); }
.accordion-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.accordion-a p { padding: 0 24px 22px; font-size: 14.5px; }

.back-to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 150;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-red);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all .3s var(--ease);
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }
