/* =============================================================
   NewTekno — Crown Navy Theme
   style.css
============================================================= */

/* --- Variables --- */
:root {
  --gold:        #c9a84c;
  --gold-light:  #d9be7a;
  --gold-dark:   #a8883a;
  --bg:          #0a1628;
  --bg-2:        #0e1d36;
  --bg-3:        #132440;
  --bg-4:        #1a2d50;
  --bg-deep:     #060e1a;
  --border:      #1a2e48;
  --border-2:    #233d5e;
  --text:        #ccd8e8;
  --text-muted:  #6a8aaa;
  --text-dim:    #2e4560;
  --white:       #ffffff;
  --nav-h:       82px;
  --radius:      10px;
  --radius-lg:   18px;
  --t:           0.3s ease;
  --shadow:      0 16px 48px rgba(0,0,0,0.4);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow', 'Inter', sans-serif;
  font-weight: 800; line-height: 1.1;
  color: var(--white); letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 700; letter-spacing: 0; }
p  { color: var(--text-muted); line-height: 1.8; }

/* --- Layout --- */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 36px; }
.section     { padding: 110px 0; }
.section-alt { padding: 110px 0; background: var(--bg-2); }
.section-sm  { padding: 60px 0; }

/* --- Tag pill --- */
.tag, .section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.3); border-radius: 100px;
  padding: 5px 14px; margin-bottom: 20px;
}
.tag::before, .section-tag::before { content: '+'; font-size: 0.85rem; }
.tag.center, .section-tag.center { display: block; text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em;
  transition: all var(--t); white-space: nowrap; cursor: pointer; border: none;
}
.btn-gold         { background: var(--gold); color: #000; }
.btn-gold:hover   { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.3); }
.btn-outline      { border: 1.5px solid var(--border-2); color: var(--text); background: transparent; }
.btn-outline:hover{ border-color: var(--gold); color: var(--gold); }
.btn-ghost        { border: 1.5px solid var(--border-2); color: var(--text); background: transparent; }
.btn-ghost:hover  { border-color: var(--gold); color: var(--gold); }

/* --- Text utils --- */
.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.text-center{ text-align: center; }

/* --- Fade-up animation --- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =============================================================
   NAVIGATION
============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  background: rgba(10,22,40,0.88); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: rgba(6,14,26,0.98);
  box-shadow: 0 2px 32px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 36px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--text-muted);
  transition: color var(--t); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-lang {
  font-size: 0.72rem; color: var(--text-muted); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 5px; transition: all var(--t);
}
.nav-lang:hover { border-color: var(--gold); color: var(--gold); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t); }
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(6,14,26,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 24px 36px 32px;
  flex-direction: column; gap: 4px; z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-muted);
  padding: 10px 0; border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* =============================================================
   HOME HERO
============================================================= */
.hero {
  min-height: 100vh; padding-top: var(--nav-h);
  background: var(--bg); display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/hero-developer.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,22,40,0.97) 50%, rgba(10,22,40,0.72) 100%);
}
.hero-glow {
  position: absolute; top: -120px; right: -120px; z-index: 1;
  width: 700px; height: 700px; pointer-events: none;
  background: radial-gradient(circle, rgba(201,168,76,0.09) 0%, transparent 65%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: 1200px; margin: 0 auto; padding: 60px 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 32px; height: 2px; background: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 26px; }
.hero h1 em { color: var(--gold); font-style: normal; display: block; }
.hero-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 480px; line-height: 1.85; margin-bottom: 42px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: var(--border); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
}
.hero-stat { background: rgba(14,29,54,0.85); padding: 18px 10px; text-align: center; }
.hero-stat-num { font-family: 'Barlow', sans-serif; font-size: 1.45rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 4px; }
.hero-stat-num span { color: var(--gold); }
.hero-stat-label { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.04em; }
.hero-photo {
  width: 100%; height: 520px; border-radius: var(--radius-lg); overflow: hidden;
  background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=800&auto=format&fit=crop&q=80') center/cover no-repeat;
  border: 1px solid var(--border-2); box-shadow: 0 32px 80px rgba(0,0,0,0.5); position: relative;
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,22,40,0.7) 100%);
}
.hero-badge {
  position: absolute; bottom: -18px; left: -18px; z-index: 3;
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: flex; align-items: center; gap: 14px;
}
.hero-badge-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.hero-badge-title { font-size: 0.8rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.hero-badge-sub   { font-size: 0.68rem; color: var(--text-muted); }

/* =============================================================
   PAGE HERO (inner pages)
============================================================= */
.page-hero {
  padding: 160px 0 80px; text-align: left; position: relative; overflow: hidden;
  background: var(--bg-2);
}
.page-hero-img {
  background-size: cover; background-position: center;
}
.page-hero-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,22,40,0.96) 55%, rgba(10,22,40,0.7) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 16px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--text-muted); }
.breadcrumb a { color: var(--gold); transition: color var(--t); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--text-dim); }

