/* ==========================================================================
   Conscio Trading — Global Stylesheet
   ========================================================================== */

:root{
  /* Brand colors (from Conscio Trading logo) */
  --navy-900:#0c1730;
  --navy-800:#131f42;
  --navy-700:#1c2c58;
  --brand-blue:#2e2f7a;
  --brand-blue-light:#4a4bb0;
  --red:#ee2b32;
  --red-dark:#c01920;
  --gold:#c9962c;

  --bg:#ffffff;
  --bg-alt:#f4f5f9;
  --bg-dark:var(--navy-900);
  --text:#242736;
  --text-muted:#666b7d;
  --text-on-dark:#e7e9f3;
  --text-on-dark-muted:#a6acc4;
  --border:#e5e7f0;

  --font-head:"Ubuntu", "Segoe UI", sans-serif;
  --font-body:"IBM Plex Sans", "Segoe UI", sans-serif;

  --radius-sm:6px;
  --radius-md:12px;
  --radius-lg:20px;

  --shadow-sm:0 2px 10px rgba(12,23,48,.06);
  --shadow-md:0 12px 30px rgba(12,23,48,.10);
  --shadow-lg:0 24px 60px rgba(12,23,48,.16);

  --container:1200px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  color:var(--text);
  background:var(--bg);
  line-height:1.65;
  font-size:16px;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
input,textarea,select{font-family:inherit;font-size:1rem;}
h1,h2,h3,h4,h5{
  font-family:var(--font-head);
  font-weight:700;
  color:var(--navy-900);
  line-height:1.2;
}
.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* ---------- Utility ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-head);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--red);
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:26px;
  height:2px;
  background:var(--red);
  display:inline-block;
}
.section-title{
  font-size:clamp(1.8rem,3.2vw,2.6rem);
  margin-bottom:16px;
}
.section-lede{
  color:var(--text-muted);
  font-size:1.05rem;
  max-width:640px;
}
.section{
  padding:88px 0;
}
.section-alt{
  background:var(--bg-alt);
}
.section-dark{
  background:var(--navy-900);
  color:var(--text-on-dark);
}
.section-dark .section-title,
.section-dark h3{color:#fff;}
.section-dark .section-lede{color:var(--text-on-dark-muted);}
.text-center{text-align:center;margin-left:auto;margin-right:auto;}
.mt-40{margin-top:40px;}
.mt-56{margin-top:56px;}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-head);
  font-weight:700;
  font-size:.94rem;
  letter-spacing:.02em;
  padding:15px 28px;
  border-radius:8px;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--red);
  color:#fff;
  box-shadow:0 10px 24px rgba(238,43,50,.30);
}
.btn-primary:hover{background:var(--red-dark);transform:translateY(-2px);}
.btn-outline{
  background:transparent;
  border:1.5px solid rgba(255,255,255,.5);
  color:#fff;
}
.btn-outline:hover{background:rgba(255,255,255,.12);border-color:#fff;}
.btn-navy{
  background:var(--navy-900);
  color:#fff;
}
.btn-navy:hover{background:var(--brand-blue);transform:translateY(-2px);}
.btn-sm{padding:11px 20px;font-size:.85rem;}
.btn svg{width:16px;height:16px;flex-shrink:0;}

/* ---------- Top bar ---------- */
.topbar{
  background:var(--navy-900);
  color:var(--text-on-dark-muted);
  font-size:.85rem;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:9px;
  padding-bottom:9px;
}
.topbar-left{display:flex;gap:26px;align-items:center;flex-wrap:wrap;}
.topbar-left a{display:inline-flex;align-items:center;gap:8px;color:var(--text-on-dark-muted);transition:color .2s;}
.topbar-left a:hover{color:#fff;}
.topbar-left svg{width:14px;height:14px;color:var(--red);flex-shrink:0;}
.topbar-right{display:flex;align-items:center;gap:16px;}
.topbar-social a{
  width:26px;height:26px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.08);
  color:var(--text-on-dark-muted);
  transition:.2s;
}
.topbar-social a:hover{background:var(--red);color:#fff;}
.topbar-social svg{width:13px;height:13px;}

/* ---------- Commodity ticker ---------- */
.ticker-bar{
  background:var(--navy-900);
  border-bottom:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  position:relative;
}
.ticker-bar::before,
.ticker-bar::after{
  content:"";
  position:absolute;top:0;bottom:0;
  width:50px;z-index:2;
  pointer-events:none;
}
.ticker-bar::before{left:0;background:linear-gradient(to right, var(--navy-900), transparent);}
.ticker-bar::after{right:0;background:linear-gradient(to left, var(--navy-900), transparent);}
.ticker-track{
  display:flex;
  width:max-content;
  animation:ticker-scroll 38s linear infinite;
}
.ticker-bar:hover .ticker-track{animation-play-state:paused;}
.ticker-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 30px;
  white-space:nowrap;
  border-right:1px solid rgba(255,255,255,.08);
  font-family:var(--font-head);
}
.ticker-name{
  font-size:.82rem;
  font-weight:500;
  letter-spacing:.03em;
  color:var(--text-on-dark-muted);
  text-transform:uppercase;
}
.ticker-price{
  font-size:.86rem;
  font-weight:700;
  color:#fff;
}
.ticker-price.is-loading{color:var(--text-on-dark-muted);font-weight:500;}
.ticker-tag{
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.06em;
  padding:2px 7px;
  border-radius:20px;
}
.ticker-tag.live{
  background:rgba(46,204,113,.15);
  color:#4ade80;
  display:inline-flex;
  align-items:center;
  gap:5px;
}
.ticker-tag.live::before{
  content:"";
  width:6px;height:6px;border-radius:50%;
  background:#4ade80;
  animation:ticker-pulse 1.6s ease-in-out infinite;
}
.ticker-tag.ind{
  background:rgba(255,255,255,.08);
  color:var(--text-on-dark-muted);
}
@keyframes ticker-scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
@keyframes ticker-pulse{
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:.4;transform:scale(.7);}
}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:200;
  background:#fff;
  border-bottom:1px solid var(--border);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:88px;
}
.brand{display:flex;align-items:center;gap:10px;}
.brand img{height:42px;width:auto;}
.main-nav{display:flex;align-items:center;gap:2px;}
.main-nav a{
  font-family:var(--font-head);
  font-weight:500;
  font-size:.96rem;
  color:var(--navy-900);
  padding:10px 18px;
  border-radius:6px;
  position:relative;
  transition:color .2s;
}
.main-nav a:hover{color:var(--red);}
.main-nav a.active{color:var(--red);}
.main-nav a.active::after{
  content:"";
  position:absolute;
  left:18px;right:18px;bottom:4px;
  height:2px;background:var(--red);
  border-radius:2px;
}
.header-actions{display:flex;align-items:center;gap:18px;}
.nav-toggle{
  display:none;
  width:44px;height:44px;
  border-radius:8px;
  align-items:center;justify-content:center;
  background:var(--bg-alt);
  flex-direction:column;
  gap:5px;
}
.nav-toggle span{width:20px;height:2px;background:var(--navy-900);border-radius:2px;transition:.25s;}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.open span:nth-child(2){opacity:0;}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ---------- Hero (home) ---------- */
.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:center;
  color:#fff;
  overflow:hidden;
  background:var(--navy-900);
}
.hero-bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
  opacity:.42;
}
.hero-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(100deg, rgba(12,23,48,.97) 10%, rgba(12,23,48,.72) 48%, rgba(238,43,50,.35) 100%);
}
.hero-shape{
  position:absolute;
  right:-120px;top:-120px;
  width:520px;height:520px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.08);
}
.hero-shape.two{
  right:-40px;top:60px;
  width:340px;height:340px;
  border-color:rgba(238,43,50,.25);
}
.hero-content{position:relative;z-index:2;max-width:660px;padding:60px 0;}
.hero-content .eyebrow{color:#ff8a8f;}
.hero-content .eyebrow::before{background:#ff8a8f;}
.hero-content h1{
  color:#fff;
  font-size:clamp(2.3rem,5vw,3.6rem);
  line-height:1.12;
  margin-bottom:22px;
}
.hero-content h1 span{color:var(--red);}
.hero-content p{
  color:var(--text-on-dark-muted);
  font-size:1.12rem;
  max-width:540px;
  margin-bottom:34px;
}
.hero-cta{display:flex;gap:16px;flex-wrap:wrap;}

/* ---------- Page (inner) hero ---------- */
.page-hero{
  position:relative;
  padding:150px 0 70px;
  color:#fff;
  background:var(--navy-900);
  overflow:hidden;
}
.page-hero .hero-bg{opacity:.34;}
.page-hero .hero-overlay{background:linear-gradient(115deg, rgba(12,23,48,.96) 30%, rgba(238,43,50,.30) 100%);}
.page-hero-content{position:relative;z-index:2;}
.page-hero h1{color:#fff;font-size:clamp(2rem,4vw,2.9rem);margin-bottom:14px;}
.breadcrumb{
  display:flex;gap:10px;align-items:center;
  font-size:.9rem;color:var(--text-on-dark-muted);
  font-family:var(--font-head);
}
.breadcrumb a{color:var(--text-on-dark-muted);transition:.2s;}
.breadcrumb a:hover{color:#fff;}
.breadcrumb span{color:var(--red);}

/* ---------- Stats strip ---------- */
.stats-strip{
  background:var(--navy-900);
  position:relative;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.stat-item{
  padding:44px 20px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,.08);
}
.stat-item:last-child{border-right:none;}
.stat-num{
  font-family:var(--font-head);
  font-weight:700;
  font-size:clamp(1.8rem,3vw,2.6rem);
  color:#fff;
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:4px;
}
.stat-num .suffix{color:var(--red);font-size:.6em;}
.stat-label{
  margin-top:8px;
  color:var(--text-on-dark-muted);
  font-size:.88rem;
  letter-spacing:.02em;
}

/* ---------- About split ---------- */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.split-media{position:relative;}
.split-media img{
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  width:100%;
  aspect-ratio:6/5;
  object-fit:cover;
}
.split-media-badge{
  position:absolute;
  bottom:-26px;left:-26px;
  background:var(--red);
  color:#fff;
  padding:22px 26px;
  border-radius:var(--radius-md);
  box-shadow:0 16px 34px rgba(238,43,50,.35);
  font-family:var(--font-head);
}
.split-media-badge strong{display:block;font-size:1.7rem;}
.split-media-badge span{font-size:.78rem;letter-spacing:.04em;opacity:.9;text-transform:uppercase;}
.split-body ul.check-list{margin-top:24px;display:flex;flex-direction:column;gap:14px;}
.check-list li{display:flex;gap:12px;align-items:flex-start;color:var(--text);}
.check-list svg{width:20px;height:20px;flex-shrink:0;color:var(--red);margin-top:2px;}

/* ---------- Cards: business units ---------- */
.unit-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.unit-card{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  height:420px;
  box-shadow:var(--shadow-md);
  transition:transform .35s ease, box-shadow .35s ease;
}
.unit-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg);}
.unit-card img{
  position:absolute;inset:0;
  width:100%;height:100%;object-fit:cover;
  transition:transform .5s ease;
}
.unit-card:hover img{transform:scale(1.06);}
.unit-card-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(12,17,35,.94) 10%, rgba(12,17,35,.55) 48%, rgba(12,17,35,.15) 100%);
}
.unit-card-body{
  position:absolute;left:0;right:0;bottom:0;
  padding:30px;
  color:#fff;
}
.unit-card-num{
  font-family:var(--font-head);
  color:var(--red);
  font-weight:700;
  font-size:.85rem;
  letter-spacing:.1em;
  margin-bottom:10px;
  display:block;
}
.unit-card-body h3{color:#fff;font-size:1.4rem;margin-bottom:10px;}
.unit-card-body p{color:var(--text-on-dark-muted);font-size:.92rem;margin-bottom:16px;}
.unit-card-link{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-head);font-weight:700;font-size:.85rem;
  color:#fff;
  border-bottom:1.5px solid var(--red);
  padding-bottom:3px;
}
.unit-card-link svg{width:14px;height:14px;transition:transform .2s;}
.unit-card:hover .unit-card-link svg{transform:translateX(4px);}

