/* ════════════════════════════════════════════
   TOP QUALITY EYL SAS — Nuevo diseño 2025
   Tipografía: Cormorant Garamond + Barlow Condensed
   Paleta: Azul oscuro profundo + Dorado
   Diseño: Corporativo premium, oscuro, asimétrico
════════════════════════════════════════════ */

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

:root {
  --navy:       #080f1e;
  --navy-2:     #0d1929;
  --navy-3:     #111f35;
  --navy-4:     #162540;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim:   #7a6430;
  --white:      #f5f0e8;
  --gray-1:     #c8c3ba;
  --gray-2:     #7a7670;
  --gray-3:     #2e2c28;
  --line:       rgba(201,168,76,0.15);

  --f-display: 'Cormorant Garamond', serif;
  --f-head:    'Barlow Condensed', sans-serif;
  --f-body:    'Barlow', sans-serif;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 56px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(8,15,30,0.97);
  backdrop-filter: blur(20px);
  height: 62px;
  border-bottom: 1px solid var(--line);
}
.nav-brand img { height: 38px; object-fit: contain; }
.nav-links {
  display: flex; align-items: center; gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--f-head);
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gray-1); text-decoration: none;
  transition: color 0.25s;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 24px !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 1px; background: var(--white); transition: all 0.3s; }

/* ── HERO ── */
.hero {
  display: grid; grid-template-columns: 55% 45%;
  min-height: 100vh; overflow: hidden;
}
.hero-left {
  background: var(--navy-2);
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 72px 100px 80px;
  position: relative; z-index: 2;
}
.hero-right {
  position: relative; background: var(--navy-3);
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 55% 45%, rgba(201,168,76,0.1) 0%, transparent 65%);
}
.hero-diagonal {
  position: absolute; top: 0; left: -56px; bottom: 0; width: 112px;
  background: var(--navy-2);
  clip-path: polygon(0 0, 56px 0, 100% 100%, 0 100%);
  z-index: 4;
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  z-index: 1;
}
.hero-orb {
  position: absolute; top: 50%; left: 52%;
  transform: translate(-50%, -50%);
  width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.13) 0%, transparent 68%);
  z-index: 2;
  animation: orb-pulse 5s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity:.7; }
  50%      { transform: translate(-50%,-50%) scale(1.18); opacity:1; }
}
.hero-rings { position: absolute; top:50%; left:52%; transform:translate(-50%,-50%); z-index:2; }
.hero-rings span {
  position: absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.13);
  animation: ring-expand 3.5s ease-out infinite;
}
.hero-rings span:nth-child(1) { width:220px; height:220px; animation-delay:0s; }
.hero-rings span:nth-child(2) { width:360px; height:360px; animation-delay:1.2s; }
.hero-rings span:nth-child(3) { width:500px; height:500px; animation-delay:2.4s; }
@keyframes ring-expand {
  0%   { opacity:.5; transform: translate(-50%,-50%) scale(.88); }
  100% { opacity:0;  transform: translate(-50%,-50%) scale(1.08); }
}
.hero-metrics {
  position: absolute; bottom: 56px; right: 36px;
  display: flex; flex-direction: column; gap: 10px; z-index: 5;
}
.hero-metric {
  background: rgba(8,15,30,0.88);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  padding: 14px 22px;
  display: flex; align-items: baseline; gap: 10px;
  opacity: 0; transform: translateX(32px);
  animation: slide-in-r 0.6s var(--ease-out) forwards;
}
.hero-metric:nth-child(1) { animation-delay: 1.1s; }
.hero-metric:nth-child(2) { animation-delay: 1.3s; }
.hero-metric:nth-child(3) { animation-delay: 1.5s; }
@keyframes slide-in-r { to { opacity:1; transform:translateX(0); } }
.metric-num {
  font-family: var(--f-display); font-size: 2rem;
  font-weight: 600; color: var(--gold); line-height: 1;
}
.metric-label {
  font-family: var(--f-head); font-size: 0.68rem;
  font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-2);
}

