*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:         #09090a;
  --charcoal:     #111114;
  --surface:      #18181c;
  --surface-2:    #1f1f24;
  --green:        #aaff3e;
  --green-dark:   #84cc28;
  --green-glow:   rgba(170, 255, 62, 0.15);
  --green-dim:    rgba(170, 255, 62, 0.08);
  --white:        #ffffff;
  --text:         #e8e8e4;
  --text-muted:   #888884;
  --border:       rgba(255, 255, 255, 0.07);
  --border-green: rgba(170, 255, 62, 0.2);

  --font-sans:  'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg:  0 20px 60px rgba(0, 0, 0, 0.5);
  --glow:       0 0 40px rgba(170, 255, 62, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a           { text-decoration: none; color: inherit; }
ul          { list-style: none; }
button      { cursor: pointer; border: none; background: none; font-family: inherit; }
img         { display: block; max-width: 100%; }

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 16px;
}
.section-tag::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--green); border-radius: 2px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 900; line-height: 1.1; color: var(--white);
}
.section-title span { color: var(--green); }

.section-subtitle {
  font-size: 16px; color: var(--text-muted);
  max-width: 540px; margin-top: 14px; line-height: 1.75;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 600; transition: var(--transition);
}
.btn-green { background: var(--green); color: var(--dark); }
.btn-green:hover {
  background: #c4ff66;
  transform: translateY(-2px);
  box-shadow: var(--glow);
}
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }

.arrow { width: 16px; height: 16px; transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: padding 0.4s ease;
}
/* backdrop-filter on ::before so it doesn't create a containing block
   for position:fixed children (nav-links overlay) */
#navbar::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: transparent; backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
#navbar.scrolled {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
#navbar.scrolled::before {
  background: rgba(9, 9, 10, 0.95);
  backdrop-filter: blur(20px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 72px; width: auto; object-fit: contain; }
.footer-brand .nav-logo-img { height: 70px; }

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-link {
  font-size: 13px; font-weight: 500;
  color: rgba(255, 255, 255, 0.6); transition: var(--transition);
}
.nav-link:hover { color: var(--white); }

.nav-cta {
  padding: 9px 20px;
  background: var(--green);
  color: var(--dark) !important;
  border-radius: 7px; font-weight: 700 !important;
}
.nav-cta:hover {
  background: #c4ff66;
  box-shadow: 0 0 20px rgba(170, 255, 62, 0.35);
}

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
#hero {
  position: relative; width: 100%; height: 100vh;
  overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
}

.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  filter: saturate(0.7);
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,  rgba(9, 9, 10, 0.96) 0%, rgba(9, 9, 10, 0.4) 50%, rgba(9, 9, 10, 0.55) 100%),
    linear-gradient(135deg, rgba(170, 255, 62, 0.06) 0%, transparent 60%);
}

.hero-glow {
  position: absolute; bottom: -80px; left: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 255, 62, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

#hero .hero-nav-space { flex: 1; }

.hero-bottom { position: relative; z-index: 2; padding: 0 0 52px; }

.hero-bottom-inner {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
}

.hero-sep {
  position: absolute; bottom: 130px; left: 32px; right: 32px;
  height: 1px; background: rgba(255, 255, 255, 0.1);
}

.hero-cta-wrap { display: flex; flex-direction: column; gap: 14px; }

.hero-cta-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.35);
}

.hero-cta-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 32px;
  background: var(--green); color: var(--dark);
  border-radius: 6px; font-size: 15px; font-weight: 700;
  transition: var(--transition); white-space: nowrap;
}
.hero-cta-btn:hover {
  background: #c4ff66; transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(170, 255, 62, 0.35);
}
.hero-cta-btn:hover .arrow { transform: translateX(5px); }

.hero-tagline { text-align: right; max-width: 500px; }

.hero-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 54px);
  font-weight: 900; line-height: 1.08;
  color: var(--white); letter-spacing: -0.5px;
}
.hero-tagline-text em { font-style: normal; color: var(--green); }

.hero-tagline-sub {
  margin-top: 12px; font-size: 14px;
  color: rgba(255, 255, 255, 0.4); letter-spacing: 0.04em;
}

