/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0e1a;
  color: #e8eaf0;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --navy:    #0a0e1a;
  --navy2:   #0f1525;
  --navy3:   #141c2e;
  --navy4:   #1a2438;
  --gold:    #c8973a;
  --gold2:   #e4b055;
  --gold3:   #f0c46a;
  --text:    #e8eaf0;
  --muted:   #8892a8;
  --border:  rgba(200,151,58,.18);
  --radius:  12px;
  --shadow:  0 8px 40px rgba(0,0,0,.45);
}

/* ===== UTILITIES ===== */
.container { width:100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--navy2); }
.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,151,58,.1);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #fff;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.75;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all .25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0a0e1a;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold2), var(--gold3)); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,151,58,.35); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: rgba(200,151,58,.08); transform: translateY(-2px); }
.gold { color: var(--gold); }
.divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 20px 0 32px;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: all .35s ease;
}
#navbar.scrolled {
  background: rgba(10,14,26,.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  max-width: 200px;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
}
.logo-name span { color: var(--gold); }
.logo-sub {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .02em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--navy2);
  padding: 80px 24px 40px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s;
}
.mobile-menu a.btn {
  color:#0a0e1a;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 12px; justify-content: center; }

/* ===== SVG ICON SIZING ===== */
.service-icon svg        { width: 26px; height: 26px; }
.industry-icon svg       { width: 30px; height: 30px; }
.highlight-icon svg      { width: 18px; height: 18px; }
.why-icon svg            { width: 22px; height: 22px; }
.contact-ic svg          { width: 20px; height: 20px; }
.about-icon-chip svg     { width: 14px; height: 14px; flex-shrink: 0; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.form-note svg           { width: 14px; height: 14px; vertical-align: middle; margin-right: 2px; }
.form-success-icon svg   { width: 56px; height: 56px; color: var(--gold); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url(../banner.jpg) no-repeat center;
  background-size: cover;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .hero-content {
    padding: 120px 0 60px;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,151,58,.08);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 26px;
}
.hero-title .line2 { color: var(--gold); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  /*margin-bottom: 56px;*/
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: .04em;
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--navy3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual { position: relative; }
.about-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), transparent);
}
.about-icon-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.about-icon-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,58,.08);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gold);
}
.about-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-stat {
  background: rgba(200,151,58,.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
}
.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.about-stat-lbl {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 4px;
}
.about-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-weight: 700;
  font-size: .82rem;
  padding: 14px 18px;
  border-radius: 10px;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 8px 24px rgba(200,151,58,.3);
}
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.highlight-icon {
  width: 36px; height: 36px;
  background: rgba(200,151,58,.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.highlight-text { font-size: .88rem; color: var(--muted); line-height: 1.5; }
.highlight-text strong { color: var(--text); display: block; margin-bottom: 2px; font-size: .9rem; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { border-color: rgba(200,151,58,.4); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.4); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(200,151,58,.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}
.service-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.service-desc { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .83rem;
  color: var(--muted);
}
.service-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.value-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color .25s;
}
.value-card:hover { border-color: rgba(200,151,58,.4); }
.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.value-title { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.value-desc { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  z-index: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 64px; height: 64px;
  background: var(--navy3);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
  transition: all .3s;
}
.step-item:hover .step-circle {
  border-color: var(--gold);
  background: rgba(200,151,58,.1);
  box-shadow: 0 0 20px rgba(200,151,58,.2);
}
.step-title { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-desc { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* ===== INDUSTRIES ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.industry-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all .3s;
}
@media screen and (max-width:500px) {
  .industry-card {
    padding: 15px;
  }
}
.industry-card:hover { border-color: rgba(200,151,58,.4); transform: translateY(-4px); }
.industry-icon { font-size: 2rem; margin-bottom: 14px; }
.industry-name { font-size: .9rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.industry-desc { font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* ===== WHY CHOOSE US ===== */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .25s;
}
.why-item:hover { border-color: rgba(200,151,58,.35); }
.why-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-title { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.why-desc { font-size: .83rem; color: var(--muted); line-height: 1.6; }
.why-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-big-card {
  background: linear-gradient(135deg, var(--navy3), var(--navy4));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.why-big-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), transparent);
}
.why-big-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.why-big-label { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.why-small-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-small-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.why-small-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.why-small-lbl { font-size: .78rem; color: var(--muted); margin-top: 4px; }

/* ===== CONTACT ===== */
#contact { background: var(--navy2); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-ic {
  width: 42px; height: 42px;
  background: rgba(200,151,58,.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-val { font-size: .9rem; color: var(--text); line-height: 1.5; }
.contact-form-wrap {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width:500px) {
  .contact-form-wrap {
    padding: 30px 22px;
  }
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), transparent);
}
.form-title { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.form-sub { font-size: .85rem; color: var(--muted); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: .9rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(200,151,58,.55);
  background: rgba(200,151,58,.03);
}
.form-group select option { background: var(--navy3); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(136,146,168,.5); }
.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
}
.form-note { font-size: .76rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* Inline field error hint */
.field-error {
  font-size: .75rem;
  color: #f08080;
  margin-top: 2px;
  display: block;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
}
.form-note { font-size: .76rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* Form states */
.form-error-msg {
  display: none;
  background: rgba(220,60,60,.1);
  border: 1px solid rgba(220,60,60,.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .85rem;
  color: #f08080;
  margin-top: 12px;
  text-align: center;
}
.form-error-msg.visible { display: block; }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 18px; }
.form-success-title { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.form-success-desc { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-about p { font-size: .85rem; color: var(--muted); line-height: 1.7; margin-top: 14px; }
.footer-col-title { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .85rem; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item span { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .8rem; color: var(--muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .8rem; color: var(--muted); transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ===== SCROLL-IN ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ===== BACK TO TOP ===== */
#back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(200,151,58,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 900;
}
#back-top.visible { opacity: 1; pointer-events: all; }
#back-top:hover { transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 68px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-float { right: 0; bottom: -12px; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-wrap { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
