/* ============================================================
   GUP Italia – style.css  (multi-page version)
   ============================================================ */

:root {
  --navy:       #003057;
  --navy-dark:  #001d38;
  --navy-mid:   #004270;
  --red:        #c1272d;
  --red-dark:   #9b1e22;
  --white:      #ffffff;
  --off-white:  #f5f4f0;
  --light-gray: #eceae4;
  --mid-gray:   #6b7280;
  --dark-gray:  #1f2937;
  --charcoal:   #111827;

  --font-head: 'Barlow Condensed', 'Barlow', Impact, sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;

  --max-w:      1200px;
  --section-py: clamp(72px, 10vw, 120px);
  --radius:     6px;
  --radius-lg:  12px;
  --ease:       cubic-bezier(.4, 0, .2, 1);
  --dur:        .35s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; background: none; border: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-label.light { color: rgba(255,255,255,.5); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.01em;
  color: var(--charcoal);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.section-title.white { color: var(--white); }
.section-title em {
  font-style: italic;
  color: var(--red);
  font-weight: 700;
  text-transform: none;
  font-family: 'Barlow', sans-serif;
}
.section-title.white em { color: rgba(255,255,255,.7); }

.section-intro {
  font-size: 1.05rem;
  color: var(--mid-gray);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.75;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-white  { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--off-white); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

.btn-ghost  { background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.7); }

.btn-dark   { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn-dark:hover { background: var(--navy); border-color: var(--navy); box-shadow: 0 8px 24px rgba(0,48,87,.3); }

.btn-red    { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 8px 24px rgba(193,39,45,.35); }

.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.btn.full   { width: 100%; justify-content: center; }

.btn-arrow  { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--dur) var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   LAYOUT
   ============================================================ */
.section     { padding: var(--section-py) 0; }
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section-light  { background: var(--off-white); }
.section-dark   { background: var(--charcoal); }
.section-navy   { background: var(--navy-dark); }
.section-red    { background: var(--red); }
.section-white  { background: var(--white); }

.desktop-only { display: inline; }

/* ============================================================
   IMAGES
   ============================================================ */

/* Magazine article images */
.mag-img {
  width: 100%; height: 220px;
  object-fit: cover; display: block;
  transition: transform .55s var(--ease);
}
.mag-card-featured .mag-img { height: 280px; }
.mag-grid-full .mag-card .mag-img { height: 220px; }
.mag-card:hover .mag-img { transform: scale(1.04); }

/* Featured article image */
.featured-img {
  width: 100%; height: 400px;
  object-fit: cover; display: block;
  transition: transform .55s var(--ease);
}
.featured-img:hover { transform: scale(1.02); }

/* Section visual (image beside text) */
.section-visual {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
}

/* Step item with image */
.step-img {
  width: 72px; height: 72px;
  object-fit: cover; border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,.12);
}

/* Service card header image */
.service-card-img {
  width: 100%; height: 180px;
  object-fit: cover; display: block;
  transition: transform .55s var(--ease);
}
.service-detail-card:hover .service-card-img { transform: scale(1.03); }

/* Testimonial avatar photo */
.t-avatar-img {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--red);
  flex-shrink: 0;
}

/* Hero section with photo background */
.hero-home {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(0,66,112,.55) 0%, transparent 65%),
    linear-gradient(160deg, rgba(0,29,56,.88) 0%, rgba(0,22,40,.92) 60%, rgba(0,16,30,.96) 100%),
    url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Image overlay card (stats floating on image) */
.img-stat-overlay {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.img-stat-overlay img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; display: block;
}
.img-stat-overlay-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--red);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
}
.img-stat-overlay-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 900; line-height: 1;
}
.img-stat-overlay-badge span {
  font-size: .75rem; opacity: .85;
}

