/* ============================================================
   FIKRTNA TECHNOLOGY — Main Stylesheet
   Brand: Navy #060F1A · Gold #F5A800 · White #FFFFFF
   Fonts: Bebas Neue (display) · Syne (headings) · Space Grotesk (body)
   ============================================================ */

:root {
  --navy:     #060F1A;
  --navy-2:   #0B1E30;
  --navy-3:   #0F2840;
  --gold:     #F5A800;
  --gold-dim: #C8890A;
  --white:    #FFFFFF;
  --muted:    rgba(255,255,255,0.45);
  --border:   rgba(255,255,255,0.07);
  --radius:   0px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; }

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.35;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ─── CUSTOM CURSOR ─── */
.cursor {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s ease, width .25s, height .25s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, width .25s, height .25s, opacity .25s;
  opacity: 0.5;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 26px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .4s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(6,15,26,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 60px;
  border-bottom-color: var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 48px; width: auto;
  /* Logo is placed in /images/logo.png — replace with your actual Fikrtna logo */
}
.nav-links {
  display: flex; gap: 44px; list-style: none;
}
.nav-links a {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  padding: 13px 28px;
  clip-path: polygon(0 0, 93% 0, 100% 20%, 100% 100%, 7% 100%, 0 80%);
  transition: all .3s;
  display: inline-block;
}
.nav-cta:hover { background: var(--white); transform: translateY(-2px); }

/* Hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.nav-burger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); transition: all .3s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 28px 0; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; letter-spacing: 0.05em;
  color: var(--white); transition: color .3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-cta {
  font-size: 22px !important;
  background: var(--gold); color: var(--navy) !important;
  padding: 14px 40px; display: inline-block;
  font-family: 'Syne', sans-serif !important;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ─── SHARED SECTION STYLES ─── */
.section-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before {
  content: ''; width: 36px; height: 1px; background: var(--gold);
}
.section-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.gold-bar { width: 60px; height: 3px; background: var(--gold); margin-top: 32px; }
.body-text {
  font-size: 16px; line-height: 1.9;
  color: var(--muted); margin-bottom: 18px;
}

/* Buttons */
.btn-primary {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  padding: 18px 40px; border: 2px solid var(--gold);
  display: inline-flex; align-items: center; gap: 10px;
  clip-path: polygon(0 0, 95% 0, 100% 15%, 100% 100%, 5% 100%, 0 85%);
  transition: all .3s; cursor: none;
}
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-secondary {
  font-family: 'Syne', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white);
  padding: 18px 40px; border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .3s; cursor: none;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* Reveal animations */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s cubic-bezier(.25,.46,.45,.94), transform .85s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .32s; }
