/* ==============================================
   iDynamics Consulting Services — Main Styles
   Brand: Navy Blue + Gold | Dark Theme
   ============================================== */

/* ===== Reset & Variables ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-dark:      #050d18;
  --bg-primary:   #0a1628;
  --bg-surface:   #0f1e35;
  --bg-card:      #122040;
  --blue:         #1a3a8a;
  --blue-light:   #2554c7;
  --gold:         #c9a020;
  --gold-bright:  #e8c040;
  --gold-dim:     rgba(201,160,32,0.12);
  --gold-glow:    rgba(201,160,32,0.25);
  --white:        #ffffff;
  --text:         #dde6f0;
  --text-muted:   #8a9bba;
  --border:       rgba(201,160,32,0.22);
  --border-blue:  rgba(37,84,199,0.25);
  --shadow:       0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold:  0 6px 24px rgba(201,160,32,0.25);
  --grad-dark:    linear-gradient(135deg,#050d18 0%,#0a1628 50%,#0f1e35 100%);
  --grad-gold:    linear-gradient(135deg,#c9a020,#e8c040,#c9a020);
  --grad-blue:    linear-gradient(135deg,#1a3a8a,#2554c7);
  --grad-hero:    linear-gradient(135deg,#050d18 0%,#0a1628 60%,#0d1e40 100%);
  --font-body:    'Inter', sans-serif;
  --font-head:    'Playfair Display', serif;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --ease:         cubic-bezier(0.4,0,0.2,1);
  --t:            all 0.3s var(--ease);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ===== Base Typography ===== */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.15; color: var(--white); }
p  { color: var(--text-muted); line-height: 1.8; }
a  { text-decoration: none; color: inherit; transition: var(--t); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); }

/* ===== Layout Helpers ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-padding { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); background: var(--gold-dim);
  border: 1px solid var(--border);
  padding: 6px 20px; border-radius: 50px; margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem,4vw,3rem);
  color: var(--white); margin-bottom: 16px;
}
.section-title span {
  background: var(--grad-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 580px; margin: 0 auto; line-height: 1.8;
}

/* ===== Divider ===== */
.gold-line { width: 60px; height: 3px; background: var(--grad-gold); border-radius: 2px; margin: 16px 0; }
.gold-line.center { margin: 16px auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 34px; border-radius: 50px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.3px;
  cursor: pointer; border: none; transition: var(--t);
}
.btn-gold {
  background: var(--grad-gold); color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(201,160,32,0.45); }

.btn-outline {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold-dim); transform: translateY(-3px); }

.btn-blue {
  background: var(--grad-blue); color: var(--white);
  box-shadow: 0 6px 24px rgba(26,58,138,0.35);
}
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(26,58,138,0.55); }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0; transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(5,13,24,0.96);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img {
  height: 52px; width: auto;
  filter: drop-shadow(0 2px 10px rgba(201,160,32,0.35));
  transition: var(--t);
}
.nav-logo img:hover { transform: scale(1.04); filter: drop-shadow(0 4px 18px rgba(201,160,32,0.55)); }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
  color: var(--text-muted); padding: 9px 18px; border-radius: 8px;
  position: relative; transition: var(--t);
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: var(--gold-dim); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
}
.nav-cta { margin-left: 16px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--t); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding: 160px 0 90px; position: relative; overflow: hidden;
  background: var(--grad-hero);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(26,58,138,0.35) 0%,transparent 65%);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 80%, rgba(201,160,32,0.07) 0%,transparent 55%);
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-title { font-size: clamp(2.5rem,5vw,4rem); margin-bottom: 16px; }
.page-hero-breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; color: var(--text-muted);
}
.page-hero-breadcrumb a { color: var(--gold); }
.page-hero-breadcrumb a:hover { text-decoration: underline; }
.page-hero-breadcrumb span { color: var(--text-muted); }
.page-hero-line { width: 72px; height: 3px; background: var(--grad-gold); border-radius: 2px; margin: 20px auto 0; }

