/* ═══════════════════════════════════════════════════
   NEX VENTURES — GLOBAL STYLESHEET
   Brand: Royal Blue #2F47C2 · Orange #F5952A · Green #3DA53D
   ═══════════════════════════════════════════════════ */

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

:root {
  --blue:        #2F47C2;
  --blue-dark:   #1E2E8A;
  --blue-light:  #4A65DE;
  --blue-pale:   #EEF1FB;
  --orange:      #F5952A;
  --orange-dark: #D4780E;
  --orange-pale: #FEF3E6;
  --green:       #3DA53D;
  --green-dark:  #2B7A2B;
  --green-pale:  #EBF7EB;
  --white:       #FFFFFF;
  --off-white:   #F8F9FE;
  --grey-100:    #F2F4F8;
  --grey-200:    #E2E6F0;
  --grey-400:    #9AA3BF;
  --grey-600:    #5A6380;
  --dark:        #0F1630;
  --dark-2:      #1A2240;
  --border:      rgba(47,71,194,0.15);
  --shadow-sm:   0 2px 12px rgba(47,71,194,0.10);
  --shadow-md:   0 8px 32px rgba(47,71,194,0.14);
  --shadow-lg:   0 20px 60px rgba(47,71,194,0.18);
  --radius:      4px;
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Urbanist', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }
button { font-family: 'Urbanist', sans-serif; cursor: pointer; }

/* ── TYPOGRAPHY ── */
.display {
  font-family: 'Playfair Display', serif;
  font-weight: 700; line-height: 1.08;
}
.serif { font-family: 'Playfair Display', serif; }
h1,h2,h3,h4 { line-height: 1.15; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }
.text-grey   { color: var(--grey-600); }
.bg-blue     { background: var(--blue); }
.bg-dark     { background: var(--dark); }
.bg-off      { background: var(--off-white); }
.section-pad { padding: 6rem 0; }

/* ── EYEBROW LABEL ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--orange);
}

/* ── SECTION HEADING ── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; color: var(--dark);
  margin-bottom: 1rem;
}
.section-title span { color: var(--blue); }
.section-title em { font-style: italic; color: var(--orange); }
.section-desc {
  font-size: 1.05rem; color: var(--grey-600);
  max-width: 560px; line-height: 1.8; margin-bottom: 3rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; border: none;
  transition: var(--transition); cursor: pointer;
}
.btn-blue {
  background: var(--blue); color: var(--white);
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-orange {
  background: var(--orange); color: var(--white);
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,149,42,0.35); }
.btn-green {
  background: var(--green); color: var(--white);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline-blue {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.12); }

/* ── NAV ── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--blue-pale);
  box-shadow: var(--shadow-sm);
  transition: padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0.85rem 2rem;
  max-width: 1280px; margin: 0 auto;
}
.nav-logo img { height: 52px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 0.3rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.55rem 1rem;
  font-size: 0.88rem; font-weight: 600;
  color: var(--dark); letter-spacing: 0.02em;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link.active::after {
  content: ''; position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px; background: var(--orange);
  border-radius: 2px;
}
.nav-link .arrow { font-size: 0.65rem; transition: transform var(--transition); }
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px;
  background: var(--white);
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 200;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible;
  pointer-events: all; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 0.7rem 1.2rem;
  font-size: 0.84rem; font-weight: 500; color: var(--dark);
  border-bottom: 1px solid var(--grey-100);
  transition: all var(--transition);
}
.dropdown a:hover { background: var(--blue-pale); color: var(--blue); padding-left: 1.6rem; }
.dropdown a:last-child { border-bottom: none; }

.nav-cta { margin-left: 1rem; }

/* Mobile toggle */
.nav-toggle { display: none; background: none; border: none; padding: 0.3rem; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--blue); margin: 5px 0;
  transition: var(--transition);
}