/* ---------- Values / feature cards ---------- */
.value-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}
.value-grid-3{grid-template-columns:repeat(3,1fr);}
.value-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:34px 26px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.value-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:transparent;}
.value-icon{
  width:56px;height:56px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--red), var(--brand-blue));
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
}
.value-icon svg{width:26px;height:26px;color:#fff;}
.value-card h4{font-size:1.1rem;margin-bottom:10px;}
.value-card p{color:var(--text-muted);font-size:.92rem;}
.value-card .letter{
  font-family:var(--font-head);
  font-weight:700;
  font-size:2.2rem;
  color:var(--border);
  margin-bottom:10px;
  display:block;
}

/* ---------- Process steps ---------- */
.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  counter-reset:step;
  margin-top:20px;
}
.process-step{position:relative;padding-left:0;}
.process-num{
  font-family:var(--font-head);
  font-weight:700;
  font-size:3.2rem;
  color:transparent;
  -webkit-text-stroke:1.5px var(--border);
  line-height:1;
  margin-bottom:18px;
  display:block;
}
.process-step h4{font-size:1.15rem;margin-bottom:10px;}
.process-step p{color:var(--text-muted);font-size:.94rem;}

/* ---------- CTA banner ---------- */
.cta-banner{
  position:relative;
  background:linear-gradient(120deg, var(--navy-900), var(--brand-blue) 130%);
  border-radius:var(--radius-lg);
  padding:64px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
  overflow:hidden;
  color:#fff;
}
.cta-banner::before{
  content:"";
  position:absolute;
  width:360px;height:360px;
  border-radius:50%;
  background:rgba(238,43,50,.18);
  right:-120px;top:-140px;
}
.cta-banner h2{color:#fff;font-size:clamp(1.5rem,2.6vw,2.1rem);margin-bottom:8px;position:relative;}
.cta-banner p{color:var(--text-on-dark-muted);position:relative;}
.cta-banner-actions{position:relative;display:flex;gap:14px;flex-wrap:wrap;}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--navy-900);
  color:var(--text-on-dark-muted);
  padding-top:80px;
}
.footer-grid{
  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);
}
.footer-logo-plate{
  display:inline-flex;
  align-items:center;
  background:#fff;
  border-radius:10px;
  padding:12px 18px;
  margin-bottom:20px;
}
.footer-brand img{height:40px;display:block;}
.footer-brand p{font-size:.92rem;line-height:1.75;max-width:320px;}
.footer-social{display:flex;gap:10px;margin-top:24px;}
.footer-social a{
  width:36px;height:36px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.06);
  transition:.2s;
}
.footer-social a:hover{background:var(--red);}
.footer-social svg{width:15px;height:15px;color:#fff;}
.footer-col h5{
  color:#fff;font-family:var(--font-head);
  font-size:1rem;margin-bottom:24px;
  letter-spacing:.02em;
}
.footer-col ul{display:flex;flex-direction:column;gap:13px;}
.footer-col a{font-size:.92rem;transition:.2s;}
.footer-col a:hover{color:#fff;}
.footer-office{font-size:.92rem;margin-bottom:22px;}
.footer-office strong{display:block;color:#fff;font-family:var(--font-head);font-size:.88rem;margin-bottom:6px;}
.footer-bottom{
  padding:26px 0;
  display:flex;justify-content:space-between;align-items:center;
  font-size:.85rem;
  flex-wrap:wrap;
  gap:10px;
}
.footer-bottom a{transition:.2s;}
.footer-bottom a:hover{color:#fff;}

/* ---------- Services page ---------- */
.division-block{padding:70px 0;}
.division-block:not(:last-child){border-bottom:1px solid var(--border);}
.division-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:46px;
  flex-wrap:wrap;
}
.division-tag{
  display:inline-flex;align-items:center;gap:10px;
  font-family:var(--font-head);font-weight:700;font-size:.78rem;
  letter-spacing:.12em;text-transform:uppercase;
  color:#fff;background:var(--navy-900);
  padding:8px 16px;border-radius:30px;
  margin-bottom:16px;
}
.service-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}
.service-card{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:22px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:box-shadow .25s ease, transform .25s ease;
}
.service-card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px);}
.service-card-img{height:100%;min-height:180px;}
.service-card-img img{width:100%;height:100%;object-fit:cover;}
.service-card-body{padding:22px 22px 22px 0;}
.service-card-body h4{font-size:1.12rem;margin-bottom:10px;}
.service-card-body p{color:var(--text-muted);font-size:.9rem;}
.service-card-body ul{margin-top:10px;display:flex;flex-direction:column;gap:6px;}
.service-card-body ul li{
  font-size:.87rem;color:var(--text-muted);
  padding-left:16px;position:relative;
}
.service-card-body ul li::before{
  content:"";position:absolute;left:0;top:9px;
  width:6px;height:6px;border-radius:50%;background:var(--red);
}