/* ===== Scroll Animations ===== */
.fade-up     { opacity: 0; transform: translateY(36px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-left   { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-right  { opacity: 0; transform: translateX(40px);  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: translate(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

/* ===== HOME: Hero ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--bg-dark);
}
#particles-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-glow {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 55%, rgba(26,58,138,0.28) 0%, transparent 58%),
    radial-gradient(ellipse at 85% 15%, rgba(201,160,32,0.1) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); background: var(--gold-dim);
  border: 1px solid var(--border); padding: 8px 22px; border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeDown 0.8s var(--ease) both;
}
.badge-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }

.hero-title {
  font-size: clamp(2.8rem,6vw,5.2rem); line-height: 1.08; margin-bottom: 28px;
  animation: fadeUp 0.8s var(--ease) 0.15s both;
}
.hero-title .gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-typed-wrap { display: inline-block; min-width: 280px; }
#typed-text { border-right: 3px solid var(--gold); padding-right: 4px; }

.hero-desc {
  font-size: 1.1rem; color: var(--text-muted); max-width: 560px;
  margin-bottom: 44px; line-height: 1.85;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}
.hero-btns {
  display: flex; gap: 18px; flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.45s both;
}
.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  padding-top: 40px; border-top: 1px solid var(--border-blue);
  animation: fadeUp 0.8s var(--ease) 0.6s both;
}
.hero-stat-num {
  font-size: 2.2rem; font-weight: 900; font-family: var(--font-body);
  background: var(--grad-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; display: block;
}
.hero-stat-lbl { font-size: 12px; color: var(--text-muted); letter-spacing: 0.5px; margin-top: 4px; }

.scroll-hint {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted);
  animation: fadeUp 1s var(--ease) 1.2s both;
}
.scroll-mouse { width: 26px; height: 44px; border: 2px solid var(--border); border-radius: 13px; display: flex; align-items: flex-start; justify-content: center; padding-top: 7px; }
.scroll-ball { width: 4px; height: 10px; background: var(--gold); border-radius: 2px; animation: scrollBall 2s infinite; }

/* ===== HOME: Services strip ===== */
.services-strip { background: var(--bg-primary); }

.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.svc-card {
  background: var(--bg-surface); border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: var(--t); position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-10px); border-color: var(--border); box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 64px; height: 64px; background: var(--gold-dim); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 22px; transition: var(--t);
}
.svc-card:hover .svc-icon { background: var(--gold); transform: scale(1.1) rotate(-6deg); }
.svc-title { font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.svc-card p { font-size: 14px; line-height: 1.75; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 13px; font-weight: 600; margin-top: 18px; transition: var(--t);
}
.svc-link:hover { gap: 14px; }
.svc-link i { font-size: 11px; }

/* ===== HOME: Why Choose Us ===== */
.why-us { background: var(--bg-dark); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.feature { display: flex; gap: 18px; margin-bottom: 28px; }
.feature:last-child { margin-bottom: 0; }
.feature-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--gold-dim); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--gold); transition: var(--t);
}
.feature:hover .feature-icon { background: var(--gold); color: var(--bg-dark); transform: rotate(-8deg); }
.feature-title { font-size: 1.05rem; color: var(--white); margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; }
.feature p { font-size: 14px; }

.visual-block {
  background: var(--bg-surface); border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl); padding: 48px; position: relative; overflow: hidden;
}
.visual-block::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(201,160,32,0.15), transparent);
  border-radius: 50%;
}
.tagline-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.tbadge {
  padding: 14px 12px; background: var(--gold-dim); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 13px; font-weight: 700; letter-spacing: 1px;
  color: var(--gold); text-align: center; transition: var(--t);
}
.tbadge:hover { background: var(--gold); color: var(--bg-dark); transform: translateY(-2px); }
.visual-block-logo { text-align: center; }
.visual-block-logo img { width: 140px; height: 140px; object-fit: contain; margin: 0 auto; filter: drop-shadow(0 8px 20px rgba(201,160,32,0.3)); animation: float 4s ease-in-out infinite; }

/* ===== HOME: Stats ===== */
.stats-section { background: var(--bg-primary); }
.stats-band {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden;
}
.stat-cell {
  padding: 48px 20px; text-align: center;
  border-right: 1px solid var(--border-blue); position: relative;
  background: var(--bg-surface); transition: var(--t);
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--bg-card); }
.stat-num {
  font-size: 3.2rem; font-weight: 900; font-family: var(--font-body); line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-bottom: 10px;
}
.stat-lbl { font-size: 13px; color: var(--text-muted); letter-spacing: 1px; }