/* =============================================================
   CERTIFICATIONS BAR
============================================================= */
.certs-bar { padding: 26px 0; background: var(--bg-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.certs-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.certs-label { font-size: 0.67rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); white-space: nowrap; }
.certs-list { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; }
.cert-item { font-family: 'Barlow', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; transition: color var(--t); }
.cert-item:hover { color: var(--gold); }

/* =============================================================
   ABOUT (home)
============================================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { margin-bottom: 22px; }
.about-text p  { margin-bottom: 18px; }
.about-text strong { color: var(--white); }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 34px; }
.cert-tag {
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: 6px; padding: 5px 14px;
  font-size: 0.74rem; font-weight: 600; color: var(--text-muted);
}
.about-photo-wrap { display: flex; flex-direction: column; gap: 14px; }
.about-photo, .img-strip {
  width: 100%; height: 290px; border-radius: var(--radius-lg);
  object-fit: cover; border: 1px solid var(--border); box-shadow: var(--shadow);
}
.about-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--border);
}
.about-stat { background: var(--bg-3); padding: 26px 16px; text-align: center; transition: background var(--t); }
.about-stat:hover { background: var(--bg-4); }
.about-stat-num { font-family: 'Barlow', sans-serif; font-size: 1.9rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 5px; }
.about-stat-num span { color: var(--gold); }
.about-stat-label { font-size: 0.71rem; color: var(--text-muted); }

/* =============================================================
   WHY CHOOSE US
============================================================= */
.why-header { text-align: center; margin-bottom: 60px; }
.why-header h2, .section-title { margin-bottom: 14px; }
.section-subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1rem; }
.section-header { text-align: center; margin-bottom: 60px; }
.why-grid-outer {
  display: grid; grid-template-columns: 1fr 280px 1fr;
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.why-col { display: flex; flex-direction: column; }
.why-feature {
  padding: 30px 28px; border-bottom: 1px solid var(--border);
  display: flex; gap: 16px; align-items: flex-start;
  transition: background var(--t); background: var(--bg);
}
.why-feature:last-child { border-bottom: none; }
.why-col:first-child .why-feature { border-right: 1px solid var(--border); }
.why-col:last-child  .why-feature { border-left: 1px solid var(--border); }
.why-feature:hover { background: var(--bg-2); }
.why-icon {
  width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.why-feature h4 { color: var(--white); margin-bottom: 5px; }
.why-feature p  { font-size: 0.83rem; }
.why-center-img {
  position: relative; overflow: hidden; min-height: 360px;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=600&auto=format&fit=crop&q=80') center/cover no-repeat;
}
.why-center-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.85) 100%);
}
.why-center-caption { position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 1; }
.why-center-count { font-family: 'Barlow', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.why-center-caption p { font-size: 0.76rem; color: rgba(200,220,240,0.7); }

/* =============================================================
   STATS BAR
============================================================= */
.stats-bar { background: var(--bg-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 72px 0; }
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 0 36px; display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }
.stat-item { padding: 0 24px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Barlow', sans-serif; font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 10px; }
.stat-num span { color: var(--gold); }
.stat-label { font-size: 0.79rem; color: var(--text-muted); letter-spacing: 0.04em; }

/* =============================================================
   SERVICES — HOME GRID (photo cards)
============================================================= */
.services-home-header { display: grid; grid-template-columns: 1fr auto; align-items: flex-end; margin-bottom: 48px; gap: 24px; }
.services-home-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.service-photo-card { position: relative; overflow: hidden; cursor: pointer; }
.service-photo-bg {
  width: 100%; height: 270px; background-size: cover; background-position: center;
  transition: transform 0.6s ease; filter: brightness(0.72);
}
.service-photo-card:hover .service-photo-bg { transform: scale(1.06); filter: brightness(0.45); }
.service-photo-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 20%, rgba(6,14,26,0.95) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px 22px;
}
.service-photo-num { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 6px; font-weight: 700; }
.service-photo-card h3  { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.service-photo-card p   { font-size: 0.8rem; color: rgba(180,210,235,0.75); margin-bottom: 16px; line-height: 1.6; opacity: 0; transform: translateY(8px); transition: all 0.3s ease; }
.service-photo-card:hover p { opacity: 1; transform: translateY(0); }
.service-photo-card .s-btn { padding: 9px 20px; font-size: 0.78rem; background: var(--gold); color: #000; border-radius: 6px; font-weight: 600; display: inline-block; opacity: 0; transform: translateY(8px); transition: all 0.3s ease 0.05s; }
.service-photo-card:hover .s-btn { opacity: 1; transform: translateY(0); }
.service-more-tile { background: var(--bg-3); display: flex; align-items: center; justify-content: center; height: 270px; cursor: pointer; transition: background var(--t); }
.service-more-tile:hover { background: var(--bg-4); }
.service-more-tile-inner { text-align: center; }
.service-more-num-big { font-family: 'Barlow', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--gold); margin-bottom: 10px; }
.service-more-tile h3 { color: var(--white); margin-bottom: 14px; font-size: 1rem; }

/* =============================================================
   SERVICES — FULL PAGE LIST
============================================================= */
.services-intro { text-align: center; padding-bottom: 20px; }
.service-full {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px; margin-bottom: 2px;
  display: grid; grid-template-columns: 200px 1fr; gap: 48px; align-items: start;
  transition: border-color var(--t), background var(--t);
}
.service-full:hover { border-color: rgba(201,168,76,0.3); background: var(--bg-4); }
.service-full:first-of-type { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.service-full:last-of-type  { border-radius: 0 0 var(--radius-lg) var(--radius-lg); margin-bottom: 0; }
.service-full-left { text-align: center; }
.service-full-num {
  font-family: 'Barlow', sans-serif; font-size: 4.5rem; font-weight: 900;
  color: rgba(201,168,76,0.12); line-height: 1; margin-bottom: 12px;
}
.service-full-icon {
  width: 64px; height: 64px; margin: 0 auto 12px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.service-full-tag { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.service-full-right h3 { font-size: 1.35rem; margin-bottom: 14px; }
.service-full-right > p { margin-bottom: 20px; }
.service-full-right ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.service-full-right li {
  font-size: 0.86rem; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 8px;
}
.service-full-right li::before { content: '✓'; color: var(--gold); flex-shrink: 0; font-weight: 700; }
.service-divider-img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: var(--radius-lg); margin: 32px 0; border: 1px solid var(--border);
}

/* =============================================================
   ONE PARTNER BANNER
============================================================= */
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.partner-checks { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.why-point { display: flex; gap: 14px; align-items: flex-start; }
.why-point-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: var(--gold); font-weight: 700;
}
.why-point-text h4 { font-size: 0.92rem; margin-bottom: 2px; color: var(--white); }
.why-point-text p { font-size: 0.84rem; }
.partner-right { display: flex; flex-direction: column; gap: 12px; }
.partner-right img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--border); }

/* =============================================================
   MISSION QUOTE BANNER
============================================================= */
.mission-section { background: var(--bg-2); }
.mission-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.mission-quote-mark { font-family: 'Barlow', sans-serif; font-size: 6rem; font-weight: 900; color: var(--gold); line-height: 0.7; margin-bottom: 24px; opacity: 0.45; }
.mission-text { font-size: 1.25rem; line-height: 1.82; color: var(--text); font-style: italic; margin-bottom: 36px; }
.mission-divider { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 22px; opacity: 0.5; }
.mission-label { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }

/* =============================================================
   PROCESS
============================================================= */
.process-header { text-align: center; margin-bottom: 60px; }
.process-header h2 { max-width: 580px; margin: 0 auto 14px; }
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--border);
}
.process-step { padding: 40px 28px; background: var(--bg); transition: background var(--t); }
.process-step:hover { background: var(--bg-2); }
.process-step-num {
  font-family: 'Barlow', sans-serif; font-size: 3.5rem; font-weight: 900;
  color: var(--border); line-height: 1; margin-bottom: 20px; transition: color var(--t);
}
.process-step:hover .process-step-num { color: var(--gold); }
.process-step h3 { color: var(--white); margin-bottom: 12px; font-size: 1rem; }
.process-step p  { font-size: 0.84rem; line-height: 1.75; }

