/* ============================================================
   TRIPLE TULIP CONSULTANCY — style.css FINAL
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --navy:       #1e2d6b;
  --navy-dark:  #141f4a;
  --navy-light: #2a3d8f;
  --navy-muted: #eaecf7;
  --green:      #2d5a3d;
  --green-dark: #1e3d2a;
  --green-light:#3a7050;
  --green-muted:#eaf2ec;
  --gold:       #b8963a;
  --gold-light: #d4aa4a;
  --white:      #ffffff;
  --off-white:  #f8f7f4;
  --cream:      #f2f0ea;
  --gray-200:   #e8e6e0;
  --gray-400:   #9a9890;
  --gray-600:   #5a584f;
  --gray-900:   #1c1b17;
  --hh: 80px; /* header height */
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Outfit', sans-serif;
  --s1: 0 2px 16px rgba(30,45,107,.07);
  --s2: 0 8px 40px rgba(30,45,107,.13);
  --s3: 0 24px 64px rgba(30,45,107,.18);
  --r: 4px;
  --ease: .32s cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--fb);color:var(--gray-900);background:var(--white);line-height:1.6;overflow-x:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}

/* TYPE */
h1,h2,h3,h4{font-family:var(--fd);font-weight:600;line-height:1.15}
h1{font-size:clamp(2.2rem,4.8vw,4.4rem);font-weight:300;letter-spacing:-.02em}
h2{font-size:clamp(1.75rem,3vw,2.7rem);font-weight:400}
h3{font-size:clamp(1.05rem,1.8vw,1.4rem);font-weight:600}
p{line-height:1.82;color:var(--gray-600)}
.label{font-family:var(--fb);font-size:.67rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);display:inline-block}

/* BUTTONS */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 1.9rem;font-family:var(--fb);font-size:.82rem;font-weight:600;letter-spacing:.06em;border:none;cursor:pointer;transition:var(--ease);border-radius:var(--r);white-space:nowrap;text-decoration:none}
.btn svg{width:14px;height:14px;flex-shrink:0;transition:transform .28s}
.btn:hover svg{transform:translateX(3px)}
.btn-primary{background:var(--navy);color:var(--white)}
.btn-primary:hover{background:var(--navy-light);transform:translateY(-2px);box-shadow:var(--s2)}
.btn-green{background:var(--green);color:var(--white)}
.btn-green:hover{background:var(--green-light);transform:translateY(-2px);box-shadow:var(--s2)}
.btn-outline{background:transparent;color:var(--white);border:1.5px solid rgba(255,255,255,.4)}
.btn-outline:hover{border-color:var(--white);background:rgba(255,255,255,.1)}
.btn-outline-dark{background:transparent;color:var(--navy);border:1.5px solid var(--navy)}
.btn-outline-dark:hover{background:var(--navy);color:var(--white)}

/* LAYOUT */
.container{max-width:1280px;margin:0 auto;padding:0 5%}
section{padding:6.5rem 0}
.section-header{margin-bottom:3.5rem}
.section-header.centered{text-align:center}
.section-header h2{margin-top:.6rem}
.section-header p{margin-top:.85rem;font-size:.98rem;max-width:560px}
.section-header.centered p{margin-left:auto;margin-right:auto}

/* REVEAL */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .65s ease,transform .65s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal:nth-child(2){transition-delay:.1s}
.reveal:nth-child(3){transition-delay:.18s}
.reveal:nth-child(4){transition-delay:.26s}
.reveal:nth-child(5){transition-delay:.34s}
.reveal:nth-child(6){transition-delay:.42s}

/* ══════════════════════════════════════════════════════
   HEADER — white, ZERO gap to hero
══════════════════════════════════════════════════════ */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:var(--white);
  border-bottom:1px solid var(--gray-200);
  height:var(--hh);
  display:flex;align-items:center;
  transition:box-shadow var(--ease);
}
.site-header.scrolled{box-shadow:var(--s2)}