/* ---------- Team page ---------- */
.team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px 30px;
}
.team-card{text-align:left;}
.team-photo{
  position:relative;
  aspect-ratio:1/1;
  border-radius:var(--radius-md);
  overflow:hidden;
  margin-bottom:22px;
  background:var(--bg-alt);
}
.team-photo img{
  width:100%;height:100%;
  object-fit:cover;
  filter:grayscale(100%);
  transition:transform .5s ease, filter .5s ease;
}
.team-card:hover .team-photo img{transform:scale(1.06);filter:grayscale(0%);}
.team-photo::after{
  content:"";
  position:absolute;inset:0;
  box-shadow:inset 0 -60px 50px -30px rgba(12,23,48,.55);
}
.team-name{
  font-family:var(--font-head);
  font-weight:700;
  font-size:1.3rem;
  letter-spacing:.01em;
  color:var(--navy-900);
  margin-bottom:4px;
}
.team-title{
  color:var(--red);
  font-family:var(--font-head);
  font-weight:500;
  font-size:.86rem;
  letter-spacing:.03em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.team-phone{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.9rem;
  color:var(--text-muted);
  padding-top:14px;
  border-top:1px solid var(--border);
  width:100%;
  transition:color .2s;
}
.team-phone:hover{color:var(--red);}
.team-phone svg{width:15px;height:15px;color:var(--red);flex-shrink:0;}

/* ---------- Contact page ---------- */
.office-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.office-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:34px 28px;
  position:relative;
}
.office-card.is-hq{border-color:var(--red);box-shadow:0 14px 34px rgba(238,43,50,.12);}
.office-badge{
  position:absolute;top:-13px;right:24px;
  background:var(--red);color:#fff;
  font-family:var(--font-head);font-weight:700;
  font-size:.7rem;letter-spacing:.08em;
  padding:6px 14px;border-radius:20px;
}
.office-icon{
  width:50px;height:50px;border-radius:12px;
  background:var(--bg-alt);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
}
.office-icon svg{width:24px;height:24px;color:var(--red);}
.office-card h4{font-size:1.15rem;margin-bottom:12px;}
.office-card address{font-style:normal;color:var(--text-muted);font-size:.92rem;margin-bottom:16px;line-height:1.7;}
.office-meta{display:flex;flex-direction:column;gap:8px;}
.office-meta a{
  display:flex;align-items:center;gap:10px;
  font-size:.92rem;color:var(--text);font-weight:500;
}
.office-meta svg{width:16px;height:16px;color:var(--red);flex-shrink:0;}

