/* ════════════════════════════════════════════
   KOOKI — main.css
   Sections:
   1. Variables & Reset
   2. Header & Nav
   3. Sidebar
   4. Buttons
   5. Hero Banner (index)
   6. Tickers Strip (index)
   7. Stats Strip
   8. Section Headers
   9. Category Cards (index)
   10. How It Works
   11. Why Us
   12. Testimonials
   13. Page Hero (inner pages)
   14. Services Page
   15. Pricing Section
   16. About Page
   17. Timeline
   18. Team
   19. CTA Band
   20. Contact Page
   21. FAQ
   22. Footer
   23. Animations
   24. Responsive
════════════════════════════════════════════ */

/* ── 1. VARIABLES & RESET ── */
:root {
  --white:         #ffffff;
  --off-white:     #f8f8f6;
  --light-gray:    #f0efec;
  --mid-gray:      #c8c7c2;
  --dark-gray:     #3a3a38;
  --black:         #111110;
  --accent:        #1a1a18;
  --gold:          #b8966e;
  --gold-light:    #d4b896;
  --green:         #2d6a4f;
  --green-light:   #e8f5ee;
  --blue:          #1c3d5a;
  --blue-light:    #e8f0f7;
  --purple:        #3d2b5a;
  --purple-light:  #f0eaf7;
  --amber:         #7a4f1e;
  --amber-light:   #fdf3e7;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ── 2. HEADER & NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.325);
  backdrop-filter: blur(12px);
 /* border-bottom: 1px solid var(--light-gray);*/
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 72px;
}

.logo {
  width: 160px;
  filter: grayscale(30%);
  border-radius: 10px;
}

.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: rgb(27, 81, 125);
  text-decoration: none;
}

.logo-text span { color: rgb(105, 139, 166); }

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

nav ul li a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-gray);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}

nav ul li a:hover,
nav ul li a.active-nav {
  background: var(--light-gray);
  color: var(--black);
}

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--dark-gray) !important; }

.dropdown { position: relative; }

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  min-width: 190px;
  padding: 8px;
  z-index: 200;
}

.dropdown-content a {
  display: block;
  padding: 9px 14px !important;
  color: var(--dark-gray) !important;
  font-size: 0.85rem;
  border-radius: 6px;
}

.dropdown-content a:hover { background: var(--light-gray) !important; }
.dropdown:hover .dropdown-content { display: block; }

.menu-button {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

/* ── 3. SIDEBAR ── */
.sidebar {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 280px;
  background: var(--black);
  display: none;
  flex-direction: column;
  padding: 24px;
  z-index: 2000;
  gap: 4px;
}
.sidebar.open { display: flex; }

.sidebar a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 8px;
  display: block;
  font-weight: 400;
}
.sidebar a:hover { background: rgba(255,255,255,0.08); }

.sidebar-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  margin-bottom: 16px;
}

.sidebar-cta {
  margin-top: 16px !important;
  background: rgba(255,255,255,0.12) !important;
  font-weight: 600 !important;
}

@media (max-width: 860px) {
  .hideOnMobile { display: none !important; }
  .menu-button  { display: block; }
}

/* ── 4. BUTTONS ── */
.btn-primary {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--dark-gray); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--mid-gray);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.btn-secondary:hover { border-color: var(--black); background: var(--light-gray); transform: translateY(-1px); }

/* Light variant for dark backgrounds */
.btn-secondary-light {
  color: rgba(255,255,255,0.85) !important;
  border-color: rgba(255,255,255,0.3) !important;
}
.btn-secondary-light:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.6) !important;
}

/* ── 5. HERO BANNER (index) ── */
.hero-banner {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-banner-content { max-width: 580px; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: rgba(52, 42, 31, 0.633);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(184,150,110,0.3);
}

.hero-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: rgb(228, 179, 55);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.889);
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── 6. TICKERS STRIP (index) ── */
.tickers-section {
  background: var(--off-white);
  padding: 32px 6%;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--light-gray);
}