.reveal-delay-4 { transition-delay: .44s; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 60px 0;
  background: var(--navy) url('../images/bg/hero-bg.jpg') center/cover no-repeat;
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(245,168,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,168,0,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,15,26,.96) 55%, rgba(6,15,26,.7) 100%);
  z-index: 0;
}
.hero-glow {
  position: absolute;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(245,168,0,.14) 0%, transparent 70%);
  top: -80px; right: -80px; z-index: 0;
  animation: pulse-glow 4s ease-in-out infinite alternate;
}
@keyframes pulse-glow {
  from { transform: scale(1); opacity: .7; }
  to   { transform: scale(1.12); opacity: 1; }
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: fadeUp .8s .2s forwards;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(70px, 10vw, 140px);
  line-height: 0.96; position: relative; z-index: 2;
  letter-spacing: 0.02em;
  opacity: 0; animation: fadeUp .8s .4s forwards;
}
.hero-h1 em {
  font-style: normal; color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
}
.hero-sub {
  margin-top: 38px;
  font-size: 17px; font-weight: 300;
  color: var(--muted); max-width: 520px; line-height: 1.85;
  border-left: 3px solid var(--gold); padding-left: 22px;
  opacity: 0; animation: fadeUp .8s .6s forwards;
}
.hero-actions {
  margin-top: 50px;
  display: flex; gap: 18px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s .8s forwards;
}
.hero-stats {
  position: relative; z-index: 2;
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border);
  padding-top: 36px; padding-bottom: 56px;
  opacity: 0; animation: fadeUp .8s 1s forwards;
}
.stat-item { padding: 0 36px; border-right: 1px solid var(--border); }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px; line-height: 1; color: var(--gold);
}
.stat-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0; background: var(--navy-2);
}
.marquee-track {
  display: flex; animation: marquee-scroll 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: .22em;
  color: var(--muted); padding: 0 36px;
  display: inline-flex; align-items: center; gap: 18px; flex-shrink: 0;
}
.marquee-item span { color: var(--gold); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── ABOUT ─── */
#about {
  padding: 140px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; align-items: center; position: relative;
}
.about-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 220px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(245,168,0,.1);
  position: absolute; left: 40px; top: 80px;
  pointer-events: none; user-select: none;
}
.about-card {
  background: var(--navy-2);
  border: 1px solid var(--border); padding: 46px;
  position: relative;
}
.about-card::before {
  content: '';
  position: absolute; top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.about-card::after {
  content: '';
  position: absolute; top: 18px; right: 18px;
  width: 52px; height: 52px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.highlight-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.highlight-item:last-child { border-bottom: none; }
.hi-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(245,168,0,.08);
  border: 1px solid rgba(245,168,0,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 15px; transition: all .3s;
}
.highlight-item:hover .hi-icon { background: var(--gold); color: var(--navy); }
.hi-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.hi-desc { font-size: 13px; color: var(--muted); }

/* ─── SERVICES ─── */
#services {
  padding: 140px 60px;
  background: var(--navy-2); position: relative; overflow: hidden;
}
#services::before {
  content: 'SERVICES';
  position: absolute; bottom: -50px; right: -20px;
  font-family: 'Bebas Neue', sans-serif; font-size: 200px;
  color: transparent; -webkit-text-stroke: 1px rgba(245,168,0,.04);
  pointer-events: none; user-select: none;
}
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
}
.service-card {
  background: var(--navy); padding: 38px 30px;
  position: relative; overflow: hidden; transition: all .4s cubic-bezier(.25,.46,.45,.94);
}
.service-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover { background: var(--navy-3); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.sc-number {
  font-family: 'Bebas Neue', sans-serif; font-size: 13px;
  letter-spacing: .2em; color: rgba(245,168,0,.28); margin-bottom: 28px;
}
.sc-icon {
  font-size: 30px; color: var(--gold); margin-bottom: 22px;
  display: block; transition: transform .3s;
}
.service-card:hover .sc-icon { transform: scale(1.1); }
.sc-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; margin-bottom: 10px; }
.sc-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
.sc-arrow {
  position: absolute; bottom: 26px; right: 26px;
  font-size: 13px; color: var(--gold);
  opacity: 0; transform: translateX(-8px); transition: all .3s;
}
.service-card:hover .sc-arrow { opacity: 1; transform: translateX(0); }

/* ─── PORTFOLIO ─── */
#portfolio { padding: 140px 60px; position: relative; }
.portfolio-filter {
  display: flex; gap: 3px; margin-bottom: 56px; flex-wrap: wrap;
}
.filter-btn {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 9px 22px; border: 1px solid var(--border);
  background: transparent; color: var(--muted); transition: all .3s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.portfolio-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--navy-3);
  cursor: none;
}
.portfolio-card.featured { grid-column: span 2; aspect-ratio: 16/9; }
.pc-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
  filter: brightness(.75) saturate(1.1);
}
.portfolio-card:hover .pc-img {
  transform: scale(1.07);
  filter: brightness(.55) saturate(1.2);
}
.pc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6,15,26,.97) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px;
  transform: translateY(35%);
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.portfolio-card:hover .pc-overlay { transform: translateY(0); }
.pc-tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 7px;
}
.pc-title {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 22px; margin-bottom: 10px;
}
.portfolio-card.featured .pc-title { font-size: 30px; }
.pc-desc {
  font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 18px;
  opacity: 0; transform: translateY(10px); transition: all .4s .1s;
}
.portfolio-card:hover .pc-desc { opacity: 1; transform: translateY(0); }
.pc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  opacity: 0; transform: translateY(8px); transition: all .4s .15s;
}
.portfolio-card:hover .pc-link { opacity: 1; transform: translateY(0); }
.pc-link:hover { color: var(--white); }