.hero-scroll {
  position: absolute; bottom: 52px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, 0.25); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
#services { padding: 120px 0; background: var(--charcoal); }

.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 40px; margin-bottom: 64px;
}

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.service-card {
  background: var(--surface);
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--green); transform: scaleX(0);
  transform-origin: left; transition: transform var(--transition);
}
.service-card:hover {
  background: var(--surface-2);
  border-color: var(--border-green);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border-green);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--green-dim); border: 1px solid var(--border-green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--green); }
.service-card:hover .service-icon svg { stroke: var(--dark) !important; }

.service-name {
  font-family: var(--font-serif); font-size: 19px;
  font-weight: 700; color: var(--white); margin-bottom: 10px;
}
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.service-list { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  font-size: 13px; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.service-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}

.service-card.featured {
  background: var(--green-dim);
  border-color: var(--border-green);
}
.service-card.featured::before { background: var(--green); }
.service-card.featured .service-name { color: var(--white); }
.service-card.featured .service-list li::before { background: var(--green); }

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
#about { padding: 120px 0; background: var(--dark); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-visual { position: relative; }

.about-img-main {
  width: 100%; height: 500px; border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
}
.about-img-main img {
  width: 100%; height: 100%; object-fit: cover; filter: saturate(0.75);
  transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.03); }
.about-img-main::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(9, 9, 10, 0.8) 0%, transparent 100%);
}

.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--green); border-radius: var(--radius);
  padding: 20px 26px; color: var(--dark); box-shadow: var(--glow);
}
.about-badge-float .num {
  font-family: var(--font-serif); font-size: 38px;
  font-weight: 900; line-height: 1; color: var(--dark);
}
.about-badge-float .lbl { font-size: 12px; opacity: 0.65; margin-top: 5px; font-weight: 600; }

.about-text { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-top: 20px; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }

.about-feature { display: flex; align-items: flex-start; gap: 14px; }

.about-feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-dim); border: 1px solid var(--border-green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.about-feature-title { font-weight: 700; font-size: 14px; color: var(--white); margin-bottom: 4px; }
.about-feature-text  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════
   STATS
══════════════════════════════ */
#stats { padding: 0; background: var(--dark); }

.stats-band {
  background: var(--green);
  display: grid; grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  padding: 56px 40px; text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-serif); font-size: 52px;
  font-weight: 900; color: var(--dark); line-height: 1;
}
.stat-number span { opacity: 0.6; }

.stat-label {
  font-size: 12px; color: rgba(0, 0, 0, 0.55); margin-top: 10px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ══════════════════════════════
   OUR WORK
══════════════════════════════ */
#work { padding: 120px 0; background: var(--charcoal); }

.work-header { margin-bottom: 48px; }

.work-banner {
  width: 100%; height: 440px; border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 20px;
}
.work-banner img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.8); transition: transform 0.6s ease;
}
.work-banner:hover img { transform: scale(1.03); }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.work-item {
  aspect-ratio: 4/3; border-radius: var(--radius);
  overflow: hidden; position: relative;
  border: 1px solid var(--border);
}
.work-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.8); transition: transform 0.5s ease, filter 0.5s ease;
}
.work-item:hover img { transform: scale(1.06); filter: saturate(1); }

/* ══════════════════════════════
   PROCESS
══════════════════════════════ */
#process { padding: 120px 0; background: var(--charcoal); }

.process-header { text-align: center; max-width: 580px; margin: 0 auto 72px; }
.process-header .section-tag { justify-content: center; }
.process-header .section-tag::before { display: none; }
.process-header .section-subtitle { margin: 14px auto 0; }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 35px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(170, 255, 62, 0.2));
}

.process-step { text-align: center; padding: 0 24px; position: relative; }

.step-number {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 22px;
  font-weight: 900; color: var(--green);
  margin: 0 auto 24px; position: relative; z-index: 1;
  transition: var(--transition);
}
.process-step:hover .step-number {
  background: var(--green); color: var(--dark);
  border-color: var(--green); box-shadow: var(--glow); transform: scale(1.1);
}