/* Contact image block */
.contact-visual {
  width: 100%; height: 320px;
  object-fit: cover; display: block;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible     { opacity: 1; transform: none; }
.reveal-delay-1     { transition-delay: .1s; }
.reveal-delay-2     { transition-delay: .22s; }
.reveal-delay-3     { transition-delay: .34s; }
.reveal-delay-4     { transition-delay: .46s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.navbar.solid {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
/* Inner pages always have solid navbar */
.navbar.always-solid {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 4px; }
.logo-gup {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.logo-italia {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 400;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
  align-self: flex-end; padding-bottom: 3px;
}
.logo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  align-self: flex-start; margin-top: 6px; margin-left: 2px;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: .8rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color var(--dur) var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  color: var(--white) !important;
  background: var(--red);
  padding: 9px 20px;
  border-radius: 2px;
  gap: 6px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: var(--red-dark) !important; }

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

/* ============================================================
   HERO – HOMEPAGE (full-screen)
   ============================================================ */

.hero-arch {
  position: absolute;
  top: -10%; right: -5%;
  width: 55%; aspect-ratio: 1;
  border: 80px solid rgba(255,255,255,.04);
  border-radius: 50%;
  animation: archPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-arch::before {
  content: '';
  position: absolute; inset: 60px;
  border: 40px solid rgba(193,39,45,.08);
  border-radius: 50%;
}
@keyframes archPulse {
  from { transform: scale(1) rotate(0deg); opacity: 1; }
  to   { transform: scale(1.05) rotate(5deg); opacity: .6; }
}

.hero-main {
  flex: 1;
  max-width: var(--max-w);
  width: 100%; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  padding-top: 130px; padding-bottom: 48px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 28px;
  animation: fadeUp .8s var(--ease) .2s both;
}
.eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900; line-height: .95;
  letter-spacing: -.02em;
  color: var(--white); text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp .8s var(--ease) .35s both;
}
.hero-title em { font-style: italic; color: var(--red); font-weight: 800; font-family: 'Barlow', sans-serif; text-transform: none; }

.hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.65); max-width: 580px; line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp .8s var(--ease) .5s both;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp .8s var(--ease) .65s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero-stats {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  padding: 32px clamp(20px, 5vw, 60px);
  gap: 0; flex-wrap: wrap;
  animation: fadeUp .8s var(--ease) .8s both;
}

.hero-stat { text-align: center; padding: 12px 48px; }
.hero-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.12); }

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--white);
  letter-spacing: -.02em; line-height: 1;
}
.stat-label { font-size: .78rem; color: rgba(255,255,255,.5); letter-spacing: .05em; margin-top: 4px; }
.stat-label small { display: block; font-size: .68rem; opacity: .7; margin-top: 2px; }

/* ============================================================
   HERO – INNER PAGES (shorter, above the fold)
   ============================================================ */
.page-hero {
  background: radial-gradient(ellipse at 60% 50%, rgba(0,66,112,.5) 0%, transparent 70%),
              linear-gradient(150deg, var(--navy-dark) 0%, #001628 100%);
  padding: 130px clamp(20px, 5vw, 60px) 72px;
  position: relative;
  overflow: hidden;
}
.page-hero-arch {
  position: absolute;
  top: -20%; right: -8%;
  width: 40%; aspect-ratio: 1;
  border: 60px solid rgba(255,255,255,.03);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative; z-index: 2;
}

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 24px;
}
.breadcrumb a { transition: color var(--dur) var(--ease); }
.breadcrumb a:hover { color: rgba(255,255,255,.7); }
.breadcrumb-sep { color: var(--red); }

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900; line-height: .95;
  letter-spacing: -.02em;
  color: var(--white); text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero-title em { font-style: italic; color: var(--red); font-weight: 800; font-family: 'Barlow', sans-serif; text-transform: none; }

.page-hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.6);
  max-width: 560px; line-height: 1.7;
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 16px;
}

.pillar-card {
  background: var(--white);
  padding: 48px 40px;
  border-top: 3px solid transparent;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-top-color var(--dur) var(--ease);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.1); border-top-color: var(--red); }

.pillar-num { font-family: var(--font-head); font-size: 3.5rem; font-weight: 900; color: var(--light-gray); line-height: 1; margin-bottom: 16px; }
.pillar-icon { width: 48px; height: 48px; color: var(--red); margin-bottom: 20px; }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-card h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 16px; }
.pillar-card p  { font-size: .95rem; color: var(--mid-gray); line-height: 1.75; }

/* ============================================================
   WHY GUP
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center; }
.why-cards { display: flex; flex-direction: column; gap: 2px; }

.why-card {
  background: rgba(255,255,255,.1);
  border-left: 3px solid rgba(255,255,255,.25);
  padding: 28px 32px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.why-card:hover { background: rgba(255,255,255,.16); border-left-color: var(--white); }

.why-card-icon { width: 32px; height: 32px; flex-shrink: 0; color: rgba(255,255,255,.8); margin-top: 2px; }
.why-card-icon svg { width: 100%; height: 100%; }
.why-card h4 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.why-card p  { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 16px;
}

.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  padding: 40px 32px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.service-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon { width: 40px; height: 40px; color: var(--red); margin-bottom: 20px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 14px; letter-spacing: .02em; line-height: 1.2; }
.service-card p  { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 20px; }

.service-tag {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); border: 1px solid rgba(193,39,45,.4); padding: 4px 10px; border-radius: 2px;
}

/* Service detail page */
.service-detail-card {
  background: var(--white);
  border-top: 4px solid var(--red);
  padding: 40px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.service-detail-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.service-detail-card .service-icon { color: var(--red); }
.service-detail-card h3 { color: var(--charcoal); margin-bottom: 14px; }
.service-detail-card p  { color: var(--mid-gray); }
.service-detail-card .service-tag { color: var(--red); }

.services-secondary { margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.08); }
.services-also      { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.services-pills     { display: flex; flex-wrap: wrap; gap: 10px; }
.services-pills span {
  font-size: .82rem; color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.1);
  padding: 7px 16px; border-radius: 2px;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  cursor: default;
}
.services-pills span:hover { border-color: rgba(255,255,255,.3); color: var(--white); }