/* ── TOP BAR ── */
.topbar {
  background: var(--blue-dark);
  padding: 0.5rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar-text {
  font-size: 0.75rem; color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
}
.topbar-links { display: flex; gap: 1.5rem; }
.topbar-links a {
  font-size: 0.75rem; color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 0.35rem;
  transition: color var(--transition);
}
.topbar-links a:hover { color: var(--orange); }

/* ── HERO (HOME) ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  padding-top: 5.5rem; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(15,22,48,0.88) 0%, rgba(47,71,194,0.72) 60%, rgba(245,149,42,0.18) 100%),
    url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1800&q=80') center/cover no-repeat;
  animation: zoomIn 12s ease-out both;
}
@keyframes zoomIn { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 2px; background: var(--orange);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 700; line-height: 1.05;
  color: var(--white); margin-bottom: 1.6rem;
}
.hero-title .accent-orange { color: var(--orange); }
.hero-title .accent-green { color: #6EDF6E; }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.78);
  line-height: 1.8; max-width: 520px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2rem; margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}

/* Hero card */
.hero-card {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 2.4rem;
  border-top: 4px solid var(--blue);
}
.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--dark); margin-bottom: 0.5rem;
}
.hero-card p { font-size: 0.9rem; color: var(--grey-600); margin-bottom: 1.8rem; }
.form-field {
  display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem;
}
.form-field label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-600);
}
.form-field input, .form-field select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--grey-200); font-family: 'Urbanist', sans-serif;
  font-size: 0.9rem; color: var(--dark); outline: none;
  transition: border-color var(--transition);
  background: var(--off-white);
}
.form-field input:focus, .form-field select:focus { border-color: var(--blue); background: var(--white); }
.form-field select { -webkit-appearance: none; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--blue);
  padding: 0.9rem 0; overflow: hidden;
}
.marquee-track {
  display: inline-flex; gap: 2.5rem;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.marquee-dot { color: var(--orange); }

/* ── FEATURE STRIP ── */
.feature-strip {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  padding: 2rem 0;
}
.feature-strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; divide-line: 1px;
}
.feature-strip-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 2rem;
  border-right: 1px solid var(--grey-200);
}
.feature-strip-item:last-child { border-right: none; }
.fsi-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; border-radius: 50%;
}
.fsi-title { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.fsi-sub { font-size: 0.75rem; color: var(--grey-400); }

/* ── ABOUT SPLIT ── */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 560px;
}
.about-split-img {
  position: relative; overflow: hidden;
  min-height: 500px;
}
.about-split-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-split-img-badge {
  position: absolute; bottom: 2rem; right: -1px;
  background: var(--orange);
  padding: 1.4rem 2rem; color: white;
  text-align: center;
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700; line-height: 1;
}
.badge-txt { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; }
.about-split-content {
  padding: 5rem 4rem;
  background: var(--off-white);
  display: flex; flex-direction: column; justify-content: center;
}
.about-checks { display: flex; flex-direction: column; gap: 0.9rem; margin: 2rem 0; }
.check-item {
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.92rem; color: var(--grey-600);
}
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; flex-shrink: 0; font-weight: 700;
}

/* ── WHY CARDS ── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  padding: 2.4rem 2rem;
  border: 1.5px solid var(--grey-200);
  position: relative; overflow: hidden;
  transition: all var(--transition);
}
.why-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 4px; height: 0;
  background: var(--blue); transition: height 0.4s;
}
.why-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-card:hover::before { height: 100%; }
.why-icon {
  width: 56px; height: 56px;
  background: var(--blue-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.4rem;
  transition: background var(--transition);
}
.why-card:hover .why-icon { background: var(--blue); }
.why-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.why-card p { font-size: 0.86rem; color: var(--grey-600); line-height: 1.75; }

/* ── DESIGN CARDS ── */
.designs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.design-card {
  border: 1px solid var(--grey-200);
  overflow: hidden; transition: all var(--transition);
  background: var(--white);
}
.design-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.design-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.design-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.design-card:hover .design-card-img img { transform: scale(1.07); }
.design-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--blue); color: white;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}
.design-card-body { padding: 1.4rem 1.6rem 1.8rem; }
.design-card-type {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.4rem;
}
.design-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--dark); margin-bottom: 0.3rem;
}
.design-card-specs {
  display: flex; gap: 1.2rem; margin: 0.8rem 0;
  padding: 0.7rem 0; border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}
.spec-item { display: flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; color: var(--grey-600); }
.design-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 0.9rem;
}
.design-price { font-size: 1rem; font-weight: 700; color: var(--blue); }
.design-price span { font-size: 0.7rem; color: var(--grey-400); font-weight: 400; }