/* ===== HOME: CTA Banner ===== */
.cta-wrap { background: var(--bg-dark); }
.cta-box {
  background: linear-gradient(135deg, #0d1f3c 0%, #14285a 50%, #1a3a8a 100%);
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 72px 60px; text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -80px; left: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,160,32,0.12), transparent);
  border-radius: 50%;
}
.cta-box::after {
  content: ''; position: absolute; bottom: -80px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(37,84,199,0.25), transparent);
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 1; }
.cta-box h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 16px; }
.cta-box p  { font-size: 1.05rem; max-width: 540px; margin: 0 auto 36px; }
.cta-btns  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== ABOUT: Story ===== */
.about-story { background: var(--bg-dark); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story-text p { font-size: 1.05rem; margin-bottom: 20px; }
.story-text p:last-child { margin-bottom: 0; }

.story-visual {
  background: var(--bg-surface); border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl); padding: 48px; text-align: center; position: relative;
}
.story-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,160,32,0.08), transparent 60%);
  border-radius: var(--radius-xl);
}
.story-logo-img { width: 180px; height: 180px; object-fit: contain; margin: 0 auto 24px; filter: drop-shadow(0 8px 24px rgba(201,160,32,0.4)); animation: float 4s ease-in-out infinite; }
.story-tagline { font-size: 1.5rem; font-family: var(--font-head); color: var(--white); margin-bottom: 8px; }
.story-sub { font-size: 13px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

/* ===== ABOUT: Mission Vision ===== */
.mv-section { background: var(--bg-primary); }
.mv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mv-card {
  background: var(--bg-surface); border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg); padding: 40px 32px; text-align: center;
  transition: var(--t); position: relative; overflow: hidden;
}
.mv-card::after {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-gold); opacity: 0; transition: opacity 0.4s;
}
.mv-card:hover { transform: translateY(-8px); border-color: var(--border); box-shadow: var(--shadow); }
.mv-icon { font-size: 2.8rem; margin-bottom: 20px; display: block; }
.mv-title { font-size: 1.3rem; color: var(--white); margin-bottom: 14px; }
.mv-card p { font-size: 14px; position: relative; z-index: 1; }

/* ===== ABOUT: Team ===== */
.team-section { background: var(--bg-dark); }
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; max-width: 780px; margin: 0 auto; }