/* ─── WHY US ─── */
#why {
  padding: 140px 60px; background: var(--navy-2);
  display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center;
}
.why-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 200px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(245,168,0,.1);
  margin-bottom: -55px; display: block;
}
.reason-row {
  border-bottom: 1px solid var(--border); padding: 30px 0;
  display: grid; grid-template-columns: 58px 1fr; gap: 22px; align-items: start;
  transition: all .3s;
}
.reason-row:first-child { border-top: 1px solid var(--border); }
.rr-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px;
  color: rgba(245,168,0,.2); transition: color .3s; line-height: 1; padding-top: 4px;
}
.reason-row:hover .rr-num { color: var(--gold); }
.rr-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 19px; margin-bottom: 7px; }
.rr-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── PROCESS ─── */
#process { padding: 140px 60px; position: relative; overflow: hidden; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 80px; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 40px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(245,168,0,.08));
  z-index: 0;
}
.step { text-align: center; padding: 0 28px; position: relative; z-index: 1; }
.step-circle {
  width: 80px; height: 80px; margin: 0 auto 30px;
  background: var(--navy); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--gold);
  clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
  transition: all .4s;
}
.step:hover .step-circle { background: var(--gold); color: var(--navy); }
.step-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; margin-bottom: 10px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ─── CTA BANNER ─── */
#cta {
  padding: 120px 60px; background: var(--gold);
  position: relative; overflow: hidden; text-align: center;
}
#cta::before {
  content: 'LET\'S WORK';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif; font-size: 260px;
  color: rgba(0,0,0,.06); white-space: nowrap; pointer-events: none; letter-spacing: -5px;
}
.cta-label {
  font-size: 11px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(10,34,53,.6); margin-bottom: 18px; display: block; position: relative; z-index: 1;
}
.cta-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(50px, 8vw, 100px);
  color: var(--navy); line-height: 1; margin-bottom: 14px; position: relative; z-index: 1;
}
.cta-sub {
  font-size: 17px; color: rgba(10,34,53,.7); margin-bottom: 44px; position: relative; z-index: 1;
}
.btn-dark {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); background: var(--navy);
  padding: 20px 50px; border: 2px solid var(--navy);
  display: inline-block; transition: all .3s; position: relative; z-index: 1;
  clip-path: polygon(0 0, 95% 0, 100% 15%, 100% 100%, 5% 100%, 0 85%);
}
.btn-dark:hover { background: transparent; color: var(--navy); }

/* ─── CONTACT ─── */
#contact {
  padding: 140px 60px; background: var(--navy-2);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.cd-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(245,168,0,.08); border: 1px solid rgba(245,168,0,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 15px;
}
.cd-label { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.cd-value { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 15px; }
.cd-value a { color: var(--white); transition: color .3s; }
.cd-value a:hover { color: var(--gold); }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid var(--border); color: var(--white);
  font-family: 'Space Grotesk', sans-serif; font-size: 15px;
  padding: 14px 16px; outline: none; transition: border-color .3s; -webkit-appearance: none;
}
.form-group select {
  background-color: #0B1E30;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F5A800' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-group select option {
  background-color: #0B1E30;
  color: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  padding: 18px 40px; border: 2px solid var(--gold);
  width: 100%; transition: all .3s;
  clip-path: polygon(0 0, 97% 0, 100% 15%, 100% 100%, 3% 100%, 0 85%);
}
.btn-submit:hover { background: transparent; color: var(--gold); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy); border-top: 1px solid var(--gold);
  padding: 72px 60px 32px;
}
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px; margin-bottom: 52px;
}
.footer-logo-img { height: 52px; width: auto; margin-bottom: 18px; }
.footer-tagline { font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 270px; }
.footer-license { font-size: 11px; letter-spacing: .1em; color: rgba(255, 255, 255, 0.603); margin-top: 14px; }
.footer-col-title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14px; color: var(--muted); transition: color .3s; }
.footer-links a:hover { color: var(--gold); }
.social-row { display: flex; gap: 7px; margin-bottom: 24px; }
.social-btn {
  width: 38px; height: 38px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px; transition: all .3s;
}
.social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-link { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 10px; transition: color .3s; }
.footer-contact-link:hover { color: var(--gold); }
.footer-contact-link i { color: var(--gold); font-size: 12px; width: 14px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.28); }
.footer-made { font-size: 13px; color: rgba(255,255,255,.28); }
.footer-made .gold { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  nav { padding: 20px 28px; }
  nav.scrolled { padding: 14px 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  #hero { padding: 100px 28px 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  #about, #why, #contact { grid-template-columns: 1fr; gap: 50px; padding: 80px 28px; }
  #services, #portfolio, #process { padding: 80px 28px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.featured { grid-column: span 1; aspect-ratio: 4/3; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  #cta { padding: 80px 28px; }
  footer { padding: 60px 28px 28px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 600px) {
  .hero-h1 { font-size: clamp(56px, 14vw, 90px); }
  .services-grid, .process-steps, .footer-main { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-number { display: none; }
}