.header-inner{
  max-width:1280px;margin:0 auto;padding:0 4%;
  width:100%;display:flex;align-items:center;
  justify-content:space-between;gap:1.5rem;
}

.logo-wrap{display:flex;align-items:center;flex-shrink:0}
.logo-wrap img{height:62px;width:auto}

/* NAV */
.main-nav{display:flex;align-items:center;gap:1.6rem}
.main-nav>a,.main-nav>.nav-dropdown>a{
  font-family:var(--fb);font-size:.76rem;font-weight:500;
  letter-spacing:.08em;text-transform:uppercase;
  color:var(--gray-600);transition:color var(--ease);position:relative;
  white-space:nowrap;
}
.main-nav>a::after{content:'';position:absolute;bottom:-3px;left:0;width:0;height:1.5px;background:var(--gold);transition:width .28s}
.main-nav>a:hover{color:var(--navy)}
.main-nav>a:hover::after{width:100%}

/* DROPDOWN — fixed hover gap with padding bridge */
.nav-dropdown{position:relative}
.nav-dropdown>a{display:flex;align-items:center;gap:.28rem;padding-bottom:6px;margin-bottom:-6px}
.nav-dropdown>a::after{display:none}
.nav-dropdown svg{width:11px;height:11px;transition:transform .28s;flex-shrink:0}
.nav-dropdown:hover>a svg{transform:rotate(180deg)}

.dropdown-menu{
  position:absolute;top:100%;left:50%;
  transform:translateX(-50%);
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:6px;padding:.65rem 0;min-width:210px;
  box-shadow:var(--s2);
  /* invisible by default — pointer-events off */
  opacity:0;pointer-events:none;
  transform:translateX(-50%) translateY(4px);
  transition:opacity .22s,transform .22s;
  /* 8px bridge above prevents gap */
  margin-top:0;
  padding-top:.65rem;
}
/* invisible bridge so mouse can travel from trigger to menu */
.dropdown-menu::before{
  content:'';position:absolute;top:-10px;left:0;right:0;height:10px;
}
.nav-dropdown:hover .dropdown-menu{
  opacity:1;pointer-events:all;
  transform:translateX(-50%) translateY(0);
}
.dropdown-menu a{
  display:block;padding:.5rem 1.15rem;
  font-size:.79rem;letter-spacing:.03em;
  color:var(--gray-600);transition:background var(--ease),color var(--ease);
  text-transform:none;font-weight:400;
}
.dropdown-menu a:hover{background:var(--navy-muted);color:var(--navy)}

.nav-cta{
  background:var(--navy)!important;color:var(--white)!important;
  padding:.56rem 1.3rem;border-radius:var(--r);
  font-weight:600!important;letter-spacing:.05em!important;
  transition:background var(--ease),transform var(--ease)!important;
}
.nav-cta::after{display:none!important}
.nav-cta:hover{background:var(--navy-light)!important;transform:translateY(-1px)!important}

.nav-toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px;border:none;background:none}
.nav-toggle span{width:22px;height:1.5px;background:var(--gray-900);display:block;transition:var(--ease)}

/* ══════════════════════════════════════════════════════
   HERO — flush, NO gap whatsoever
══════════════════════════════════════════════════════ */
.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  height:calc(100vh - var(--hh));
  min-height:580px;
  /* push exactly below header */
  margin-top:var(--hh);
  position:relative;overflow:hidden;
}

.hero-left{
  background:var(--navy-dark);
  display:flex;flex-direction:column;justify-content:center;
  padding:4rem 5% 4rem 6%;
  position:relative;z-index:2;
}
/* diagonal edge */
.hero-left::after{
  content:'';position:absolute;right:-42px;top:0;bottom:0;width:84px;
  background:var(--navy-dark);
  clip-path:polygon(0 0,0 100%,100% 100%);z-index:3;
}