.team-card {
  background: var(--bg-surface); border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl); overflow: hidden; transition: var(--t);
}
.team-card:hover { border-color: var(--border); transform: translateY(-10px); box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.team-avatar {
  height: 260px; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.team-avatar-am { background: linear-gradient(135deg,#0d1b40,#1a3a8a); }
.team-avatar-ak { background: linear-gradient(135deg,#1a2a0d,#2a5a20); }
.team-avatar-inner {
  width: 120px; height: 120px; border-radius: 50%;
  border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 3rem; background: var(--gold-dim); position: relative; z-index: 1;
}
.team-avatar::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-gold); opacity: 0; transition: opacity 0.4s;
}
.team-card:hover .team-avatar::before { opacity: 0.08; }
.team-info { padding: 28px; }
.team-name { font-size: 1.3rem; color: var(--white); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }
.team-bio { font-size: 14px; color: var(--text-muted); margin-top: 14px; line-height: 1.75; }
.team-social { display: flex; gap: 10px; margin-top: 18px; }
.tsoc {
  width: 36px; height: 36px; border: 1px solid var(--border-blue); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
  font-size: 14px; transition: var(--t);
}
.tsoc:hover { background: var(--gold-dim); border-color: var(--border); color: var(--gold); }

/* ===== ABOUT: Values ===== */
.values-section { background: var(--bg-primary); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.val-card {
  background: var(--bg-surface); border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: var(--t);
}
.val-card:hover { border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow); }
.val-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.val-title { font-size: 1rem; font-family: var(--font-body); font-weight: 700; color: var(--white); margin-bottom: 10px; }
.val-card p { font-size: 13px; }

/* ===== SERVICES ===== */
.services-main { background: var(--bg-dark); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.srvc-card {
  background: var(--bg-surface); border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl); padding: 40px 32px; transition: var(--t); position: relative;
}
.srvc-card:hover { border-color: var(--border); transform: translateY(-10px); box-shadow: 0 24px 64px rgba(0,0,0,0.4); }

.srvc-icon-wrap {
  width: 76px; height: 76px; background: var(--gold-dim); border: 1px solid var(--border);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin-bottom: 24px; transition: var(--t);
}
.srvc-card:hover .srvc-icon-wrap { background: var(--gold); transform: scale(1.08); }
.srvc-title { font-size: 1.25rem; color: var(--white); margin-bottom: 14px; }
.srvc-card > p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }

.srvc-features { margin-top: 4px; }
.srvc-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-muted); padding: 6px 0;
  border-bottom: 1px solid var(--border-blue);
}
.srvc-features li:last-child { border-bottom: none; }
.srvc-features li::before {
  content: '✓'; width: 18px; height: 18px; flex-shrink: 0;
  background: var(--gold-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--gold);
}

/* ===== Process ===== */
.process-section { background: var(--bg-primary); }
.process-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; position: relative;
}
.process-row::before {
  content: ''; position: absolute; top: 44px; left: 11%; right: 11%; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--blue-light), var(--gold));
  z-index: 0;
}
.proc-step { text-align: center; position: relative; z-index: 1; }
.proc-num {
  width: 88px; height: 88px; margin: 0 auto 20px;
  background: var(--bg-dark); border: 2px solid var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 900; color: var(--gold); font-family: var(--font-body);
  transition: var(--t);
}
.proc-step:hover .proc-num { background: var(--gold); color: var(--bg-dark); box-shadow: 0 0 0 8px var(--gold-dim); }
.proc-title { font-size: 1rem; font-family: var(--font-body); font-weight: 700; color: var(--white); margin-bottom: 8px; }
.proc-step p { font-size: 13px; }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-dark); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-surface); border: 1px solid var(--border-blue);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--border); }
.faq-q {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 15px; font-weight: 600; color: var(--white); user-select: none;
}
.faq-toggle {
  width: 30px; height: 30px; flex-shrink: 0; background: var(--gold-dim);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 18px; transition: var(--t);
}
.faq-item.open .faq-toggle { background: var(--gold); color: var(--bg-dark); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.42s var(--ease), padding 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 180px; padding-bottom: 20px; }
.faq-a p {
  font-size: 14px; color: var(--text-muted); line-height: 1.8;
  border-top: 1px solid var(--border-blue); padding-top: 16px;
}

/* ===== PORTFOLIO ===== */
.portfolio-section { background: var(--bg-dark); }
.port-filter {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 52px;
}
.filter-btn {
  padding: 10px 26px; border-radius: 50px;
  border: 1px solid var(--border-blue); background: var(--bg-surface);
  color: var(--text-muted); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: var(--t);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold); border-color: var(--gold); color: var(--bg-dark);
}

.port-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.port-card {
  background: var(--bg-surface); border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl); overflow: hidden; transition: var(--t); cursor: pointer;
}
.port-card:hover { border-color: var(--border); transform: translateY(-10px); box-shadow: 0 24px 64px rgba(0,0,0,0.45); }

.port-thumb {
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
}
.port-thumb-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(5,13,24,0.75); opacity: 0; transition: var(--t);
}
.port-card:hover .port-thumb-overlay { opacity: 1; }
.port-view-btn {
  padding: 10px 28px; background: var(--gold); color: var(--bg-dark);
  border-radius: 50px; font-weight: 700; font-size: 13px;
}
.port-body { padding: 26px; }
.port-cat { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.port-title { font-size: 1.1rem; color: var(--white); font-family: var(--font-body); font-weight: 700; margin-bottom: 8px; }
.port-body > p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.port-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.port-tag {
  font-size: 11px; padding: 4px 12px;
  background: var(--bg-card); border: 1px solid var(--border-blue);
  border-radius: 50px; color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact-section { background: var(--bg-dark); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }

.contact-info-panel {
  background: var(--bg-surface); border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl); padding: 40px;
}
.c-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border-blue); }
.c-item:last-child { border-bottom: none; padding-bottom: 0; }
.c-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--gold-dim); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--gold);
}
.c-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.c-val { font-size: 14px; color: var(--text); line-height: 1.65; }