.tickers-inner {
  max-width: 1280px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ticker-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.ticker-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }

.ticker-left { display: flex; align-items: center; gap: 12px; }

.ticker-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ticker-name { font-weight: 600; font-size: 0.85rem; color: var(--black); }
.ticker-sub  { font-size: 0.72rem; color: var(--mid-gray); margin-top: 1px; }
.ticker-right { text-align: right; flex-shrink: 0; }

.ticker-price {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
}

.ticker-change {
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 2px;
  font-family: 'Space Mono', monospace;
}

.ticker-sparkline { width: 60px; height: 28px; margin: 0 8px; }

.up   { color: #2d6a4f; }
.down { color: #c0392b; }

/* ── 7. STATS STRIP ── */
.stats-strip {
  background: var(--black);
  padding: 32px 6%;
  display: flex;
  justify-content: center;
}

.stats-inner {
  max-width: 1280px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--white);
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ── 8. SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--black);
  line-height: 1.15;
}

.section-sub {
  margin-top: 14px;
  font-size: 1rem;
  color: var(--dark-gray);
  font-weight: 300;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── 9. CATEGORY CARDS (index) ── */
#category {
  padding: 90px 6%;
  background: var(--white);
}

.cat-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cat-card {
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid transparent;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(0,0,0,0.12); }

/* Image area */
.cat-card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.cat-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.cat-card:hover .cat-card-img { transform: scale(1.04); }

/* Body */
.cat-card-body {
  padding: 28px 32px 36px;
  position: relative;
}

.cat-card.gold   { background: var(--amber-light);  border-color: rgba(184,150,110,0.2); }
.cat-card.forex  { background: var(--green-light);  border-color: rgba(45,106,79,0.15);  }
.cat-card.nfc    { background: var(--purple-light); border-color: rgba(61,43,90,0.15);   }
.cat-card.stocks { background: var(--blue-light);   border-color: rgba(28,61,90,0.15);   }

.cat-card.gold   .cat-icon-bg { background: rgba(184,150,110,0.18); }
.cat-card.forex  .cat-icon-bg { background: rgba(45,106,79,0.18);   }
.cat-card.nfc    .cat-icon-bg { background: rgba(61,43,90,0.18);    }
.cat-card.stocks .cat-icon-bg { background: rgba(28,61,90,0.18);    }

.cat-card.gold   .cat-tag { background: rgba(184,150,110,0.2); color: var(--amber);  }
.cat-card.forex  .cat-tag { background: rgba(45,106,79,0.2);   color: var(--green);  }
.cat-card.nfc    .cat-tag { background: rgba(61,43,90,0.2);    color: var(--purple); }
.cat-card.stocks .cat-tag { background: rgba(28,61,90,0.2);    color: var(--blue);   }

.cat-icon-bg {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.cat-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem;
  color: var(--black);
  margin-bottom: 10px;
}

.cat-desc {
  font-size: 0.88rem;
  color: var(--dark-gray);
  line-height: 1.6;
  font-weight: 300;
  max-width: 340px;
}

.cat-arrow {
  position: absolute;
  bottom: 28px; right: 28px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--black);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translate(2px,-2px); }

.cat-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}

/* ── 10. HOW IT WORKS ── */
#how {
  padding: 90px 6%;
  background: var(--off-white);
}

.steps-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  background: var(--white);
  border-radius: 14px;
  padding: 36px;
  border: 1px solid var(--light-gray);
}

.step-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--mid-gray);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.step-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--dark-gray);
  line-height: 1.65;
  font-weight: 300;
}

/* ── 11. WHY US ── */
#why {
  padding: 90px 6%;
  background: var(--black);
}
#why .section-title  { color: var(--white); }
#why .section-sub    { color: rgba(255,255,255,0.45); }
#why .section-label  { color: var(--gold-light); }