.step-title { font-weight: 700; font-size: 16px; color: var(--white); margin-bottom: 10px; }
.step-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
#contact { padding: 120px 0; background: var(--dark); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }

.contact-infos { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }

.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }

.contact-info-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--green-dim); border: 1px solid var(--border-green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px;
}
.contact-info-value { font-size: 16px; font-weight: 600; color: var(--white); }
.contact-info-value a { transition: var(--transition); }
.contact-info-value a:hover { color: var(--green); }

.contact-form-wrap {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 48px; border: 1px solid var(--border);
}
.form-title    { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.form-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }

.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; }

label { font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }

input, textarea, select {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 9px; font-family: var(--font-sans);
  font-size: 14px; color: var(--text); background: var(--surface-2);
  transition: var(--transition); outline: none; width: 100%;
}
input::placeholder, textarea::placeholder { color: #555552; }
select option { background: var(--surface-2); }
input:focus, textarea:focus, select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(170, 255, 62, 0.1);
}
textarea { resize: vertical; min-height: 110px; }

.form-submit {
  margin-top: 8px; width: 100%; padding: 15px;
  background: var(--green); color: var(--dark);
  border-radius: 9px; font-size: 15px; font-weight: 700;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover {
  background: #c4ff66; transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(170, 255, 62, 0.35);
}
.form-note { text-align: center; font-size: 11px; color: var(--text-muted); margin-top: 12px; }

#formError {
  display: none; color: var(--green); font-size: 13px;
  margin-top: 12px; padding: 10px 14px;
  background: rgba(170, 255, 62, 0.06); border-radius: 8px;
  border: 1px solid var(--border-green);
}

.form-success { display: none; text-align: center; padding: 40px 24px; }
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-dim); border: 1px solid var(--border-green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px;
}
.form-success-title { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.form-success-text  { font-size: 14px; color: var(--text-muted); }

/* ══════════════════════════════
   MAP
══════════════════════════════ */
#map-section { background: var(--charcoal); padding: 0 0 80px; }

.map-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
}

.map-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.map-label {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); padding: 18px 28px;
  border-bottom: 1px solid var(--border);
}
.map-label-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px rgba(170,255,62,0.5);
  flex-shrink: 0;
}
.map-label-text { font-size: 13px; font-weight: 600; color: var(--white); }
.map-label-sub  { font-size: 12px; color: var(--text-muted); margin-left: auto; }

.map-frame {
  width: 100%; height: 420px; display: block;
  border: none; filter: grayscale(30%) contrast(1.05);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  color: var(--text-muted); padding: 64px 0 32px;
}

.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px; padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-tagline { font-size: 14px; line-height: 1.7; margin-top: 14px; max-width: 280px; }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-muted); transition: var(--transition);
}
.footer-social a:hover {
  background: var(--green-dim); border-color: var(--border-green);
  color: var(--green);
}