/* Hero left content animations */
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
  opacity: 0; transform: translateY(18px);
  animation: fade-up .7s var(--ease-out) .3s forwards;
}
.eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.eyebrow-text {
  font-family: var(--f-head); font-size: 0.68rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 300; line-height: 1.05;
  margin-bottom: 28px;
  opacity: 0; transform: translateY(28px);
  animation: fade-up .8s var(--ease-out) .5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-title strong { font-weight: 600; display: block; }
.hero-desc {
  font-size: 1rem; color: var(--gray-1); line-height: 1.8;
  max-width: 440px; margin-bottom: 40px;
  opacity: 0; transform: translateY(18px);
  animation: fade-up .7s var(--ease-out) .7s forwards;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(18px);
  animation: fade-up .7s var(--ease-out) .9s forwards;
}
.hero-scroll {
  position: absolute; bottom: 44px; left: 80px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; animation: fade-up .6s var(--ease-out) 1.4s forwards;
}
.scroll-track {
  width: 1px; height: 44px; background: var(--gray-3); position: relative; overflow: hidden;
}
.scroll-thumb {
  position: absolute; top: -100%; width: 1px; height: 44px;
  background: var(--gold);
  animation: scroll-anim 2.2s ease-in-out 2s infinite;
}
@keyframes scroll-anim { 0%{top:-100%} 55%{top:100%} 100%{top:100%} }
.scroll-label {
  font-family: var(--f-head); font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray-2); writing-mode: vertical-rl;
}
@keyframes fade-up { to { opacity:1; transform:translateY(0); } }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  font-family: var(--f-head); font-size: 0.76rem;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 14px 32px; text-decoration: none;
  transition: all .25s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  display: inline-block;
  font-family: var(--f-head); font-size: 0.76rem;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); border: 1px solid rgba(245,240,232,.3);
  padding: 14px 32px; text-decoration: none;
  transition: all .25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy {
  display: inline-block;
  font-family: var(--f-head); font-size: 0.76rem;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--navy); color: var(--gold);
  padding: 14px 36px; text-decoration: none;
  transition: all .25s;
}
.btn-navy:hover { background: var(--navy-4); transform: translateY(-2px); }
.btn-outline-navy {
  display: inline-block;
  font-family: var(--f-head); font-size: 0.76rem;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); border: 1.5px solid var(--navy);
  padding: 14px 36px; text-decoration: none;
  transition: all .25s;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--gold); }