.contact-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:flex-start;
}
.contact-form{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:44px;
  box-shadow:var(--shadow-sm);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
.form-group{margin-bottom:20px;}
.form-group label{
  display:block;font-family:var(--font-head);font-weight:500;
  font-size:.85rem;margin-bottom:8px;color:var(--navy-900);
}
.form-group input,.form-group select,.form-group textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid var(--border);
  border-radius:8px;
  background:var(--bg-alt);
  color:var(--text);
  transition:border-color .2s, background .2s;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{
  outline:none;border-color:var(--red);background:#fff;
}
.form-group textarea{resize:vertical;min-height:130px;}
.form-note{font-size:.82rem;color:var(--text-muted);margin-top:14px;}
.form-success{
  display:none;
  align-items:center;gap:10px;
  background:#eefaf0;color:#1c7a35;
  border:1px solid #bfe8c8;
  padding:14px 18px;border-radius:8px;
  font-size:.9rem;margin-bottom:18px;
}
.form-success.show{display:flex;}
.form-success svg{width:18px;height:18px;flex-shrink:0;}

.map-embed{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-md);
  height:100%;
  min-height:420px;
}
.map-embed iframe{width:100%;height:100%;min-height:420px;border:0;display:block;}

/* ---------- Reveal animation ---------- */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1;transform:translateY(0);}