.hero-eyebrow{display:flex;align-items:center;gap:.9rem;margin-bottom:1.5rem}
.hero-line{width:32px;height:1.5px;background:var(--gold);flex-shrink:0}
.hero-left h1{color:var(--white);margin-bottom:1.3rem}
.hero-left h1 em{font-style:italic;color:var(--gold-light)}
.hero-sub{color:rgba(255,255,255,.7);font-size:.97rem;line-height:1.85;margin-bottom:2.2rem;max-width:440px}
.hero-actions{display:flex;gap:.85rem;flex-wrap:wrap;margin-bottom:3rem}
.hero-stats{display:flex;gap:2rem;padding-top:2rem;border-top:1px solid rgba(255,255,255,.12);flex-wrap:wrap}
.stat-num{font-family:var(--fd);font-size:2rem;font-weight:600;color:var(--white);line-height:1}
.stat-label{font-size:.64rem;color:rgba(255,255,255,.38);letter-spacing:.1em;text-transform:uppercase;margin-top:.25rem}

/* SLIDER */
.hero-right{position:relative;overflow:hidden}
.hero-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity 1.1s ease}
.hero-slide.active{opacity:1}
.slide-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(20,31,74,.4) 0%,rgba(30,61,42,.25) 100%)}

.hero-badge{
  position:absolute;bottom:2rem;left:2rem;
  background:rgba(20,31,74,.9);backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.12);border-radius:6px;
  padding:1.2rem 1.4rem;max-width:265px;z-index:5;
}
.badge-label{font-size:.61rem;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);margin-bottom:.4rem}
.badge-text{font-family:var(--fd);font-size:.97rem;font-weight:600;color:var(--white);line-height:1.4}

.slide-dots{position:absolute;bottom:1rem;right:1.5rem;display:flex;gap:.38rem;z-index:5}
.slide-dot{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.28);cursor:pointer;transition:background .28s,transform .28s;border:none}
.slide-dot.active{background:var(--gold);transform:scale(1.35)}

/* ══════════════════════════════════════════════════════
   USP STRIP
══════════════════════════════════════════════════════ */
.usp-strip{background:var(--green)}
.usp-inner{display:flex;align-items:stretch;flex-wrap:wrap}
.usp-item{display:flex;align-items:center;gap:.9rem;flex:1;min-width:200px;padding:1.8rem 2.2rem;border-right:1px solid rgba(255,255,255,.14)}
.usp-item:last-child{border-right:none}
.usp-icon{width:40px;height:40px;background:rgba(255,255,255,.15);border-radius:7px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.usp-icon svg{width:19px;height:19px;color:white}
.usp-title{font-family:var(--fd);font-size:.97rem;font-weight:600;color:var(--white);line-height:1.2;margin-bottom:.15rem}
.usp-desc{font-size:.75rem;color:rgba(255,255,255,.68);line-height:1.4}

/* ══════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════ */
.about-section{background:var(--off-white);padding:6.5rem 0}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.about-img-wrap{position:relative;border-radius:8px;overflow:visible;box-shadow:var(--s3)}
.about-img-wrap img{width:100%;height:500px;object-fit:cover;object-position:center top;border-radius:8px}
.about-year-badge{position:absolute;bottom:-1.5rem;right:-1.5rem;background:var(--green);color:var(--white);padding:1.6rem;border-radius:6px;box-shadow:var(--s3);text-align:center}
.about-year{font-family:var(--fd);font-size:2.4rem;font-weight:600;line-height:1}
.about-year-label{font-size:.69rem;opacity:.75;margin-top:.25rem;letter-spacing:.06em}
.about-text h2{margin-top:.6rem;margin-bottom:1.2rem}
.about-text p{margin-bottom:1rem}
.team-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:2.2rem}
.team-card{background:var(--white);border-radius:5px;padding:1.3rem;border-left:3px solid var(--navy);box-shadow:var(--s1)}
.team-card.green{border-left-color:var(--green)}
.team-name{font-family:var(--fd);font-size:1.02rem;font-weight:600;margin-bottom:.16rem;color:var(--gray-900)}
.team-role{font-size:.67rem;color:var(--gold);letter-spacing:.1em;text-transform:uppercase;font-weight:600;margin-bottom:.6rem}
.team-desc{font-size:.81rem;color:var(--gray-600);line-height:1.6}

