/* =========================================================================
   CHANDIKA DEALER PRIVATE LIMITED — Design System
   Concept: "The Spectrum" — the site runs cool Samsung blue at the top
   (electronics, engineering, precision) and warms into Titan gold toward
   the lifestyle/watch content, seamed by a diagonal spectrum divider.
   ========================================================================= */

:root {
  /* ---- Color tokens ----
     Unified "Black & Gold" premium palette. Variable names are kept
     as-is (--samsung-blue / --titan-gold) so the rest of the stylesheet
     doesn't need to change — only the hex values below do. */
  --ink:            #0A0A0A;   /* true near-black, dark sections */
  --ink-soft:       #171412;
  --samsung-blue:   #1C1B19;   /* was Samsung blue — now deep charcoal-black */
  --samsung-blue-2: #322C24;   /* brighter charcoal/bronze accent variant */
  --titan-gold:     #B8860B;   /* rich premium gold */
  --titan-gold-2:   #E8C158;   /* brighter gold accent */
  --paper:          #F7F5F0;   /* warm off-white background */
  --paper-2:        #EFEAE0;
  --white:          #FFFFFF;
  --line:           #E3E7EE;
  --slate:          #5B6577;   /* body copy on light */
  --slate-soft:     #8792A3;
  --on-dark:        #EDEFF6;
  --on-dark-soft:   #B7BFD1;

  /* ---- Type ---- */
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* ---- Layout ---- */
  --container-w: 1240px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 50px -20px rgba(10, 18, 36, 0.25);
  --shadow-card: 0 12px 30px -14px rgba(10, 18, 36, 0.18);
  --header-h: 78px;
}

/* ---- Reset ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--titan-gold-2); outline-offset: 2px; }

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

h1, h2, h3, h4, .font-display { font-family: var(--font-display); letter-spacing: -0.01em; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 600; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.on-dark { color: var(--on-dark-soft); }
.eyebrow.on-light { color: var(--samsung-blue); }
.eyebrow.gold { color: var(--titan-gold); }

.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-top: 14px; line-height: 1.15; }
.section-head p { margin-top: 16px; font-size: 17px; line-height: 1.65; color: var(--slate); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--samsung-blue);
  color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(20, 40, 160, 0.55);
}
.btn-primary:hover { background: var(--samsung-blue-2); color: var(--white); }
.btn-gold {
  background: linear-gradient(135deg, var(--titan-gold-2), var(--titan-gold));
  color: var(--ink);
  box-shadow: 0 14px 30px -10px rgba(169, 121, 31, 0.5);
}
.btn-gold:hover { filter: brightness(1.05); color: var(--ink); }
.btn-outline-light {
  border-color: rgba(237, 239, 246, 0.35);
  color: var(--on-dark);
}
.btn-outline-light:hover { background: rgba(237, 239, 246, 0.12); color: var(--white); }
.btn-outline-dark {
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline-dark:hover { background: var(--paper); color: var(--ink); }

/* =========================================================================
   HEADER / NAVBAR
   ========================================================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
#site-header.is-scrolled {
  background: rgba(10, 18, 36, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.6);
}
.navbar-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand img { height: 40px; width: auto; }
.brand .brand-fallback {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand .brand-fallback small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--titan-gold-2);
  font-weight: 500;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links > li > a, .nav-links > li > button {
  background: none;
  border: none;
  color: var(--on-dark);
  font-size: 14.5px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s ease, color .2s ease;
}
.nav-links > li > a:hover, .nav-links > li > button:hover,
.nav-links > li.active > a { background: rgba(237,239,246,0.1); color: var(--white); }

.nav-item.dropdown { position: relative; }
.dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.nav-item.dropdown:hover .dropdown-menu-custom,
.nav-item.dropdown:focus-within .dropdown-menu-custom {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown-menu-custom a, .dropdown-menu-custom .soft-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.dropdown-menu-custom a:hover { background: var(--paper); color: var(--samsung-blue); }
.dropdown-menu-custom .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--slate-soft);
}
.dropdown-menu-custom .tag.soon { background: rgba(169,121,31,0.12); color: var(--titan-gold); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.btn-mail-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--paper-2); color: var(--ink);
  font-size: 16px; border: 1px solid var(--line);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.btn-mail-icon:hover { background: var(--titan-gold); color: var(--white); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
}

@media (max-width: 991.98px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  #site-header { background: rgba(10,10,10,0.92); backdrop-filter: blur(10px); }
}

/* Mobile menu panel */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
  padding: 26px 26px 40px;
  overflow-y: auto;
}
#mobile-menu.open { transform: translateX(0); }
#mobile-menu .mm-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
#mobile-menu .mm-close { background: none; border: none; color: var(--white); font-size: 26px; }
#mobile-menu a, #mobile-menu .mm-group-title {
  color: var(--on-dark);
  font-size: 22px;
  font-family: var(--font-display);
  padding: 14px 4px;
  border-bottom: 1px solid rgba(237,239,246,0.08);
}
#mobile-menu .mm-sub { padding-left: 16px; }
#mobile-menu .mm-sub a { font-size: 16px; font-family: var(--font-body); color: var(--on-dark-soft); }
#mobile-menu .mm-group-title { display: flex; align-items: center; gap: 10px; color: var(--titan-gold-2); }