/* ---------- Back to top ---------- */
.to-top{
  position:fixed;right:24px;bottom:24px;
  width:46px;height:46px;border-radius:50%;
  background:var(--navy-900);color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-md);
  opacity:0;pointer-events:none;
  transform:translateY(10px);
  transition:.3s;
  z-index:150;
}
.to-top.show{opacity:1;pointer-events:auto;transform:translateY(0);}
.to-top svg{width:18px;height:18px;}
.to-top:hover{background:var(--red);}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1080px){
  .footer-grid{grid-template-columns:1fr 1fr;}
  .unit-grid{grid-template-columns:1fr 1fr;}
  .value-grid,.value-grid-3{grid-template-columns:1fr 1fr;}
  .process-grid{grid-template-columns:1fr;gap:34px;}
  .office-grid{grid-template-columns:1fr;}
  .contact-wrap{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:1fr 1fr;}
  .stats-grid{grid-template-columns:1fr 1fr;}
  .stat-item:nth-child(2){border-right:none;}
}
@media (max-width:900px){
  .split{grid-template-columns:1fr;gap:60px;}
  .split-media{order:2;}
}
@media (max-width:860px){
  .topbar-left a:nth-child(3){display:none;}
  .main-nav{
    position:fixed;inset:88px 0 0 0;
    background:#fff;
    flex-direction:column;
    align-items:stretch;
    padding:20px;
    gap:6px;
    transform:translateX(100%);
    transition:transform .3s ease;
    overflow-y:auto;
  }
  .main-nav.open{transform:translateX(0);}
  .main-nav a{padding:16px 18px;border-bottom:1px solid var(--border);border-radius:0;}
  .nav-toggle{display:flex;}
  .header-actions .btn-sm{display:none;}
  .unit-grid{grid-template-columns:1fr;}
  .value-grid,.value-grid-3{grid-template-columns:1fr;}
  .service-list{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:1fr;max-width:360px;margin:0 auto;}
  .cta-banner{flex-direction:column;text-align:center;padding:48px 30px;}
  .cta-banner-actions{justify-content:center;}
}
@media (max-width:640px){
  .section{padding:64px 0;}
  .stats-grid{grid-template-columns:1fr 1fr;}
  .service-card{grid-template-columns:1fr;}
  .service-card-img{min-height:160px;}
  .form-row{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;gap:40px;}
  .footer-bottom{flex-direction:column;text-align:center;}
  .hero{min-height:auto;padding:130px 0 70px;}
  .page-hero{padding:120px 0 56px;}
}