/* ══════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════ */
.services-section{background:var(--white);padding:6.5rem 0}
.services-intro{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;margin-bottom:3.8rem}
.services-intro h2{margin-top:.6rem;margin-bottom:1rem}
.svc-img-grid{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:190px 170px;gap:.9rem}
.svc-img-cell{border-radius:6px;overflow:hidden;position:relative}
.svc-img-cell img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.svc-img-cell:hover img{transform:scale(1.05)}
.svc-img-cell:first-child{grid-column:1/-1}
.svc-img-label{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(to top,rgba(20,31,74,.88) 0%,transparent 100%);padding:.75rem 1rem;font-size:.66rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--white)}

.service-tabs{display:flex;border-bottom:1px solid var(--gray-200);margin-bottom:1.7rem}
.tab-btn{padding:.68rem 1.4rem;font-family:var(--fb);font-size:.78rem;font-weight:500;letter-spacing:.05em;color:var(--gray-400);cursor:pointer;border:none;background:none;border-bottom:2.5px solid transparent;margin-bottom:-1px;transition:var(--ease)}
.tab-btn.active{color:var(--navy);border-bottom-color:var(--navy)}
.tab-btn:hover{color:var(--gray-900)}

.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.service-card{border:1px solid var(--gray-200);border-radius:6px;padding:1.7rem;transition:var(--ease);display:block;color:inherit;text-decoration:none}
.service-card:hover{border-color:var(--navy);box-shadow:var(--s2);transform:translateY(-3px)}
.service-tag{display:inline-block;font-size:.63rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--green);background:var(--green-muted);padding:.25rem .7rem;border-radius:2px;margin-bottom:.8rem}
.service-tag.jur{color:var(--navy);background:var(--navy-muted)}
.service-card h3{font-size:1rem;margin-bottom:.55rem}
.service-card p{font-size:.83rem;line-height:1.65}
.service-arrow{display:flex;align-items:center;gap:.36rem;margin-top:1rem;font-size:.75rem;font-weight:600;color:var(--navy);opacity:0;transform:translateY(4px);transition:var(--ease)}
.service-arrow svg{width:13px;height:13px}
.service-card:hover .service-arrow{opacity:1;transform:translateY(0)}

/* ══════════════════════════════════════════════════════
   WHY
══════════════════════════════════════════════════════ */
.why-section{background:var(--cream);padding:6.5rem 0}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.why-card{background:var(--white);padding:2.1rem 1.9rem;border-radius:6px;box-shadow:var(--s1);position:relative;overflow:hidden;transition:var(--ease)}
.why-card::after{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--navy),var(--green));transform:scaleX(0);transition:transform .42s ease}
.why-card:hover::after{transform:scaleX(1)}
.why-card:hover{transform:translateY(-5px);box-shadow:var(--s2)}
.why-num{position:absolute;top:1.2rem;right:1.4rem;font-family:var(--fd);font-size:2.9rem;font-weight:700;color:var(--gray-200);line-height:1}
.why-icon{width:44px;height:44px;border-radius:7px;display:flex;align-items:center;justify-content:center;margin-bottom:1.2rem}
.why-icon.navy{background:var(--navy-muted)}
.why-icon.green{background:var(--green-muted)}
.why-icon svg{width:20px;height:20px}
.why-card h3{margin-bottom:.6rem;font-size:1.08rem}

/* ══════════════════════════════════════════════════════
   CLIENTS
══════════════════════════════════════════════════════ */
.clients-section{background:var(--off-white);padding:6.5rem 0}
.clients-top{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:3rem;gap:2rem;flex-wrap:wrap}
.clients-top h2{max-width:380px}
.clients-top p{max-width:320px;font-size:.88rem}