/* =============================================================
   ABOUT PAGE — STORY
============================================================= */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.story-left h2 { margin-bottom: 22px; }
.story-left p  { margin-bottom: 18px; }
.story-right { display: flex; flex-direction: column; gap: 16px; }
.story-right img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.mission-card, .vision-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  border-left: 3px solid var(--gold);
}
.mission-card h3, .vision-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--gold); }
.mission-card p, .vision-card p { font-size: 0.88rem; }
.stat-highlight {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; text-align: center;
}
.stat-highlight-num { font-family: 'Barlow', sans-serif; font-size: 3rem; font-weight: 800; color: var(--gold); }
.stat-highlight p { font-size: 0.85rem; margin-top: 8px; }

/* =============================================================
   ABOUT PAGE — LEADERSHIP
============================================================= */
.leadership-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px;
  display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: start;
}
.leadership-icon {
  width: 72px; height: 72px; border-radius: var(--radius-lg);
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.leadership-info h3 { font-size: 1.3rem; margin-bottom: 6px; }
.leadership-role { font-size: 0.82rem; color: var(--gold); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.leadership-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.leadership-info p { margin-bottom: 14px; }
.leadership-info strong { color: var(--white); }
.team-quote {
  background: var(--bg-4); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin-top: 20px;
  font-style: italic; font-size: 1rem; color: var(--text); line-height: 1.75;
}

/* =============================================================
   VALUES
============================================================= */
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.value-card { background: var(--bg-3); padding: 36px 24px; transition: background var(--t); }
.value-card:hover { background: var(--bg-4); }
.value-num { font-family: 'Barlow', sans-serif; font-size: 3rem; font-weight: 900; color: var(--border); line-height: 1; margin-bottom: 16px; transition: color var(--t); }
.value-card:hover .value-num { color: var(--gold); }
.value-card h4 { font-size: 1rem; color: var(--white); margin-bottom: 10px; }
.value-card p  { font-size: 0.83rem; }

/* =============================================================
   RESEARCH PAGE
============================================================= */
.research-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.research-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.research-area {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 36px 0; border-bottom: 1px solid var(--border);
}
.research-area:last-of-type { border-bottom: none; }
.research-area-icon {
  width: 56px; height: 56px; border-radius: var(--radius); flex-shrink: 0;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.research-area-content h3 { font-size: 1.1rem; margin-bottom: 10px; }
.research-area-content p  { font-size: 0.9rem; }
.research-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.research-service-card { background: var(--bg-3); padding: 36px 28px; transition: background var(--t); }
.research-service-card:hover { background: var(--bg-4); }
.research-service-card .service-icon { font-size: 1.8rem; margin-bottom: 16px; }
.research-service-card h3 { font-size: 1rem; margin-bottom: 12px; }
.research-service-card p  { font-size: 0.85rem; margin-bottom: 16px; }
.best-for { font-size: 0.72rem; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border-top: 1px solid var(--border); padding-top: 14px; margin-top: auto; }

/* =============================================================
   CONTACT PAGE
============================================================= */
.contact-grid { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: start; }
.contact-info-box {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.contact-info-header {
  background: var(--bg-4); border-bottom: 1px solid var(--border);
  padding: 28px 28px 22px;
}
.contact-info-header h3 { font-size: 1.1rem; margin-bottom: 2px; }
.contact-info-header p  { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.contact-info-body { padding: 24px 28px; }
.contact-item { padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-item h4 { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
.contact-item a  { color: var(--gold); font-size: 0.9rem; font-weight: 600; transition: color var(--t); }
.contact-item a:hover { color: var(--gold-light); }
.contact-item p  { font-size: 0.88rem; }
.contact-social { display: flex; gap: 8px; margin-top: 8px; }
.contact-social a {
  width: 32px; height: 32px; border-radius: 6px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; color: var(--text-muted); transition: all var(--t);
}
.contact-social a:hover { border-color: var(--gold); color: var(--gold); }
.contact-free-consult {
  background: var(--bg-3); border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg); padding: 24px 28px; margin-top: 16px;
}
.contact-free-consult h4 { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.contact-free-consult p { font-size: 0.86rem; }
.contact-form-box { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px; }
.contact-form-box h2 { font-size: 1.8rem; margin-bottom: 10px; }
.contact-form-box > p { margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-4); border: 1px solid var(--border-2);
  color: var(--text); border-radius: var(--radius); padding: 12px 16px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  transition: border-color var(--t);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select option { background: var(--bg-3); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; font-size: 0.95rem; padding: 16px; }
.service-areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.service-area-item { padding: 32px 24px; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.service-area-icon { font-size: 2rem; margin-bottom: 12px; }
.service-area-item h4 { margin-bottom: 8px; color: var(--white); }
.service-area-item p  { font-size: 0.88rem; }

/* =============================================================
   FAQs
============================================================= */
.faqs-container { max-width: 860px; margin: 0 auto; }
.faq-category { margin-bottom: 48px; }
.faq-category-title {
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 2px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; gap: 16px;
  transition: color var(--t);
}
.faq-question:hover h4 { color: var(--gold); }
.faq-question h4 { font-size: 0.95rem; color: var(--text); font-weight: 600; letter-spacing: 0; line-height: 1.4; flex: 1; }
.faq-toggle {
  width: 28px; height: 28px; border: 1px solid var(--border-2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold); font-weight: 700; flex-shrink: 0;
  transition: all var(--t);
}
.faq-item.open .faq-toggle { background: var(--gold); color: #000; border-color: var(--gold); transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 0 24px; }
.faq-answer-inner p { font-size: 0.9rem; margin-bottom: 12px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner ul { margin: 8px 0 0 8px; display: flex; flex-direction: column; gap: 6px; }
.faq-answer-inner li { font-size: 0.88rem; color: var(--text-muted); display: flex; gap: 8px; }
.faq-answer-inner li::before { content: '–'; color: var(--gold); }
.faq-still-questions { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px; text-align: center; margin-top: 60px; }
.faq-still-questions h2 { margin-bottom: 12px; }
.faq-still-questions p { margin-bottom: 32px; }
.faq-still-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.faq-contact-info { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.faq-contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-muted); }
.faq-contact-item span { color: var(--gold); }

/* =============================================================
   CTA SECTION
============================================================= */
.cta-section { background: var(--bg-deep); position: relative; overflow: hidden; padding: 120px 0; }
.cta-section::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; pointer-events: none;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
}
.cta-section::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.4;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 18px; }
.cta-inner p  { max-width: 520px; margin: 0 auto 44px; color: var(--text-muted); font-size: 1rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.cta-contact-info {
  display: flex; gap: 44px; justify-content: center; flex-wrap: wrap;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.cta-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-muted); }
.cta-contact-item span { color: var(--gold); font-size: 1.1rem; }

/* =============================================================
   FOOTER
============================================================= */
.footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-logo img { height: 28px; width: auto; margin-bottom: 18px; opacity: 0.7; }
.footer-desc { font-size: 0.84rem; line-height: 1.75; max-width: 270px; margin-bottom: 28px; color: var(--text-muted); }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 6px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; color: var(--text-dim); transition: all var(--t);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { font-size: 0.84rem; color: var(--text-muted); transition: color var(--t); }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--text-muted); margin-bottom: 11px; }
.footer-contact-item span { color: var(--gold); width: 16px; text-align: center; }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.76rem; color: var(--text-dim);
}
.footer-bottom a { color: var(--gold); }

/* =============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 1024px) {
  .why-grid-outer { grid-template-columns: 1fr; }
  .why-center-img { min-height: 260px; display: none; }
  .why-col:first-child .why-feature { border-right: none; }
  .why-col:last-child  .why-feature { border-left: none; }
  .values-grid { grid-template-columns: repeat(3,1fr); }
  .service-full { grid-template-columns: 1fr; gap: 24px; }
  .service-full-left { display: flex; align-items: center; gap: 16px; text-align: left; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .container { padding: 0 20px; }
  .section, .section-alt { padding: 72px 0; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }

  .hero-inner    { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo    { height: 320px; }
  .hero-badge    { left: 0; bottom: -14px; }
  .hero-stats-row{ grid-template-columns: repeat(2,1fr); }

  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .story-grid    { grid-template-columns: 1fr; gap: 40px; }
  .partner-grid  { grid-template-columns: 1fr; gap: 40px; }
  .research-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-inner   { grid-template-columns: 1fr; gap: 40px; }

  .services-home-grid  { grid-template-columns: 1fr 1fr; }
  .services-home-header{ grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: 1fr 1fr; }
  .stats-inner   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-item     { border-right: none; padding: 0; }

  .contact-grid  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .service-full-right ul { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .research-services-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }

  .leadership-card { grid-template-columns: 1fr; gap: 24px; }
  .certs-inner   { justify-content: center; }
  .certs-list    { gap: 24px; justify-content: center; }
}

@media (max-width: 480px) {
  .services-home-grid { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .hero-stats-row{ grid-template-columns: 1fr 1fr; }
  .service-areas-grid { grid-template-columns: 1fr; }
  .research-stats-grid { grid-template-columns: 1fr 1fr; }
}