.form-panel {
  background: var(--bg-surface); border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl); padding: 48px;
}
.form-panel-title { font-size: 1.5rem; margin-bottom: 8px; }
.form-panel-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }

.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fg { margin-bottom: 20px; }
.fg label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 13px 18px;
  background: var(--bg-card); border: 1px solid var(--border-blue);
  border-radius: var(--radius); color: var(--text); font-size: 15px;
  font-family: var(--font-body); outline: none; transition: var(--t);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-muted); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold); background: var(--bg-surface);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.fg select option { background: var(--bg-card); }
.fg textarea { resize: vertical; min-height: 130px; }

.form-submit-btn {
  width: 100%; padding: 16px; font-size: 16px;
  justify-content: center; border-radius: var(--radius);
}

/* ===== Map ===== */
.map-section { background: var(--bg-primary); }
.map-box {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border-blue); height: 420px;
}
.map-box iframe { width: 100%; height: 100%; border: none; display: block; }

/* ===== Footer ===== */
.footer { background: var(--bg-dark); border-top: 1px solid var(--border); padding: 88px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 56px; margin-bottom: 64px; }

.footer-brand-logo { height: 58px; width: auto; margin-bottom: 20px; filter: drop-shadow(0 2px 10px rgba(201,160,32,0.25)); }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }

.soc-row { display: flex; gap: 10px; }
.soc-btn {
  width: 40px; height: 40px; background: var(--bg-surface);
  border: 1px solid var(--border-blue); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 15px; transition: var(--t);
}
.soc-btn:hover { background: var(--gold-dim); border-color: var(--border); color: var(--gold); transform: translateY(-2px); }

.footer-col-title {
  font-size: 15px; font-family: var(--font-body); font-weight: 700; color: var(--white);
  margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.foot-links { display: flex; flex-direction: column; gap: 11px; }
.foot-links a {
  font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; transition: var(--t);
}
.foot-links a::before { content: '›'; color: var(--gold); font-size: 16px; }
.foot-links a:hover { color: var(--gold); padding-left: 4px; }

.foot-contact-row { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.foot-contact-row:last-child { margin-bottom: 0; }
.fci { width: 34px; height: 34px; background: var(--gold-dim); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 13px; flex-shrink: 0; }
.fct { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid var(--border-blue); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-tagline { font-size: 12px; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; }

/* ===== Keyframes ===== */
@keyframes fadeDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(24px);  } to { opacity:1; transform:translateY(0); } }
@keyframes pulse    { 0%,100%{transform:scale(1); opacity:1;} 50%{transform:scale(1.5); opacity:0.6;} }
@keyframes scrollBall { 0%{transform:translateY(0);opacity:1;} 100%{transform:translateY(18px);opacity:0;} }
@keyframes float    { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-18px);} }
@keyframes shimmer  { 0%{background-position:-200% center;} 100%{background-position:200% center;} }

/* ===== Responsive ===== */
@media (max-width:1100px) {
  .services-grid, .svc-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-band { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
}
@media (max-width:900px) {
  .mv-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .process-row { grid-template-columns: repeat(2,1fr); }
  .process-row::before { display:none; }
  .port-grid { grid-template-columns: repeat(2,1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .why-grid, .story-grid { grid-template-columns: 1fr; }
  .why-grid .visual-block { order:-1; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:768px) {
  .section-padding { padding: 72px 0; }
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }
  .nav-links.open {
    display:flex; flex-direction:column; position:fixed; inset:0;
    background:rgba(5,13,24,0.97); backdrop-filter:blur(20px);
    align-items:center; justify-content:center; gap:28px; z-index:999;
  }
  .nav-links.open .nav-link { font-size:1.5rem; padding:12px 32px; }
  .svc-grid, .services-grid { grid-template-columns: 1fr; }
  .form-2col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center; }
  .cta-box { padding: 48px 24px; }
  .cta-btns { flex-direction:column; align-items:center; }
}
@media (max-width:560px) {
  .hero-stats { flex-direction:column; gap:20px; }
  .hero-btns { flex-direction:column; }
  .port-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width:380px; }
  .tagline-badges { grid-template-columns: 1fr; }
}