.marquee-wrap{overflow:hidden;position:relative;margin-bottom:1.5rem}
.marquee-wrap::before,.marquee-wrap::after{content:'';position:absolute;top:0;bottom:0;width:80px;z-index:2}
.marquee-wrap::before{left:0;background:linear-gradient(to right,var(--off-white),transparent)}
.marquee-wrap::after{right:0;background:linear-gradient(to left,var(--off-white),transparent)}
.marquee-track{display:flex;gap:1rem;width:max-content;animation:marquee 30s linear infinite}
.marquee-wrap:hover .marquee-track{animation-play-state:paused}
@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.client-tile{background:var(--white);border:1px solid var(--gray-200);border-radius:6px;padding:1rem 1.4rem;display:flex;align-items:center;justify-content:center;min-width:152px;height:66px;box-shadow:var(--s1);flex-shrink:0;transition:var(--ease)}
.client-tile:hover{box-shadow:var(--s2);transform:translateY(-2px);border-color:var(--navy)}
.client-tile span{font-family:var(--fd);font-size:.85rem;font-weight:600;color:var(--gray-600);text-align:center;line-height:1.3}

.sectors-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:.82rem;margin-top:2.5rem}
.sector-pill{background:var(--white);border:1px solid var(--gray-200);border-radius:50px;padding:.52rem 1.1rem;display:flex;align-items:center;gap:.5rem;font-size:.79rem;font-weight:500;color:var(--gray-600);transition:var(--ease)}
.sector-pill:hover{border-color:var(--navy);color:var(--navy)}
.sector-dot{width:6px;height:6px;border-radius:50%;flex-shrink:0}
.sector-dot.g{background:var(--green)}
.sector-dot.n{background:var(--navy)}

/* ══════════════════════════════════════════════════════
   PROJECTS
══════════════════════════════════════════════════════ */
.projects-section{background:var(--gray-900);padding:6.5rem 0}
.projects-section .section-header h2{color:var(--white)}
.projects-section .section-header p{color:rgba(255,255,255,.5)}
.projects-grid{display:grid;grid-template-columns:2fr 1fr 1fr;grid-template-rows:270px 270px;gap:1.2rem}
.proj-card{border-radius:6px;overflow:hidden;position:relative;cursor:pointer}
.proj-card:first-child{grid-row:1/3}
.proj-img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease;display:block}
.proj-card:hover .proj-img{transform:scale(1.06)}
.proj-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(20,31,74,.93) 0%,transparent 62%);display:flex;flex-direction:column;justify-content:flex-end;padding:1.5rem;transition:opacity .4s}
.proj-label{font-size:.62rem;letter-spacing:.13em;text-transform:uppercase;color:var(--gold);margin-bottom:.4rem}
.proj-title{font-family:var(--fd);font-size:1.05rem;color:white;font-weight:600}
.proj-meta{font-size:.72rem;color:rgba(255,255,255,.52);margin-top:.26rem}
.proj-coming{font-size:.67rem;color:var(--gold);letter-spacing:.1em;text-transform:uppercase;margin-top:.5rem}