.why-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
}

.why-item {
  background: var(--black);
  padding: 40px 36px;
  transition: background 0.2s;
}
.why-item:hover { background: #1a1a18; }

.why-icon  { font-size: 1.6rem; margin-bottom: 18px; display: block; }
.why-title { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--white); margin-bottom: 10px; }
.why-desc  { font-size: 0.86rem; color: rgba(255,255,255,0.45); line-height: 1.6; font-weight: 300; }

/* ── 12. TESTIMONIALS ── */
.testimonials-section {
  padding: 90px 6%;
  background: var(--off-white);
}

.testimonials-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  padding: 32px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-gray);
  font-weight: 300;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-text::before { content: '"'; font-family: 'DM Serif Display', serif; font-size: 3rem; color: var(--gold); line-height: 0; vertical-align: -0.6em; margin-right: 4px; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--black); }
.testimonial-role { font-size: 0.78rem; color: var(--mid-gray); margin-top: 2px; }

/* ── 13. PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
}
.page-hero-short { height: 340px; }

.page-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.65) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6%;
}

.page-hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  margin: 14px 0;
  line-height: 1.1;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  max-width: 520px;
}

/* ── 14. SERVICES PAGE ── */
.services-intro {
  padding: 90px 6%;
  background: var(--white);
}

.services-intro-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.services-intro-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-gray);
  margin-top: 14px;
  font-weight: 300;
}

.services-intro-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 380px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.services-section {
  padding: 90px 6%;
  background: var(--off-white);
}

.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); }

.service-img-wrap { height: 180px; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-img { transform: scale(1.04); }

.service-body { padding: 28px; }

.service-icon { font-size: 1.6rem; margin-bottom: 14px; display: block; }

.service-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.87rem;
  color: var(--dark-gray);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 18px;
}

.service-list {
  list-style: none;
  margin-bottom: 22px;
}

.service-list li {
  font-size: 0.83rem;
  color: var(--dark-gray);
  padding: 5px 0;
  border-bottom: 1px solid var(--light-gray);
  font-weight: 300;
}
.service-list li:last-child { border-bottom: none; }

.service-link {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ── 15. PRICING ── */
.pricing-section {
  padding: 90px 6%;
  background: var(--white);
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: 16px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.pricing-card-featured {
  border-color: var(--black);
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.pricing-price {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--black);
  line-height: 1;
}
.pricing-price span { font-size: 1rem; color: var(--mid-gray); font-family: 'DM Sans', sans-serif; }

.pricing-period {
  font-size: 0.82rem;
  color: var(--mid-gray);
  margin-bottom: 10px;
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 0.87rem;
  color: var(--dark-gray);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  font-weight: 300;
}
.pricing-features li.muted { color: var(--mid-gray); }
.pricing-features li:last-child { border-bottom: none; }

/* ── 16. ABOUT PAGE ── */
.about-story {
  padding: 90px 6%;
  background: var(--white);
}

.about-story-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-story-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.about-story-text p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.75;
  margin-top: 16px;
  font-weight: 300;
}

/* ── 17. TIMELINE ── */
.timeline-section {
  padding: 90px 6%;
  background: var(--off-white);
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--light-gray);
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(184,150,110,0.25);
}

.timeline-year {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  padding-top: 4px;
}

.timeline-content h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--dark-gray);
  line-height: 1.6;
  font-weight: 300;
}

/* ── 18. TEAM ── */
.team-section {
  padding: 90px 6%;
  background: var(--white);
}

.team-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--off-white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }

.team-img-wrap { height: 220px; overflow: hidden; }
.team-img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s; }
.team-card:hover .team-img { transform: scale(1.03); }

.team-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--black);
  padding: 20px 20px 4px;
}

.team-role {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  padding: 0 20px 12px;
}

.team-bio {
  font-size: 0.82rem;
  color: var(--dark-gray);
  line-height: 1.6;
  font-weight: 300;
  padding: 0 20px 20px;
}