/* Light variant for services on white bg */
.services-pills.light span { color: var(--mid-gray); border-color: var(--light-gray); }
.services-pills.light span:hover { border-color: var(--navy); color: var(--navy); }

/* ============================================================
   RESULTS / COUNTERS
   ============================================================ */
.results-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.results-text p { color: var(--mid-gray); margin-bottom: 32px; max-width: 400px; }
.results-counters { display: flex; flex-direction: column; gap: 2px; }

.counter-block {
  display: flex; align-items: center; gap: 28px;
  background: var(--white); padding: 32px 36px;
  border-left: 4px solid var(--red);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.counter-block:hover { transform: translateX(4px); box-shadow: 4px 8px 32px rgba(0,0,0,.08); }

.counter-num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 900; color: var(--red);
  letter-spacing: -.03em; line-height: 1;
  min-width: 130px; flex-shrink: 0;
}
.counter-info { display: flex; flex-direction: column; gap: 4px; }
.counter-info strong { font-size: 1rem; font-weight: 700; color: var(--charcoal); }
.counter-info span   { font-size: .85rem; color: var(--mid-gray); }

/* ============================================================
   TESTIMONIALS (slider)
   ============================================================ */
.testimonials-slider { overflow: hidden; margin-top: 16px; }
.testimonials-track  { display: flex; transition: transform .5s var(--ease); }

.testimonial-card {
  flex: 0 0 100%;
  padding: 56px 60px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.t-quote {
  font-family: Georgia, serif;
  font-size: 6rem; line-height: .8;
  color: var(--red); opacity: .4;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.85); line-height: 1.75;
  margin-bottom: 36px; font-style: italic; max-width: 80%;
}
.t-author { display: flex; align-items: center; gap: 16px; }
.t-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.t-author strong { display: block; font-size: .95rem; font-weight: 700; color: var(--white); }
.t-author span   { font-size: .82rem; color: rgba(255,255,255,.5); }

.testimonials-nav { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 40px; }
.t-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.t-btn svg { width: 18px; height: 18px; }
.t-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }

.t-dots { display: flex; gap: 8px; }
.t-dot  {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2); cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  border: none;
}
.t-dot.active { background: var(--red); transform: scale(1.3); }

/* Testimonial CARDS (full page – grid layout) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 16px;
}
.testimonial-card-full {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 44px 40px;
  transition: background var(--dur) var(--ease);
}
.testimonial-card-full:hover { background: rgba(255,255,255,.07); }
.testimonial-card-full .t-quote { font-size: 4rem; margin-bottom: 12px; }
.testimonial-card-full blockquote { font-size: .98rem; max-width: 100%; margin-bottom: 28px; }

/* ============================================================
   MAGAZINE
   ============================================================ */
.mag-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; gap: 24px;
}

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

.mag-card { background: var(--white); overflow: hidden; transition: transform var(--dur) var(--ease); }
.mag-card:hover { transform: translateY(-4px); }
.mag-card-featured { }
.mag-card-img { position: relative; overflow: hidden; }

.mag-placeholder { transition: transform .5s var(--ease); }
.mag-card:hover .mag-placeholder { transform: scale(1.04); }

.mag-placeholder     { height: 220px; }
.mag-card-featured .mag-placeholder { height: 280px; }
.mag-grid-full .mag-card .mag-placeholder { height: 220px; }