/* ══════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════ */
.cta-section{background:linear-gradient(135deg,var(--navy-dark) 0%,#0b1535 45%,var(--green-dark) 100%);padding:7.5rem 0;text-align:center;position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:52px 52px}
.cta-inner{position:relative;z-index:1}
.cta-section h2{color:var(--white);margin:.6rem auto 1.1rem;max-width:580px}
.cta-section p{color:rgba(255,255,255,.6);max-width:440px;margin:0 auto 2.2rem;font-size:.95rem}
.cta-actions{display:flex;justify-content:center;gap:.85rem;flex-wrap:wrap}
.cta-contacts{margin-top:2.5rem;display:flex;justify-content:center;gap:2.2rem;flex-wrap:wrap}
.cta-contact{display:flex;align-items:center;gap:.48rem;color:rgba(255,255,255,.52);font-size:.83rem;text-decoration:none;transition:color .28s}
.cta-contact:hover{color:var(--white)}
.cta-contact svg{width:14px;height:14px}

/* ══════════════════════════════════════════════════════
   FOOTER — WHITE
══════════════════════════════════════════════════════ */
.site-footer{background:var(--white);padding:4.5rem 0 2.2rem;border-top:2px solid var(--gray-200)}
.footer-grid{display:grid;grid-template-columns:1.7fr 1fr 1fr 1fr;gap:2.8rem;margin-bottom:3.5rem}
.footer-logo-wrap{display:flex;align-items:center;gap:.65rem;text-decoration:none;margin-bottom:1.1rem}
.footer-logo-wrap img{height:60px;width:auto}
.footer-tagline{font-size:.81rem;color:var(--gray-400);line-height:1.75;margin-bottom:1.3rem}
.footer-contact{display:flex;align-items:center;gap:.5rem;font-size:.81rem;color:var(--gray-600);text-decoration:none;margin-bottom:.4rem;transition:color .28s}
.footer-contact:hover{color:var(--navy)}
.footer-contact svg{width:13px;height:13px;flex-shrink:0}
.footer-col h4{font-family:var(--fb);font-size:.67rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--navy);margin-bottom:1.1rem}
.footer-links li{margin-bottom:.5rem}
.footer-links a{font-size:.83rem;color:var(--gray-600);transition:color .28s}
.footer-links a:hover{color:var(--navy)}
.footer-bottom{border-top:1px solid var(--gray-200);padding-top:1.8rem;display:flex;justify-content:space-between;align-items:center;font-size:.73rem;color:var(--gray-400);flex-wrap:wrap;gap:.8rem}
.footer-bottom a{color:var(--gray-400)}
.footer-bottom a:hover{color:var(--navy)}

/* ══════════════════════════════════════════════════════
   DIENSTENPAGINA HERO (inner pages)
══════════════════════════════════════════════════════ */
.page-hero{
  margin-top:var(--hh);
  min-height:340px;
  display:flex;align-items:flex-end;
  position:relative;overflow:hidden;
  background:var(--navy-dark);
}
.page-hero-img{position:absolute;inset:0;background-size:cover;background-position:center}
.page-hero-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(20,31,74,.92) 0%,rgba(20,31,74,.55) 100%)}
.page-hero-content{position:relative;z-index:2;padding:4rem 0 3.5rem}
.page-hero-content .label{margin-bottom:.7rem}
.page-hero-content h1{color:var(--white);font-size:clamp(2rem,4vw,3.4rem)}
.page-hero-content p{color:rgba(255,255,255,.72);margin-top:.9rem;max-width:560px;font-size:1rem}

/* Content page layout */
.page-content{padding:6rem 0}
.page-two-col{display:grid;grid-template-columns:1fr 1fr;gap:4.5rem;align-items:start}
.page-img-full{width:100%;border-radius:8px;object-fit:cover;height:420px;box-shadow:var(--s3)}
.page-text h2{margin-top:.6rem;margin-bottom:1.1rem}
.page-text h3{margin-top:2rem;margin-bottom:.7rem;color:var(--navy)}
.page-text p{margin-bottom:1rem}
.page-text ul{margin:1rem 0;display:flex;flex-direction:column;gap:.55rem}
.page-text ul li{display:flex;align-items:flex-start;gap:.65rem;font-size:.9rem;color:var(--gray-600);line-height:1.6}
.page-text ul li::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--gold);flex-shrink:0;margin-top:.55rem}
.page-cta-box{background:var(--navy-dark);border-radius:8px;padding:2.5rem;margin-top:2.5rem;text-align:center}
.page-cta-box h3{color:var(--white);margin-bottom:.7rem;font-size:1.3rem}
.page-cta-box p{color:rgba(255,255,255,.65);margin-bottom:1.5rem;font-size:.9rem}
.breadcrumb{display:flex;align-items:center;gap:.5rem;font-size:.75rem;color:rgba(255,255,255,.55);margin-bottom:1rem}
.breadcrumb a{color:rgba(255,255,255,.55);transition:color .28s}
.breadcrumb a:hover{color:var(--white)}
.breadcrumb span{color:var(--gold)}