/* ── 19. CTA BAND ── */
.cta-band {
  background: var(--black);
  padding: 80px 6%;
}

.cta-band-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-band-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-band-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
  font-weight: 300;
}

.cta-band-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── 20. CONTACT PAGE ── */
.contact-section {
  padding: 80px 6%;
  background: var(--white);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.contact-form-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 0.9rem;
  color: var(--dark-gray);
  font-weight: 300;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus { border-color: var(--black); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-select { cursor: pointer; }

.form-success {
  display: none;
  background: var(--green-light);
  border: 1px solid rgba(45,106,79,0.2);
  color: var(--green);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.9rem;
  margin-top: 16px;
  font-weight: 500;
}

.contact-info-img-wrap {
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
}
.contact-info-img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.contact-info-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-info-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--black);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.85rem;
  color: var(--dark-gray);
  line-height: 1.5;
  font-weight: 300;
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.contact-social-link {
  width: 38px; height: 38px;
  border: 1.5px solid var(--light-gray);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.contact-social-link:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* ── 21. FAQ ── */
.faq-section {
  padding: 90px 6%;
  background: var(--off-white);
}

.faq-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 30px;
  border: 1px solid var(--light-gray);
}

.faq-q {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 12px;
}

.faq-a {
  font-size: 0.87rem;
  color: var(--dark-gray);
  line-height: 1.65;
  font-weight: 300;
}

/* ── 22. FOOTER ── */
footer {
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  padding: 60px 6% 36px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.87rem;
  color: var(--dark-gray);
  line-height: 1.65;
  margin-top: 14px;
  font-weight: 300;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
  font-family: 'Space Mono', monospace;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--dark-gray);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--black); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--light-gray);
}

.footer-bottom p { font-size: 0.82rem; color: var(--mid-gray); }

.social-links { display: flex; gap: 10px; }

.social-links a {
  width: 34px; height: 34px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark-gray);
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-links a:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* ── 23. ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label    { animation: fadeUp 0.5s ease both; animation-delay: 0.05s; }
.hero-title    { animation: fadeUp 0.5s ease both; animation-delay: 0.15s; }
.hero-desc     { animation: fadeUp 0.5s ease both; animation-delay: 0.25s; }
.hero-actions  { animation: fadeUp 0.5s ease both; animation-delay: 0.35s; }

.ticker-card:nth-child(1) { animation: fadeUp 0.5s ease both; animation-delay: 0.1s; }
.ticker-card:nth-child(2) { animation: fadeUp 0.5s ease both; animation-delay: 0.2s; }
.ticker-card:nth-child(3) { animation: fadeUp 0.5s ease both; animation-delay: 0.3s; }
.ticker-card:nth-child(4) { animation: fadeUp 0.5s ease both; animation-delay: 0.4s; }

/* ── 24. RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .stats-inner    { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item      { border-right: none; }
  .tickers-inner  { grid-template-columns: repeat(2, 1fr); }
  .contact-inner  { grid-template-columns: 1fr; max-width: 640px; }
  .services-intro-inner { grid-template-columns: 1fr; }
  .about-story-inner    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  
  .hero-banner    { height: 480px; }
  .page-hero      { height: 320px; }
  .page-hero-short { height: 260px; }
  .cat-grid       { grid-template-columns: 1fr; }
  .steps-grid     { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr 1fr; }
  .footer-inner   { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; gap: 16px; text-align: center; }
  .timeline-item  { grid-template-columns: 70px 1fr; gap: 16px; }
  .faq-grid       { grid-template-columns: 1fr; }
  .tickers-inner  { grid-template-columns: 1fr; }
  .hero-title     { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .team-grid      { grid-template-columns: 1fr; }
  .hero-banner    { height: 470px; }
  .hero-banner-overlay { background: rgba(10,10,10,0.65); }
}