.footer-col-title {
  font-weight: 700; font-size: 11px; color: var(--white);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link  { font-size: 14px; color: var(--text-muted); transition: var(--transition); }
.footer-link:hover { color: var(--green); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; font-size: 12px; color: #444440;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: #444440; transition: var(--transition); }
.footer-legal a:hover { color: var(--text-muted); }

/* ── Floating phone ── */
.floating-phone {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: var(--green); color: var(--dark);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(170, 255, 62, 0.4);
  transition: var(--transition);
}
.floating-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(170, 255, 62, 0.55);
}

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Spinner (form submit) ── */
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

/* Tablet landscape (≤ 1100px) */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { gap: 56px; }
  .contact-grid  { gap: 56px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-brand  { grid-column: 1 / -1; }
}

/* Tablet portrait (≤ 900px) */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  #services, #about, #process, #contact { padding: 80px 0; }

  .stats-band  { grid-template-columns: repeat(3, 1fr); }
  .stat-item   { padding: 40px 24px; }
  .stat-number { font-size: 42px; }

  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-steps::before { display: none; }

  .about-grid       { grid-template-columns: 1fr; gap: 40px; }
  .about-img-main   { height: 380px; }
  .about-badge-float { bottom: 16px; right: 16px; }
  .about-features   { grid-template-columns: repeat(2, 1fr); }

  .contact-grid     { grid-template-columns: 1fr; gap: 48px; }
  .services-header  { flex-direction: column; align-items: flex-start; gap: 16px; }

  #work { padding: 80px 0; }
  .work-banner { height: 300px; }
  .work-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  #navbar         { padding: 14px 0; }
  #navbar.scrolled { padding: 8px 0; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    inset: 0; background: rgba(9, 9, 10, 0.98); backdrop-filter: blur(20px);
    justify-content: center; align-items: center;
    gap: 28px; z-index: 1001;
  }
  .nav-links.open .nav-link { font-size: 22px; font-weight: 600; color: rgba(255, 255, 255, 0.8); opacity: 1 !important; }
  .nav-links.open .nav-cta  { font-size: 16px !important; padding: 14px 32px; border-radius: 8px; }

  /* Close button inside mobile menu */
  .nav-close {
    display: none;
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    cursor: pointer;
  }
  .nav-close span {
    display: block; width: 18px; height: 2px;
    background: var(--white); border-radius: 2px;
    position: absolute; top: 50%; left: 50%;
  }
  .nav-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
  .nav-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
  .nav-links.open .nav-close { display: block; }

  .hero-bottom { padding: 0 0 36px; }
  .hero-bottom-inner { flex-direction: column-reverse; align-items: flex-start; gap: 24px; }
  .hero-sep { display: none; }
  .hero-tagline { text-align: left; max-width: 100%; }
  .hero-tagline-text { font-size: clamp(22px, 7vw, 34px); }
  .hero-tagline-sub { font-size: 13px; }
  .hero-cta-btn { padding: 14px 24px; font-size: 14px; }
  .hero-scroll { display: none; }

  #services { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { padding: 28px 22px; }
  .service-card:hover { transform: none; }

  #about { padding: 64px 0; }
  .about-img-main { height: 260px; }
  .about-badge-float {
    position: static; display: inline-flex;
    align-items: center; gap: 12px;
    margin-top: 16px; padding: 14px 20px;
  }
  .about-badge-float .num { font-size: 28px; }
  .about-features { grid-template-columns: 1fr; gap: 14px; }

  .stats-band  { grid-template-columns: 1fr 1fr; }
  .stat-item   { padding: 32px 16px; }
  .stat-number { font-size: 36px; }

  #process { padding: 64px 0; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .process-step  { text-align: left; padding: 0; display: flex; gap: 20px; align-items: flex-start; }
  .step-number   { width: 52px; height: 52px; font-size: 18px; flex-shrink: 0; margin: 0; }
  .step-body     { padding-top: 8px; }

  #contact { padding: 64px 0; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .form-group.full { grid-column: 1; }
  .contact-infos { gap: 18px; }

  #work { padding: 64px 0; }
  .work-banner { height: 220px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-item { aspect-ratio: 16/9; }

  #map-section { padding: 0 0 48px; }
  .map-inner { padding: 0 20px; }
  .map-frame { height: 300px; }
  .map-label { padding: 14px 18px; }
  .map-label-sub { display: none; }

  footer { padding: 48px 0 24px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand  { grid-column: 1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal  { justify-content: center; }

  .floating-phone { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-tagline-text { font-size: 22px; }
  .hero-cta-btn { width: 100%; justify-content: center; }
  .hero-cta-wrap { width: 100%; }
  .service-card { padding: 24px 16px; }
  .stats-band  { grid-template-columns: 1fr 1fr; }
  .stat-item   { padding: 28px 12px; }
  .stat-number { font-size: 32px; }
  .step-number { width: 44px; height: 44px; font-size: 16px; }
  .about-img-main { height: 220px; }
  .section-title { font-size: 28px; }
  .contact-form-wrap { padding: 20px 14px; }
  input, textarea, select { font-size: 16px; }
  .footer-legal { flex-direction: column; gap: 8px; }
  .map-frame { height: 240px; }
}

/* Very small (≤ 360px) */
@media (max-width: 360px) {
  .stats-band { grid-template-columns: 1fr; }
  .hero-tagline-text { font-size: 20px; }
  .stat-item { border-right: none !important; }
}