/* =========================================================================
   HERO
   ========================================================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 120% 80% at 15% -10%, #17245C 0%, var(--ink) 55%),
              linear-gradient(180deg, var(--ink) 0%, #1A1712 100%);
  overflow: hidden;
  padding-top: var(--header-h);
}
#hero::before {
  /* faint schematic grid, evokes electronics/engineering */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(237,239,246,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,239,246,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 30%, black, transparent 75%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.hero-seal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: rgba(237,239,246,0.06);
  border: 1px solid rgba(237,239,246,0.14);
  margin-bottom: 28px;
}
.hero-seal .seal-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--titan-gold-2), var(--titan-gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-size: 13px;
}
.hero-seal span { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; color: var(--on-dark-soft); text-transform: uppercase; }

#hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  color: var(--white);
  line-height: 1.06;
  font-weight: 700;
}
#hero h1 .accent-blue { color: #6C86FF; }
#hero h1 .accent-gold { color: var(--titan-gold-2); }

#hero .lede {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--on-dark-soft);
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stats .stat b {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--white);
  display: block;
}
.hero-stats .stat span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}

/* Hero visual: layered product panel */
.hero-visual { position: relative; z-index: 2; }
.hero-panel {
  position: relative;
  background: linear-gradient(160deg, rgba(237,239,246,0.06), rgba(237,239,246,0.02));
  border: 1px solid rgba(237,239,246,0.12);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.hero-tile {
  background: rgba(237,239,246,0.94);
  border: 1px solid rgba(237,239,246,0.1);
  border-radius: 16px;
  padding: 14px 14px 16px;
  transition: transform .3s ease, border-color .3s ease;
}
.hero-tile:hover { transform: translateY(-4px); border-color: rgba(108,134,255,0.5); }
.hero-tile.gold-tile:hover { border-color: rgba(216,174,85,0.6); }
.hero-tile .tile-media {
  width: 100%; height: 78px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 35%, #fff 0%, #EEF1F6 100%);
}
.hero-tile img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.hero-tile svg { width: 100%; height: 74px; }
.hero-tile p { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; color: var(--ink); margin-top: 10px; text-transform: uppercase; }
.hero-tile.span-2 { grid-column: span 2; }

.scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--on-dark-soft);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 30px; background: linear-gradient(var(--titan-gold-2), transparent); animation: scrollpulse 1.8s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

@media (max-width: 991.98px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}

/* =========================================================================
   MARQUEE / TRUST STRIP
   ========================================================================= */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust-strip .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--slate); font-size: 14px; font-weight: 500; }
.trust-item i { color: var(--samsung-blue); font-size: 16px; }