.p1 { background: linear-gradient(135deg, #003057, #c1272d); }
.p2 { background: linear-gradient(135deg, #1f2937, #003057); }
.p3 { background: linear-gradient(135deg, #003057, #001628); }
.p4 { background: linear-gradient(135deg, #1a0a0a, #c1272d 80%); }
.p5 { background: linear-gradient(135deg, #001628, #004270); }
.p6 { background: linear-gradient(135deg, #111827, #003057 70%); }

.mag-tag {
  position: absolute; top: 16px; left: 16px;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--red); color: var(--white); padding: 5px 12px; border-radius: 2px;
}

.mag-card-body { padding: 28px; }
.mag-card h3 {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
  text-transform: uppercase; line-height: 1.2; color: var(--charcoal);
  margin-bottom: 12px; letter-spacing: .01em;
  transition: color var(--dur) var(--ease);
}
.mag-card:hover h3 { color: var(--red); }
.mag-card p   { font-size: .88rem; color: var(--mid-gray); line-height: 1.7; margin-bottom: 20px; }

.read-more {
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red);
}
.read-more:hover { text-decoration: underline; }

/* ============================================================
   CONTACTS
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.white-text { color: rgba(255,255,255,.65); margin-bottom: 40px; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.75); font-size: .92rem; }
.contact-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.contact-item a   { transition: color var(--dur) var(--ease); }
.contact-item a:hover { color: var(--white); }

.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); }
.contact-form      { display: flex; flex-direction: column; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mid-gray);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body); font-size: .92rem; color: var(--charcoal);
  background: var(--off-white); border: 2px solid transparent;
  border-radius: var(--radius); padding: 12px 16px; outline: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  width: 100%; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-privacy { text-align: center; font-size: .75rem; color: var(--mid-gray); margin-top: 14px; }
.form-privacy a { color: var(--navy); text-decoration: underline; }

.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 48px 24px; gap: 16px; }
.form-success.show { display: flex; }
.success-check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-size: 1.8rem; display: flex; align-items: center; justify-content: center;
}
.form-success h3 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; text-transform: uppercase; }
.form-success p  { color: var(--mid-gray); }

/* ============================================================
   CTA BAND (reusable)
   ============================================================ */
.cta-band {
  background: var(--red);
  padding: 72px clamp(20px, 5vw, 60px);
}
.cta-band-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; text-transform: uppercase; color: var(--white); line-height: 1.1;
}
.cta-band h2 em { font-style: italic; font-weight: 700; font-family: 'Barlow', sans-serif; text-transform: none; opacity: .85; }
.cta-band p { color: rgba(255,255,255,.75); font-size: .95rem; margin-top: 8px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps-list { display: flex; flex-direction: column; gap: 2px; margin-top: 16px; }
.step-item {
  display: flex; gap: 32px; align-items: flex-start;
  background: var(--white); padding: 36px 40px;
  border-left: 4px solid transparent;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.step-item:hover { border-left-color: var(--red); transform: translateX(4px); }
.step-num {
  font-family: var(--font-head); font-size: 3rem; font-weight: 900;
  color: var(--light-gray); line-height: 1; flex-shrink: 0; min-width: 56px;
}
.step-content h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.step-content p  { font-size: .92rem; color: var(--mid-gray); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--charcoal); }

.footer-top {
  max-width: var(--max-w); margin: 0 auto;
  padding: 72px clamp(20px, 5vw, 60px) 56px;
  display: grid; grid-template-columns: 1.5fr 2fr; gap: 80px;
}

.footer-logo { display: flex; align-items: center; gap: 4px; margin-bottom: 20px; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 320px; margin-bottom: 28px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }

.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-nav-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 20px; }
.footer-nav-col a  { display: block; font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: 12px; transition: color var(--dur) var(--ease); }
.footer-nav-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px clamp(20px, 5vw, 60px);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pillars-grid     { grid-template-columns: 1fr 1fr; }
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .why-grid         { grid-template-columns: 1fr; gap: 48px; }
  .results-grid     { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid     { grid-template-columns: 1fr; gap: 48px; }
  .mag-grid         { grid-template-columns: 1fr 1fr; }
  .mag-card-featured { grid-column: 1 / -1; }
  .footer-top       { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .mag-grid-full    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 68px 0 0 0;
    background: var(--navy-dark);
    padding: 40px 24px; gap: 8px; z-index: 99; align-items: stretch;
    overflow-y: auto;
  }
  .nav-links.open a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .95rem; }
  .nav-links.open .nav-cta { margin-top: 16px; justify-content: center; padding: 16px; }
  .hamburger { display: flex; }

  .hero-stat { padding: 12px 24px; }
  .pillars-grid  { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .mag-grid      { grid-template-columns: 1fr; }
  .mag-grid-full { grid-template-columns: 1fr; }
  .testimonial-card { padding: 36px 28px; }
  .testimonial-card blockquote { max-width: 100%; }
  .form-row     { grid-template-columns: 1fr; }
  .footer-nav   { grid-template-columns: 1fr 1fr; }
  .mag-header   { flex-direction: column; align-items: flex-start; }
  .desktop-only { display: none; }
  .cta-band-inner { flex-direction: column; }
  .why-cards    { gap: 2px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; }
  .hero-stat-sep { width: 40px; height: 1px; margin: 4px auto; }
  .hero-actions  { flex-direction: column; }
  .btn           { justify-content: center; }
  .footer-nav    { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .step-item     { flex-direction: column; gap: 16px; }
}