/* ── PROCESS STEPS ── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 3.5rem; position: relative;
}
.process-grid::before {
  content: ''; position: absolute;
  top: 2.8rem; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--orange), var(--green), var(--blue));
  opacity: 0.3;
}
.process-step { text-align: center; padding: 0 1rem; }
.step-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--blue); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  margin: 0 auto 1.4rem; position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(47,71,194,0.35);
}
.process-step:nth-child(2) .step-circle { background: var(--orange); box-shadow: 0 4px 20px rgba(245,149,42,0.35); }
.process-step:nth-child(3) .step-circle { background: var(--green); box-shadow: 0 4px 20px rgba(61,165,61,0.35); }
.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.process-step p { font-size: 0.82rem; color: var(--grey-600); line-height: 1.7; }

/* ── GALLERY GRID ── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 6px;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s, filter 0.4s; filter: brightness(0.9); }
.gallery-item:hover img { transform: scale(1.07); filter: brightness(1.05); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(3) { grid-column: span 2; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,22,48,0.6) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  font-size: 0.8rem; font-weight: 600; color: white;
  opacity: 0; transform: translateY(8px); transition: all 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: all var(--transition);
}
.testi-card::before {
  content: '"';
  position: absolute; top: -0.5rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 7rem; color: var(--blue-pale); line-height: 1;
  z-index: 0;
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); }
.testi-stars { color: var(--orange); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testi-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-style: italic;
  line-height: 1.75; color: var(--grey-600); margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.testi-author { display: flex; align-items: center; gap: 0.9rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.testi-role { font-size: 0.73rem; color: var(--grey-400); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #4A65DE 100%);
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--white); margin-bottom: 1rem; position: relative;
}
.cta-band p { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; position: relative; }
.cta-band .btns { display: flex; gap: 1rem; justify-content: center; position: relative; }

/* ── CONTACT FORM PAGE ── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0;
}
.contact-left-panel {
  background: var(--blue-dark);
  padding: 5rem 4rem;
  color: white;
}
.contact-left-panel .eyebrow { color: var(--orange); }
.contact-left-panel h2 { color: white; font-size: 2.4rem; margin-bottom: 1.2rem; }
.contact-left-panel p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 2.5rem; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem; color: rgba(255,255,255,0.85); font-size: 0.9rem;
}
.contact-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-right-panel { padding: 5rem 4rem; background: var(--off-white); }
.contact-right-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--dark); margin-bottom: 2rem;
}
.cform-field {
  display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.2rem;
}
.cform-field label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-600);
}
.cform-field input, .cform-field select, .cform-field textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--grey-200);
  font-family: 'Urbanist', sans-serif; font-size: 0.92rem;
  color: var(--dark); outline: none; background: white;
  transition: border-color var(--transition);
}
.cform-field input:focus, .cform-field select:focus, .cform-field textarea:focus {
  border-color: var(--blue);
}
.cform-field textarea { height: 110px; resize: none; }
.cform-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 9rem 0 5rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 60%, var(--blue) 100%);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -120px; top: -80px;
  width: 500px; height: 500px;
  border: 80px solid rgba(255,255,255,0.04);
  border-radius: 50%;
}
.page-hero::before {
  content: '';
  position: absolute; right: 80px; bottom: -100px;
  width: 300px; height: 300px;
  border: 50px solid rgba(245,149,42,0.1);
  border-radius: 50%;
}
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; color: white; margin-bottom: 1rem;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 560px; }

/* ── TABS ── */
.tabs-bar {
  display: flex; gap: 0.4rem;
  background: var(--grey-100);
  padding: 0.4rem; margin-bottom: 2.5rem;
  width: fit-content;
}
.tab-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: transparent; border: none;
  color: var(--grey-600); transition: all var(--transition);
  cursor: pointer;
}
.tab-btn.active {
  background: var(--blue); color: white;
  box-shadow: var(--shadow-sm);
}
.tab-btn:hover:not(.active) { color: var(--blue); }

/* ── STATS BAR ── */
.stats-bar { background: var(--blue); padding: 3rem 0; }
.stats-bar-inner {
  max-width: 1000px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--orange); line-height: 1;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 0.4rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 5rem 0 0;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem 3rem;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo img { height: 50px; filter: brightness(0) invert(1); margin-bottom: 1.2rem; }
.footer-desc { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 280px; margin-bottom: 1.8rem; }
.footer-social { display: flex; gap: 0.7rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 0.9rem;
  transition: all var(--transition); text-decoration: none;
}
.social-btn:hover { background: var(--orange); color: white; }
.footer-col-title {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.4rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 1.5rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--orange); }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 44px; height: 44px;
  background: var(--blue); color: white;
  border: none; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(12px);
  transition: all var(--transition);
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--orange); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BADGE ACCENTS ── */
.color-bar {
  display: flex; height: 5px;
}
.color-bar span:nth-child(1) { flex: 1; background: var(--blue); }
.color-bar span:nth-child(2) { flex: 1; background: var(--orange); }
.color-bar span:nth-child(3) { flex: 1; background: var(--green); }

/* ── MISC ── */
.divider { height: 1px; background: var(--grey-200); margin: 0; }
.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tag-blue { background: var(--blue-pale); color: var(--blue); }
.tag-orange { background: var(--orange-pale); color: var(--orange-dark); }
.tag-green { background: var(--green-pale); color: var(--green-dark); }
.centered { text-align: center; }
.centered .section-desc { margin: 0 auto 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Partner logos strip */
.partners-strip {
  background: var(--grey-100); padding: 2.5rem 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.partners-label {
  text-align: center; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--grey-400); margin-bottom: 1.5rem;
}
.partners-logos {
  display: flex; justify-content: center;
  align-items: center; gap: 4rem; flex-wrap: wrap;
}
.partner-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--grey-400); letter-spacing: 0.05em;
  transition: color var(--transition);
}
.partner-logo:hover { color: var(--blue); }

/* Notice band */
.notice-band {
  background: var(--orange); padding: 0.8rem 0; text-align: center;
}
.notice-band p {
  font-size: 0.82rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.06em;
}
.notice-band a { color: white; text-decoration: underline; }