/* ── MARQUEE ── */
.marquee-strip { background: var(--gold); padding: 13px 0; overflow: hidden; }
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--f-head); font-size: 0.68rem;
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--navy); white-space: nowrap; padding: 0 28px;
}
.marquee-dot { color: var(--navy); opacity: .35; margin: 0 6px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── LAYOUT ── */
.section { padding: 120px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-head); font-size: 0.67rem;
  font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.tag::before { content:''; width:28px; height:1px; background:var(--gold); }
.section-title-xl {
  font-family: var(--f-display);
  font-size: clamp(2.3rem, 3.8vw, 3.7rem);
  font-weight: 300; line-height: 1.08;
  color: var(--white);
}
.section-title-xl em { font-style: italic; color: var(--gold); }

/* ── ABOUT ── */
.about-section { background: var(--navy-2); position: relative; overflow: hidden; }
.about-section::before {
  content: ''; position: absolute; top:0; right:0;
  width:45%; height:100%;
  background: linear-gradient(135deg, transparent 40%, rgba(201,168,76,.035) 100%);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-left { position: relative; }
.about-big-number {
  position: absolute; top: -10px; left: -28px;
  font-family: var(--f-display); font-size: 13rem;
  font-weight: 700; color: rgba(201,168,76,.05);
  line-height: 1; pointer-events: none; user-select: none;
}
.about-text { font-size: 1rem; color: var(--gray-1); line-height: 1.85; margin-bottom: 20px; }
.about-text strong { color: var(--gold-light); font-weight: 400; }
.about-pillars { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.pillar-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 18px;
  border-left: 2px solid var(--gold-dim);
  background: rgba(201,168,76,.04);
  transition: border-color .3s, background .3s;
}
.pillar-row:hover { border-left-color: var(--gold); background: rgba(201,168,76,.09); }
.pillar-num {
  font-family: var(--f-head); font-size: 0.68rem;
  font-weight: 700; color: var(--gold); letter-spacing:.1em;
  margin-top: 2px; flex-shrink: 0;
}
.pillar-text { font-size: 0.88rem; color: var(--gray-1); }
.about-right { display: grid; grid-template-rows: auto auto; gap: 18px; }
.about-card-main {
  background: var(--navy-3); border: 1px solid var(--line);
  padding: 38px; position: relative; overflow: hidden;
}
.about-card-main::before {
  content: ''; position: absolute; top:0; right:0;
  width:3px; height:56px; background: var(--gold);
}
.about-card-main h3 {
  font-family: var(--f-display); font-size: 1.85rem;
  font-weight: 300; color: var(--white); margin-bottom: 12px;
}
.about-card-main h3 em { font-style: italic; color: var(--gold); }
.about-card-main p { font-size: 0.88rem; color: var(--gray-2); }
.about-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-card-sm {
  background: var(--navy-4); border: 1px solid var(--line);
  padding: 22px 24px;
  transition: border-color .3s, transform .3s;
}
.about-card-sm:hover { border-color: var(--gold); transform: translateY(-3px); }
.card-icon { font-size: 1.3rem; margin-bottom: 10px; }
.about-card-sm h4 {
  font-family: var(--f-head); font-size: 0.88rem;
  font-weight: 600; letter-spacing: .06em;
  color: var(--white); margin-bottom: 4px;
}
.about-card-sm p { font-size: 0.78rem; color: var(--gray-2); }

/* ── SERVICES ── */
.services-section { background: var(--navy); border-top: 1px solid var(--line); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.services-header-right { font-size: 0.92rem; color: var(--gray-2); line-height: 1.75; padding-top: 12px; }
.services-list { display: flex; flex-direction: column; }
.service-row {
  display: grid; grid-template-columns: 76px 1fr auto;
  align-items: center; gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit;
  transition: padding-left .3s var(--ease-out);
}
.service-row:first-child { border-top: 1px solid var(--line); }
.service-row:hover { padding-left: 14px; }
.service-row:hover .svc-num { color: var(--gold); }
.service-row:hover .svc-arrow { opacity:1; transform:translateX(0); color:var(--gold); }
.svc-num {
  font-family: var(--f-display); font-size: 0.95rem;
  font-weight: 300; color: var(--gray-3); letter-spacing:.05em;
  transition: color .3s;
}
.svc-content h3 {
  font-family: var(--f-head); font-size: 1.28rem;
  font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--white); margin-bottom: 4px;
}
.svc-content p { font-size: 0.83rem; color: var(--gray-2); }
.svc-tag {
  display: inline-block; margin-top: 6px;
  font-family: var(--f-head); font-size: 0.62rem;
  font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  padding: 3px 10px; white-space: nowrap;
}
.svc-arrow {
  font-size: 1.1rem; color: var(--gray-3);
  opacity: 0; transform: translateX(-10px);
  transition: all .3s;
}
.services-footer { margin-top: 36px; display: flex; justify-content: flex-end; }

/* ── PROCESS ── */
.process-section { background: var(--navy-3); position: relative; overflow: hidden; }
.process-bg-text {
  position: absolute; bottom: -56px; left: -12px;
  font-family: var(--f-display); font-size: 20rem;
  font-weight: 700; color: rgba(201,168,76,.04);
  line-height: 1; pointer-events: none; user-select: none; white-space: nowrap;
}
.process-header { text-align: center; margin-bottom: 68px; }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 35px; left: 0; right: 0;
  height: 1px; background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}
.process-step { padding: 0 20px; }
.step-circle {
  width: 70px; height: 70px; border-radius: 50%;
  border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
  position: relative; z-index: 2; background: var(--navy-3);
  transition: all .4s;
}
.process-step:hover .step-circle { background: var(--gold); border-color: var(--gold); }
.process-step:hover .step-num { color: var(--navy); }
.step-num {
  font-family: var(--f-display); font-size: 1.3rem;
  font-weight: 600; color: var(--gold); transition: color .4s;
}
.step-body { text-align: center; }
.step-body h3 {
  font-family: var(--f-head); font-size: 0.95rem;
  font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: var(--white); margin-bottom: 10px;
}
.step-body p { font-size: 0.82rem; color: var(--gray-2); line-height: 1.65; }

/* ── SECTORS ── */
.sectors-section { background: var(--navy-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sectors-header { margin-bottom: 52px; }
.sectors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.sector-cell {
  background: var(--navy-2); padding: 38px 34px;
  transition: background .3s; position: relative; overflow: hidden;
}
.sector-cell::after {
  content: ''; position: absolute; bottom:0; left:0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .4s var(--ease-out);
}
.sector-cell:hover { background: var(--navy-3); }
.sector-cell:hover::after { width: 100%; }
.sector-icon { font-size: 1.9rem; margin-bottom: 14px; display: block; }
.sector-cell h4 {
  font-family: var(--f-head); font-size: 1rem;
  font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--white); margin-bottom: 8px;
}
.sector-cell p { font-size: 0.82rem; color: var(--gray-2); }

/* ── COMPARISON ── */
.comparison-section { background: var(--navy); }
.comparison-layout { display: grid; grid-template-columns: 1fr 540px; gap: 80px; align-items: start; }
.comparison-intro p { font-size: 0.92rem; color: var(--gray-2); margin-top: 18px; line-height: 1.75; }
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table thead tr { border-bottom: 1px solid var(--line); }
.comp-table th {
  font-family: var(--f-head); font-size: 0.7rem;
  font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  padding: 12px 14px 12px 0; color: var(--gray-2); text-align: left;
}
.comp-table th.col-tq { color: var(--gold); text-align: center; background: rgba(201,168,76,.06); }
.comp-table th.col-other { text-align: center; }
.comp-table td {
  padding: 14px 14px 14px 0; font-size: 0.87rem;
  color: var(--gray-1); border-bottom: 1px solid rgba(201,168,76,.07);
}
.comp-table td.col-tq { text-align:center; background:rgba(201,168,76,.04); color:var(--gold); font-weight:500; }
.comp-table td.col-other { text-align:center; color:var(--gray-3); font-size:.82rem; }
.check-icon { color: var(--gold); font-size: 1rem; }

/* ── CTA ── */
.cta-section { background: var(--gold); padding: 100px 0; position: relative; overflow: hidden; }
.cta-section::before {
  content: 'TQ'; position: absolute; right: -48px; top:50%;
  transform: translateY(-50%);
  font-family: var(--f-display); font-size: 22rem;
  font-weight: 700; color: rgba(8,15,30,.07);
  line-height: 1; pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 2; }
.cta-inner h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem,3.8vw, 3.2rem);
  font-weight: 300; color: var(--navy);
  margin-bottom: 18px; line-height: 1.2;
}
.cta-inner h2 strong { font-weight: 700; display: block; }
.cta-inner p { font-size: 0.97rem; color: rgba(8,15,30,.6); max-width: 480px; margin: 0 auto 34px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--navy); border-top: 1px solid var(--line); padding: 76px 0 0; }
.footer-top {
  display: grid; grid-template-columns: 260px 1fr 1fr 180px;
  gap: 56px; padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { height: 40px; margin-bottom: 18px; display: block; }
.footer-brand p { font-size: 0.83rem; color: var(--gray-2); line-height: 1.7; }
.footer-brand .slogan {
  font-family: var(--f-display); font-style: italic;
  font-size: 0.97rem; color: var(--gold);
  margin-top: 12px; display: block;
}
.footer-col h5 {
  font-family: var(--f-head); font-size: 0.68rem;
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.83rem; color: var(--gray-2); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; }
.contact-row { font-size: 0.8rem; color: var(--gray-2); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
}
.footer-bottom p { font-size: 0.73rem; color: var(--gray-3); }
.footer-bottom a { color: var(--gold-dim); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.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; }

/* ── RESPONSIVE ── */
@media (max-width:1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 136px 48px 80px; }
  .about-grid,
  .comparison-layout,
  .services-header { grid-template-columns: 1fr; gap: 36px; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .sectors-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width:768px) {
  .nav { padding: 0 24px; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: fixed; top: 62px; left:0; right:0;
    background: rgba(8,15,30,.98);
    border-bottom: 1px solid var(--line); padding: 16px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(201,168,76,.08); }
  .nav-links a { display: block; padding: 13px 24px; }
  .nav-toggle { display: flex; }
  .hero-left { padding: 118px 24px 64px; }
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .process-steps { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .about-cards-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .service-row { grid-template-columns: 48px 1fr auto; gap: 14px; }
}
