/* ─── TOKENS ──────────────────────────────────────────── */
:root {
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark:  #9A6F2E;
  --black:      #080808;
  --black-2:    #0F0F0F;
  --black-3:    #181818;
  --black-4:    #222222;
  --white:      #FFFFFF;
  --white-60:   rgba(255,255,255,0.6);
  --white-20:   rgba(255,255,255,0.08);
  --gold-glow:  rgba(201,168,76,0.18);
  --radius:     16px;
  --radius-sm:  8px;
  --transition: 0.4s cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Sarabun', 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; }

/* ─── TYPOGRAPHY ──────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--white-60); }

.gold-text { color: var(--gold); }

/* ─── LAYOUT ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }

/* ─── SECTION HEADER ──────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-eyebrow::before { right: 100%; margin-right: -16px; }
.section-eyebrow::after  { left: 100%;  margin-left:  -16px; }
.section-header h2 { margin-bottom: 16px; }
.section-desc { max-width: 560px; margin: 0 auto; }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: var(--black);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}
.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-full { width: 100%; text-align: center; }

/* ─── NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-60);
  transition: color 0.2s;
  border-radius: 4px;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black) !important;
  font-weight: 600;
  padding: 8px 20px;
}
.nav-links .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-btn {
  padding: 6px 14px;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.lang-btn:hover { background: var(--gold-glow); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(8,8,8,0.98);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 16px 24px 24px;
}
.mobile-menu a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white-60);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.5) 0%,
    rgba(8,8,8,0.7) 40%,
    rgba(8,8,8,0.92) 100%
  );
}
.hero-particles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201,168,76,0.06) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeUp 1s ease 0.2s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 24px;
  background: rgba(201,168,76,0.08);
}
.hero-logo-big {
  width: auto;
  max-width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 28px;
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(201,168,76,0.2);
}
.hero-title {
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ─── MARQUEE ─────────────────────────────────────────── */
.marquee-wrap {
  background: linear-gradient(135deg, #100e07 0%, #1a1500 100%);
  border-top:    1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.marquee-track .dot { color: var(--gold-dark); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SERVICES ────────────────────────────────────────── */
.services { background: var(--black-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.06);
}
.service-card--featured {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(145deg, #141005, #0f0e0a);
  position: relative;
}
.service-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-img-wrap img { transition: transform 0.6s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(8,8,8,0.9) 100%);
}
.service-number {
  position: absolute;
  top: 16px; right: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  line-height: 1;
}
.service-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
}
.service-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-icon { font-size: 1.8rem; margin-bottom: 12px; }
.service-body h3 { margin-bottom: 12px; font-size: 1.15rem; }
.service-body p  { margin-bottom: 20px; font-size: 0.9rem; flex: 1; }
.service-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--white-60);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 5px;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: letter-spacing 0.2s;
}
.service-link:hover { letter-spacing: 0.1em; }

/* ─── ABOUT ───────────────────────────────────────────── */
.about { background: var(--black); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 540px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.2);
}
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 52%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--black-3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.about-badge-float {
  position: absolute;
  bottom: 90px; left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}
.badge-number { display: block; font-size: 1.8rem; font-weight: 700; font-family: 'Playfair Display', serif; line-height: 1; }
.badge-label  { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; margin-top: 4px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p  { margin-bottom: 16px; }
.about-pillars {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pillar h4 { color: var(--white); margin-bottom: 4px; }
.pillar p  { font-size: 0.875rem; margin: 0; }

/* ─── STATS ───────────────────────────────────────────── */
.stats-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.stats-bg { position: absolute; inset: 0; }
.stats-bg img { width: 100%; height: 100%; object-fit: cover; }
.stats-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.93) 0%, rgba(15,10,0,0.88) 100%);
}
.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { padding: 24px; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
}
.stat-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── PROCESS ─────────────────────────────────────────── */
.process { background: var(--black-2); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.step-line {
  position: absolute;
  top: 48px; right: -1px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.3;
}
.step-line.hide-line { display: none; }
.process-step h4 { color: var(--gold-light); margin-bottom: 10px; }
.process-step p  { font-size: 0.875rem; }

/* ─── CLIENTS / INDUSTRIES ────────────────────────────── */
.clients { background: var(--black); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  position: relative;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.industry-card img {
  transition: transform 0.6s ease;
  filter: brightness(0.5) saturate(0.4);
}
.industry-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.35) saturate(0.3);
}
.industry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  text-align: center;
}
.industry-icon { font-size: 2rem; margin-bottom: 8px; }
.industry-overlay h4 { color: var(--white); font-size: 1rem; }

/* ─── TESTIMONIALS ────────────────────────────────────── */
.testimonials { background: var(--black-2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  position: relative;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.testi-quote {
  position: absolute;
  top: 16px; left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.testi-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 24px;
  margin-top: 16px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
}
.testi-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(201,168,76,0.3);
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--white); }
.testi-author span  { font-size: 0.8rem; color: var(--gold); }

/* ─── CONTACT ─────────────────────────────────────────── */
.contact { background: var(--black); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-content h2 { margin-bottom: 16px; }
.contact-content > p { margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  font-size: 1.2rem;
  width: 44px; height: 44px;
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item a,
.contact-item span { font-size: 0.95rem; color: var(--white-60); }
.contact-item a:hover { color: var(--gold); }

/* ─── FORM ────────────────────────────────────────────── */
.contact-form {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--black-3); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--black-2);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.875rem; margin-bottom: 24px; }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold-glow); border-color: var(--gold); }
.footer-address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  margin-top: 12px;
}
.footer-address a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-address a:hover { color: var(--gold); }
.tax-id {
  display: inline-block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}
.contact-item .tax-id {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-links h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-links a {
  padding: 6px 0;
  font-size: 0.875rem;
  color: var(--white-60);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  padding: 20px 24px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin: 0; }

/* ─── REVEAL ANIMATION ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid    { grid-template-columns: 1fr 1fr; }
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .about-images  { height: 360px; }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid   { grid-template-columns: 1fr; }
  .industry-grid   { grid-template-columns: repeat(2, 1fr); }
  .testi-grid      { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; gap: 48px; }
  .form-row        { grid-template-columns: 1fr; }
  .footer-inner    { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions    { flex-direction: column; align-items: center; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .process-steps   { grid-template-columns: 1fr 1fr; }
  .contact-form    { padding: 28px 20px; }
  .about-images    { height: 300px; }
}
@media (max-width: 480px) {
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