/* =========================================================================
   ABOUT
   ========================================================================= */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.about-visual {
  position: sticky;
  top: 110px;
}
.about-card {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 34px;
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}
.about-card::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,174,85,0.25), transparent 70%);
}
.about-card .addr-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--titan-gold-2); text-transform: uppercase; }
.about-card address { font-style: normal; margin-top: 14px; font-size: 16px; line-height: 1.7; color: var(--on-dark); }
.about-card .cin-row { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(237,239,246,0.12); font-family: var(--font-mono); font-size: 12px; color: var(--on-dark-soft); }

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }
.feature-item { display: flex; gap: 16px; }
.feature-item .fi-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  color: var(--samsung-blue); font-size: 18px; flex-shrink: 0;
}
.feature-item h4 { font-size: 16px; margin-bottom: 4px; }
.feature-item p { font-size: 14.5px; line-height: 1.6; color: var(--slate); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { position: static; }
  .feature-list { grid-template-columns: 1fr; }
}

/* =========================================================================
   PRODUCTS — Samsung (cool) block
   ========================================================================= */
#products-samsung {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper) 100%);
  position: relative;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.product-card .pc-media {
  height: 168px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: radial-gradient(circle at 50% 40%, #FFFFFF 0%, var(--paper-2) 100%);
  position: relative;
}
.product-card .pc-media svg { width: 100%; height: 100%; }
.product-card .pc-media img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  transition: transform .5s ease;
  mix-blend-mode: multiply;
}
.product-card:hover .pc-media img { transform: scale(1.06); }
.product-card h4 { font-size: 16px; margin-bottom: 6px; }
.product-card p { font-size: 13.5px; line-height: 1.55; color: var(--slate-soft); }
.product-card .pc-tag {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.06em;
  padding: 3px 8px; border-radius: 999px; text-transform: uppercase;
}
.pc-tag.samsung { background: rgba(28,27,25,0.10); color: var(--samsung-blue); }
.pc-tag.titan { background: rgba(169,121,31,0.1); color: var(--titan-gold); }

@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

/* ---- Spectrum seam divider: the signature element ---- */
.spectrum-seam {
  position: relative;
  height: 140px;
  background: linear-gradient(100deg, var(--samsung-blue) 0%, var(--samsung-blue-2) 35%, var(--titan-gold-2) 68%, var(--titan-gold) 100%);
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 70%);
  margin-top: -1px;
}
.spectrum-seam .seam-label {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10,18,36,0.55);
  white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
}
.spectrum-seam .seam-label i { font-size: 13px; }

/* =========================================================================
   PRODUCTS — Titan (warm) block
   ========================================================================= */
#products-titan {
  background: linear-gradient(180deg, #FBF7EF 0%, #F6F1E4 100%);
}
#products-titan .eyebrow.gold { color: var(--titan-gold); }
/* ---- New Arrivals carousel ---- */
.arrivals-carousel { position: relative; max-width: 780px; margin: 0 auto; }
.arrivals-track {
  display: flex; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--white); box-shadow: var(--shadow-card);
}
.arrivals-slide {
  flex: 0 0 100%; display: flex; flex-direction: column; align-items: center;
  padding: 40px 24px 26px; transition: opacity .3s ease;
}
.arrivals-slide img { width: 260px; height: 260px; object-fit: contain; }
.arrivals-caption { margin-top: 16px; font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.arrivals-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; border: none;
  background: var(--white); box-shadow: var(--shadow-card); color: var(--ink);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.arrivals-nav:hover { background: var(--titan-gold); color: var(--white); }
.arrivals-nav.prev { left: -14px; }
.arrivals-nav.next { right: -14px; }
.arrivals-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.arrivals-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: var(--line); padding: 0; cursor: pointer; transition: background .2s ease, transform .2s ease;
}
.arrivals-dots button.active { background: var(--titan-gold); transform: scale(1.25); }
@media (max-width: 560px) {
  .arrivals-slide img { width: 190px; height: 190px; }
  .arrivals-nav.prev { left: 4px; }
  .arrivals-nav.next { right: 4px; }
}