/* ══════════════════════════════════════════════════════
   PRIVACY / LEGAL PAGES
══════════════════════════════════════════════════════ */
.legal-page{padding:5rem 0}
.legal-page h1{font-size:clamp(1.8rem,3vw,2.6rem);margin-bottom:2rem;color:var(--navy)}
.legal-page h2{font-size:1.3rem;color:var(--navy);margin:2.2rem 0 .7rem}
.legal-page p{margin-bottom:1rem;font-size:.9rem}
.legal-page ul{margin:1rem 0 1rem 1.5rem;display:flex;flex-direction:column;gap:.4rem}
.legal-page ul li{font-size:.9rem;color:var(--gray-600);list-style:disc}

/* ══════════════════════════════════════════════════════
   MOBILE NAV OVERLAY
══════════════════════════════════════════════════════ */
.mobile-nav{display:none;position:fixed;inset:0;background:var(--white);z-index:2000;flex-direction:column;padding:5.2rem 2rem 2rem;overflow-y:auto}
.mobile-nav.open{display:flex}
.mobile-nav a{font-family:var(--fd);font-size:1.5rem;font-weight:400;color:var(--gray-900);padding:.68rem 0;border-bottom:1px solid var(--gray-200);transition:color var(--ease)}
.mobile-nav a:hover{color:var(--navy)}
.mobile-nav .mobile-cta{margin-top:1.8rem;background:var(--navy);color:var(--white);text-align:center;padding:1rem;border-radius:var(--r);font-size:1rem}
.close-nav{position:absolute;top:1.4rem;right:1.4rem;border:none;background:none;cursor:pointer;padding:.5rem}
.close-nav svg{width:24px;height:24px;color:var(--gray-900)}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media(max-width:1080px){
  .hero{grid-template-columns:1fr;height:auto;min-height:auto}
  .hero-left{padding:3.5rem 5%}
  .hero-left::after{display:none}
  .hero-right{height:55vw;min-height:280px}
  .about-grid,.services-intro,.page-two-col{grid-template-columns:1fr;gap:2.5rem}
  .about-img-wrap{max-width:480px}
  .page-img-full{height:300px}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .projects-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto}
  .proj-card:first-child{grid-row:auto}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
  .sectors-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  :root{--hh:68px}
  h1{font-size:2.1rem}
  h2{font-size:1.7rem}
  section{padding:4rem 0}
  .main-nav{display:none}
  .nav-toggle{display:flex}
  .logo-wrap img{height:50px}
  .hero-right{height:50vw}
  .hero-stats{gap:1.3rem}
  .usp-inner{flex-direction:column}
  .usp-item{border-right:none;border-bottom:1px solid rgba(255,255,255,.14);padding:1.3rem 5%}
  .usp-item:last-child{border-bottom:none}
  .why-grid,.services-grid{grid-template-columns:1fr}
  .projects-grid{grid-template-columns:1fr}
  .clients-top{flex-direction:column;align-items:flex-start}
  .sectors-grid{grid-template-columns:1fr 1fr}
  .team-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{justify-content:center;text-align:center}
  .cta-contacts{flex-direction:column;gap:.75rem;align-items:center}
  .about-year-badge{bottom:.4rem;right:.4rem}
  .svc-img-grid{display:none}
  .page-hero{min-height:260px}
}
@media(max-width:480px){
  .hero-left{padding:2.8rem 5%}
  .hero-actions{flex-direction:column}
  .btn{justify-content:center;width:100%;max-width:280px}
}