.titan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.titan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  border: 1px solid #ECE0C4;
  transition: transform .3s ease, box-shadow .3s ease;
}
.titan-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -20px rgba(169,121,31,0.35); }
.titan-card .tc-media {
  width: 140px; height: 140px; flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: radial-gradient(circle at 50% 35%, #FFFFFF 0%, #F6F1E4 100%);
  display: flex; align-items: center; justify-content: center;
}
.titan-card .tc-media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.titan-card h4 { font-size: 19px; margin-bottom: 8px; }
.titan-card p { font-size: 14.5px; line-height: 1.6; color: var(--slate); }

@media (max-width: 800px) {
  .titan-grid { grid-template-columns: 1fr; }
  .titan-card { flex-direction: column; text-align: center; }
}

/* =========================================================================
   BRANDS
   ========================================================================= */
#brands { background: var(--ink); }
#brands .section-head p { color: var(--on-dark-soft); }
.brand-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.brand-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.brand-card.samsung-card { background: linear-gradient(135deg, #1A1712, #322C24); }
.brand-card.titan-card { background: linear-gradient(135deg, #3A2B0E, #A9791F); }
.brand-card .brand-word { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
.brand-card .brand-desc { color: rgba(255,255,255,0.78); font-size: 14.5px; max-width: 320px; line-height: 1.6; }
.brand-card .brand-count { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }

@media (max-width: 800px) { .brand-cards { grid-template-columns: 1fr; } }

/* =========================================================================
   COUNTERS
   ========================================================================= */
#counters { background: var(--paper); }
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.counter-item b { font-family: var(--font-display); font-size: 44px; color: var(--samsung-blue); display: block; }
.counter-item span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-soft); }
@media (max-width: 700px) { .counter-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; } }

/* =========================================================================
   CONTACT
   ========================================================================= */
#contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.contact-info {
  background: var(--ink);
  color: var(--on-dark);
  padding: 56px 48px;
}
.contact-info h3 { color: var(--white); font-size: 26px; margin-bottom: 22px; }
.contact-line { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-line .ci-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(237,239,246,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--titan-gold-2); flex-shrink: 0;
}
.contact-line address, .contact-line div { font-style: normal; font-size: 15px; line-height: 1.65; color: var(--on-dark-soft); }
.contact-line strong { color: var(--white); display: block; margin-bottom: 4px; font-weight: 600; }
.contact-cta-row { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

.contact-map {
  position: relative;
  min-height: 340px;
  background: var(--paper);
}
.map-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  background:
    linear-gradient(rgba(184,134,11,0.05) 1px, transparent 1px) 0 0/40px 40px,
    linear-gradient(90deg, rgba(184,134,11,0.05) 1px, transparent 1px) 0 0/40px 40px,
    var(--paper);
  color: var(--slate-soft);
  text-align: center;
  padding: 20px;
}
.map-placeholder i { font-size: 34px; color: var(--samsung-blue); }
.map-placeholder span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; }
.map-pin {
  position: absolute; top: 44%; left: 52%;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--samsung-blue);
  box-shadow: 0 0 0 8px rgba(184,134,11,0.18);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
#site-footer { background: #070C1A; color: var(--on-dark-soft); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { height: 46px; width: auto; display: block; margin-bottom: 14px; }
.footer-brand .brand-fallback { color: var(--white); }
.footer-brand p { margin-top: 18px; font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-col h5 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark); margin-bottom: 18px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14.5px; transition: color .2s ease; }
.footer-col a:hover { color: var(--titan-gold-2); }
.footer-bottom {
  margin-top: 56px; padding-top: 26px;
  border-top: 1px solid rgba(237,239,246,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(237,239,246,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.footer-social a:hover { background: var(--titan-gold); color: var(--ink); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   UTILITIES: scroll-top, loader, reveal animation
   ========================================================================= */
#scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border: none;
  box-shadow: var(--shadow-card);
  z-index: 900;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .3s ease;
}
#scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#scroll-top:hover { background: var(--titan-gold); color: var(--ink); }

#page-loader {
  position: fixed; inset: 0; z-index: 3000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 46px; height: 46px; border-radius: 50%;
  border: 3px solid rgba(237,239,246,0.15);
  border-top-color: var(--titan-gold-2);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .scroll-cue .line { animation: none; }
}

.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 70ms); }
