/* ============================================
   OFFICE-IN — Shared Stylesheet
   All pages use this single CSS file
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #1f2937;
  line-height: 1.6;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

:root {
  --navy: #0a1f44;
  --red: #b91c1c;
  --red-bright: #ef4444;
  --gray: #6b7280;
  --light-gray: #e5e7eb;
  --off-white: #f9f9f7;
  --white: #ffffff;
}

h1, h2, h3 { color: var(--navy); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -1.5px; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); letter-spacing: -1px; }
h3 { font-size: 1.25rem; letter-spacing: -0.5px; }

.tag {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.red-divider {
  width: 60px; height: 3px; background: var(--red); margin: 1rem 0 1.5rem;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

/* ============ UTILITY BAR ============ */
.utility-bar {
  background: var(--navy); color: var(--white); font-size: 0.8rem; padding: 0.5rem 0;
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; }
.utility-bar a { color: var(--white); transition: color 0.2s; }
.utility-bar a:hover { color: var(--red-bright); }
.utility-info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.utility-social { display: flex; gap: 1rem; }

@media (max-width: 768px) {
  .utility-bar { display: none; }
}

/* ============ MAIN NAVIGATION ============ */
.main-nav {
  background: var(--white); border-bottom: 1px solid var(--light-gray);
  position: sticky; top: 0; z-index: 100;
}
.main-nav .container {
  display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem;
}
.nav-logo-svg { height: 56px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--navy); font-size: 0.85rem; font-weight: 500;
  transition: color 0.2s; position: relative; padding-bottom: 4px;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a.active::after, .nav-links a:hover::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--red);
}
.nav-cta {
  background: var(--navy); color: var(--white); padding: 0.65rem 1.5rem;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.5px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red); }

/* ============ SECONDARY NAV (Top Menu Bar) ============ */
.secondary-nav {
  background: var(--navy); 
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky; top: 0; z-index: 101;
}
.secondary-nav .container {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 1.5rem;
}
.secondary-nav-links {
  display: flex; gap: 2rem; list-style: none;
  margin: 0 auto;
}
.secondary-nav-links a {
  color: rgba(255,255,255,0.85); font-size: 0.75rem; font-weight: 600;
  transition: color 0.2s; padding: 0.3rem 0;
  text-transform: uppercase; letter-spacing: 2.5px;
  position: relative;
}
.secondary-nav-links a:hover, .secondary-nav-links a.active {
  color: var(--red-bright);
}
.secondary-nav-links a.active::after, .secondary-nav-links a:hover::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--red-bright);
}
.secondary-nav-utility {
  display: flex; gap: 1.5rem; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.7);
}
.secondary-nav-utility a { color: rgba(255,255,255,0.7); }
.secondary-nav-utility a:hover { color: var(--red-bright); }

/* When secondary nav is present, main nav sticks below it */
.has-secondary-nav .main-nav { top: 38px; }

.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 1.5rem; color: var(--navy); padding: 0.5rem;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    gap: 1rem; z-index: 99;
  }
  .secondary-nav { display: none; }
  .has-secondary-nav .main-nav { top: 0; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block; padding: 0.85rem 1.75rem; font-size: 0.95rem;
  font-weight: 600; letter-spacing: 0.5px;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-bright); }
.btn-secondary {
  background: transparent; color: var(--white); border: 1.5px solid var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--red); }
.btn-outline {
  background: transparent; color: var(--navy); border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ============ PAGE HERO (sub-pages) ============ */
.page-hero {
  background: var(--navy); color: var(--white);
  padding: 5rem 0 4rem; position: relative;
}
.page-hero .tag { color: var(--red-bright); }
.page-hero h1 { color: var(--white); margin: 1rem 0 1.5rem; max-width: 900px; }
.page-hero .lead {
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  max-width: 700px; line-height: 1.5;
}

/* ============ HERO (homepage) ============ */
.hero {
  position: relative; min-height: 600px; padding: 6rem 0;
  background: linear-gradient(to bottom, rgba(10,31,68,0.4), rgba(10,31,68,0.7)), var(--navy);
  color: var(--white); display: flex; align-items: center; overflow: hidden;
}
.hero .container { max-width: 900px; }
.hero .tag { color: var(--red-bright); }
.hero h1 { color: var(--white); margin: 1rem 0 1rem; }
.hero-secondary {
  font-size: 1.25rem; color: var(--white); margin-bottom: 1.5rem;
  font-weight: 500; max-width: 700px; line-height: 1.4;
}
.hero p.lead {
  font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem;
  max-width: 700px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============ HERO MOSAIC (Globalization visual) ============ */
.hero-mosaic {
  position: relative;
  min-height: 720px;
  background: var(--navy);
  overflow: hidden;
  padding: 7rem 0;
}

.mosaic-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  z-index: 1;
}

.mosaic-cell {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  animation: mosaicFade 18s infinite ease-in-out;
  filter: grayscale(40%) brightness(0.55) contrast(1.05);
}

/* Each cell gets a different city background (SVG inline-encoded gradients + symbolic shapes) */
.mosaic-cell[data-city="berlin"] {
  background-image:
    linear-gradient(135deg, rgba(10,31,68,0.7), rgba(185,28,28,0.4)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Crect width='400' height='400' fill='%231a2845'/%3E%3Crect x='50' y='180' width='40' height='220' fill='%23253659'/%3E%3Crect x='110' y='140' width='50' height='260' fill='%232d4068'/%3E%3Crect x='180' y='100' width='60' height='300' fill='%23354b78'/%3E%3Crect x='260' y='160' width='45' height='240' fill='%232d4068'/%3E%3Crect x='325' y='200' width='40' height='200' fill='%23253659'/%3E%3Ccircle cx='320' cy='80' r='30' fill='%23ffb74d' opacity='0.8'/%3E%3Crect x='195' y='130' width='30' height='80' fill='%23fbbf24' opacity='0.6'/%3E%3C/svg%3E");
  animation-delay: 0s;
}
.mosaic-cell[data-city="dubai"] {
  background-image:
    linear-gradient(135deg, rgba(10,31,68,0.5), rgba(185,28,28,0.5)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Crect width='400' height='400' fill='%23e8a87c'/%3E%3Cpath d='M0 280 L80 200 L120 220 L180 100 L220 180 L280 60 L320 160 L400 220 L400 400 L0 400 Z' fill='%23a06848'/%3E%3Cpath d='M150 90 L180 30 L210 90 L195 90 L210 70 L195 200 L165 200 L180 70 L165 90 Z' fill='%23d4a574'/%3E%3Cpath d='M250 50 L280 10 L310 50 L295 50 L310 30 L295 200 L265 200 L280 30 L265 50 Z' fill='%23d4a574'/%3E%3Ccircle cx='340' cy='80' r='35' fill='%23ff9a3c' opacity='0.9'/%3E%3C/svg%3E");
  animation-delay: 2s;
}
.mosaic-cell[data-city="newyork"] {
  background-image:
    linear-gradient(135deg, rgba(10,31,68,0.6), rgba(185,28,28,0.45)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Crect width='400' height='400' fill='%23253659'/%3E%3Crect x='30' y='100' width='35' height='300' fill='%23354b78'/%3E%3Crect x='75' y='60' width='40' height='340' fill='%231a2845'/%3E%3Crect x='125' y='130' width='30' height='270' fill='%23354b78'/%3E%3Crect x='165' y='40' width='45' height='360' fill='%231a2845'/%3E%3Crect x='220' y='90' width='35' height='310' fill='%23354b78'/%3E%3Crect x='265' y='70' width='40' height='330' fill='%231a2845'/%3E%3Crect x='315' y='110' width='35' height='290' fill='%23354b78'/%3E%3Crect x='360' y='160' width='30' height='240' fill='%23253659'/%3E%3Cg fill='%23fbbf24' opacity='0.7'%3E%3Crect x='85' y='100' width='5' height='5'/%3E%3Crect x='98' y='150' width='5' height='5'/%3E%3Crect x='180' y='80' width='5' height='5'/%3E%3Crect x='195' y='180' width='5' height='5'/%3E%3Crect x='275' y='120' width='5' height='5'/%3E%3Crect x='290' y='200' width='5' height='5'/%3E%3C/g%3E%3C/svg%3E");
  animation-delay: 4s;
}
.mosaic-cell[data-city="tokyo"] {
  background-image:
    linear-gradient(135deg, rgba(10,31,68,0.6), rgba(185,28,28,0.4)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Crect width='400' height='400' fill='%23d4537a'/%3E%3Crect x='20' y='150' width='30' height='250' fill='%23253659'/%3E%3Crect x='60' y='100' width='35' height='300' fill='%231a2845'/%3E%3Crect x='105' y='180' width='25' height='220' fill='%23354b78'/%3E%3Crect x='140' y='80' width='40' height='320' fill='%231a2845'/%3E%3Crect x='190' y='140' width='30' height='260' fill='%23253659'/%3E%3Crect x='230' y='60' width='45' height='340' fill='%231a2845'/%3E%3Crect x='285' y='120' width='35' height='280' fill='%23253659'/%3E%3Crect x='330' y='90' width='40' height='310' fill='%231a2845'/%3E%3Ccircle cx='320' cy='100' r='40' fill='%23ff4d6d' opacity='0.7'/%3E%3C/svg%3E");
  animation-delay: 6s;
}
.mosaic-cell[data-city="madrid"] {
  background-image:
    linear-gradient(135deg, rgba(10,31,68,0.5), rgba(185,28,28,0.5)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Crect width='400' height='400' fill='%23c9a26d'/%3E%3Crect x='40' y='200' width='60' height='200' fill='%238b6f47'/%3E%3Crect x='110' y='150' width='80' height='250' fill='%23a08254'/%3E%3Cpath d='M150 100 L150 150 L190 150 L190 100 L170 80 Z' fill='%238b6f47'/%3E%3Crect x='200' y='180' width='70' height='220' fill='%23a08254'/%3E%3Crect x='280' y='220' width='50' height='180' fill='%238b6f47'/%3E%3Crect x='340' y='190' width='40' height='210' fill='%23a08254'/%3E%3Ccircle cx='350' cy='90' r='30' fill='%23ffb74d' opacity='0.8'/%3E%3C/svg%3E");
  animation-delay: 8s;
}
.mosaic-cell[data-city="bologna"] {
  background-image:
    linear-gradient(135deg, rgba(10,31,68,0.6), rgba(185,28,28,0.4)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Crect width='400' height='400' fill='%23b85c3c'/%3E%3Crect x='30' y='180' width='70' height='220' fill='%23753a26'/%3E%3Crect x='110' y='140' width='80' height='260' fill='%238a4630'/%3E%3Cpath d='M140 100 L150 80 L160 100 Z' fill='%23753a26'/%3E%3Cpath d='M170 110 L180 80 L190 110 Z' fill='%23753a26'/%3E%3Crect x='200' y='160' width='80' height='240' fill='%23a05230'/%3E%3Cpath d='M230 110 L245 70 L260 110 Z' fill='%23753a26'/%3E%3Crect x='290' y='200' width='60' height='200' fill='%238a4630'/%3E%3Crect x='360' y='170' width='30' height='230' fill='%23753a26'/%3E%3Ccircle cx='340' cy='80' r='28' fill='%23ffd6a5' opacity='0.6'/%3E%3C/svg%3E");
  animation-delay: 10s;
}
.mosaic-cell[data-city="houston"] {
  background-image:
    linear-gradient(135deg, rgba(10,31,68,0.6), rgba(185,28,28,0.4)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Crect width='400' height='400' fill='%23354b78'/%3E%3Crect x='20' y='200' width='40' height='200' fill='%231a2845'/%3E%3Crect x='65' y='120' width='50' height='280' fill='%23253659'/%3E%3Crect x='120' y='160' width='40' height='240' fill='%231a2845'/%3E%3Crect x='165' y='80' width='55' height='320' fill='%23253659'/%3E%3Crect x='225' y='110' width='50' height='290' fill='%231a2845'/%3E%3Crect x='280' y='70' width='50' height='330' fill='%23253659'/%3E%3Crect x='335' y='150' width='45' height='250' fill='%231a2845'/%3E%3Cg fill='%23fbbf24' opacity='0.6'%3E%3Crect x='75' y='150' width='4' height='4'/%3E%3Crect x='85' y='200' width='4' height='4'/%3E%3Crect x='175' y='120' width='4' height='4'/%3E%3Crect x='240' y='150' width='4' height='4'/%3E%3Crect x='290' y='110' width='4' height='4'/%3E%3C/g%3E%3C/svg%3E");
  animation-delay: 12s;
}
.mosaic-cell[data-city="singapore"] {
  background-image:
    linear-gradient(135deg, rgba(10,31,68,0.55), rgba(185,28,28,0.5)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Crect width='400' height='400' fill='%23ec407a'/%3E%3Cpath d='M0 280 Q100 260 200 280 T400 280 L400 400 L0 400 Z' fill='%231a2845'/%3E%3Crect x='30' y='120' width='40' height='180' fill='%23253659'/%3E%3Crect x='80' y='80' width='50' height='220' fill='%231a2845'/%3E%3Crect x='140' y='150' width='35' height='150' fill='%23354b78'/%3E%3Cpath d='M180 100 L200 60 L220 100 L220 280 L180 280 Z' fill='%231a2845'/%3E%3Crect x='230' y='130' width='40' height='170' fill='%23253659'/%3E%3Crect x='280' y='90' width='50' height='210' fill='%231a2845'/%3E%3Crect x='340' y='160' width='40' height='140' fill='%23354b78'/%3E%3Ccircle cx='80' cy='80' r='25' fill='%23ffeb3b' opacity='0.7'/%3E%3C/svg%3E");
  animation-delay: 14s;
}
.mosaic-cell[data-city="mumbai"] {
  background-image:
    linear-gradient(135deg, rgba(10,31,68,0.5), rgba(185,28,28,0.5)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Crect width='400' height='400' fill='%23d4a574'/%3E%3Cpath d='M0 280 L400 280 L400 400 L0 400 Z' fill='%23253659' opacity='0.8'/%3E%3Crect x='30' y='150' width='50' height='150' fill='%23a08254'/%3E%3Crect x='90' y='100' width='60' height='200' fill='%238b6f47'/%3E%3Cpath d='M120 100 L130 70 L150 70 L160 100 Z' fill='%23a08254'/%3E%3Crect x='160' y='130' width='50' height='170' fill='%23a08254'/%3E%3Crect x='220' y='80' width='70' height='220' fill='%238b6f47'/%3E%3Crect x='240' y='40' width='30' height='50' fill='%23a08254'/%3E%3Crect x='300' y='130' width='50' height='170' fill='%23a08254'/%3E%3Crect x='360' y='160' width='30' height='140' fill='%238b6f47'/%3E%3Ccircle cx='350' cy='80' r='35' fill='%23ff9a3c' opacity='0.8'/%3E%3C/svg%3E");
  animation-delay: 16s;
}

@keyframes mosaicFade {
  0%, 100% { opacity: 1; transform: scale(1); }
  45%, 55% { opacity: 0.3; transform: scale(1.08); }
}

/* Dark overlay for text readability */
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(ellipse at center, rgba(10,31,68,0.6) 0%, rgba(10,31,68,0.85) 100%),
    linear-gradient(135deg, rgba(10,31,68,0.7), rgba(10,31,68,0.5));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

/* Floating city labels at corners */
.city-labels {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 4;
}
.city-labels span {
  position: absolute;
  font-size: 0.65rem;
  letter-spacing: 3px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-family: 'Helvetica Neue', monospace;
}
.city-labels span:nth-child(1) { top: 8%; left: 4%; }
.city-labels span:nth-child(2) { top: 8%; left: 38%; }
.city-labels span:nth-child(3) { top: 8%; right: 4%; }
.city-labels span:nth-child(4) { top: 48%; left: 4%; }
.city-labels span:nth-child(5) { top: 48%; left: 38%; }
.city-labels span:nth-child(6) { top: 48%; right: 4%; }
.city-labels span:nth-child(7) { bottom: 8%; left: 4%; }
.city-labels span:nth-child(8) { bottom: 8%; left: 38%; }
.city-labels span:nth-child(9) { bottom: 8%; right: 4%; }

@media (max-width: 800px) {
  .city-labels { display: none; }
  .hero-mosaic { min-height: 560px; padding: 4rem 0; }
}


/* ============ PACKAGE TEASER ============ */
.package-teaser {
  background: var(--white); padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--light-gray);
}
.teaser-intro { text-align: center; margin-bottom: 2.5rem; }
.teaser-intro h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.teaser-intro p { color: var(--gray); font-size: 1rem; }
.teaser-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  max-width: 900px; margin: 0 auto;
}
.teaser-card {
  background: var(--white); border: 2px solid var(--light-gray);
  padding: 1.75rem; cursor: pointer; transition: all 0.25s ease;
  display: flex; flex-direction: column; justify-content: space-between;
  text-align: left;
}
.teaser-card:hover {
  border-color: var(--red); transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(10, 31, 68, 0.08);
}
.teaser-card.premium { border-color: var(--red); }
.teaser-card .teaser-label {
  font-size: 0.7rem; color: var(--red); font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.4rem;
}
.teaser-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; letter-spacing: 1px; }
.teaser-card .teaser-meta {
  color: var(--navy); font-weight: 600; font-size: 0.95rem; margin-bottom: 1rem;
}
.teaser-card p.teaser-desc {
  color: var(--gray); font-size: 0.9rem; line-height: 1.5; margin-bottom: 1.25rem;
}
.teaser-card .teaser-cta {
  color: var(--red); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.teaser-card:hover .teaser-cta { color: var(--navy); }

@media (max-width: 700px) {
  .teaser-grid { grid-template-columns: 1fr; }
  .package-teaser { padding: 2.5rem 0 2rem; }
}

/* ============ WHAT IS / ISN'T ============ */
.what-is { background: var(--off-white); text-align: center; }
.what-is h2 { margin-bottom: 0.5rem; }
.what-is-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  max-width: 1000px; margin: 3rem auto 0; text-align: left;
}
.what-is-col h3 {
  margin-bottom: 1.5rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--light-gray);
}
.what-is-col.no h3 { color: var(--red); }
.what-is-col.yes h3 { color: var(--navy); }
.what-is-col ul { list-style: none; }
.what-is-col li {
  padding: 0.75rem 0 0.75rem 1.75rem; position: relative;
  color: var(--navy); font-size: 1.05rem;
}
.what-is-col.no li::before {
  content: '✕'; position: absolute; left: 0; color: var(--red);
  font-weight: 700; font-size: 1.1rem;
}
.what-is-col.yes li::before {
  content: '✓'; position: absolute; left: 0; color: #16a34a;
  font-weight: 700; font-size: 1.2rem;
}
.what-is-tagline {
  margin-top: 3rem; padding: 2rem;
  background: var(--white); border-left: 4px solid var(--red);
  max-width: 800px; margin-left: auto; margin-right: auto; text-align: left;
}
.what-is-tagline p { font-size: 1.15rem; color: var(--navy); font-weight: 600; }

@media (max-width: 800px) {
  .what-is-grid { grid-template-columns: 1fr; }
}

/* ============ QUESTIONS ============ */
.questions { background: var(--white); text-align: center; padding: 6rem 0; }
.questions h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); margin-top: 0.5rem; }
.questions-list { max-width: 800px; margin: 3rem auto 0; list-style: none; }
.questions-list li {
  padding: 1.5rem 1rem; border-bottom: 1px solid var(--light-gray);
  font-size: 1.1rem; color: var(--navy); text-align: left;
  position: relative; padding-left: 3rem;
}
.questions-list li::before {
  content: '?'; position: absolute; left: 1rem; color: var(--red);
  font-weight: 700; font-size: 1.3rem;
}
.questions .btn { margin-top: 3rem; }

/* ============ WHY OFFICE-IN ============ */
.why-block { background: var(--off-white); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  background: var(--white); padding: 2rem 1.5rem;
  border: 1px solid var(--light-gray); transition: all 0.3s;
}
.why-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 30px rgba(10,31,68,0.1);
  border-color: var(--red);
}
.why-number {
  font-size: 2.5rem; font-weight: 700; color: var(--red); letter-spacing: -2px;
}
.why-card .red-divider { margin: 1rem 0; }
.why-card h3 { margin-bottom: 0.75rem; font-size: 1.05rem; }
.why-card p { font-size: 0.9rem; color: var(--gray); }

@media (max-width: 1000px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============ TAGLINE BAND ============ */
.tagline-band { background: var(--off-white); padding: 5rem 0; text-align: center; }
.tagline-band h2 { font-size: clamp(1.8rem, 4vw, 3rem); max-width: 900px; margin: 0 auto; }

/* ============ WE WORK AS ============ */
.work-as { background: var(--white); }
.work-as .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.work-as.reverse .container {
  grid-template-areas: "text image";
}
.work-as.reverse .work-image { grid-area: image; }
.work-as.reverse .work-text { grid-area: text; }
.work-image {
  background: var(--light-gray); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-style: italic;
}
.work-as h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -0.5px; }
.work-list { list-style: none; margin-top: 1.5rem; }
.work-list li {
  padding: 0.6rem 0 0.6rem 1.75rem; position: relative;
  border-bottom: 1px solid var(--light-gray); font-size: 0.95rem;
}
.work-list li:last-child { border-bottom: none; }
.work-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0.6rem;
  color: var(--red); font-weight: 700;
}

@media (max-width: 800px) {
  .work-as .container { grid-template-columns: 1fr !important; }
  .work-as.reverse .work-image, .work-as.reverse .work-text { grid-area: auto; }
}

/* ============ PACKAGES (detailed) ============ */
.packages { background: var(--white); padding: 6rem 0; }
.packages-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 900px; margin: 3rem auto 0;
}
.package-card {
  background: var(--white); padding: 3rem 2rem;
  border: 2px solid var(--light-gray);
  transition: all 0.3s; text-align: center;
}
.package-card.premium { border-color: var(--red); position: relative; }
.package-card.premium::before {
  content: 'MOST EXCLUSIVE';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white);
  padding: 4px 16px; font-size: 0.7rem; letter-spacing: 2px; font-weight: 700;
}
.package-card h3 { font-size: 1.75rem; margin-bottom: 1rem; letter-spacing: 1px; }
.package-card .package-desc {
  font-size: 1rem; color: var(--gray); margin-bottom: 1.5rem; min-height: 60px;
}
.package-features { list-style: none; text-align: left; margin: 2rem 0; }
.package-features li {
  padding: 0.5rem 0 0.5rem 1.75rem; position: relative; font-size: 0.95rem;
}
.package-features li::before {
  content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700;
}
.package-card .btn { width: 100%; margin-top: 1.5rem; }
.package-card.premium .btn-primary { background: var(--red); }
.package-card.shared .btn-primary { background: var(--navy); }

@media (max-width: 700px) {
  .packages-grid { grid-template-columns: 1fr; }
}

/* ============ ADDITIONAL SERVICES ============ */
.add-services { background: var(--off-white); padding: 5rem 0; }
.add-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.add-card {
  background: var(--white); padding: 2rem;
  border: 1px solid var(--light-gray); transition: all 0.3s;
}
.add-card:hover { border-color: var(--red); transform: translateY(-2px); }
.add-card h3 {
  margin-bottom: 0.75rem; font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.add-card p { font-size: 0.95rem; color: var(--gray); margin-bottom: 1.25rem; }
.add-card .add-cta {
  color: var(--red); font-weight: 600; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1.5px;
}

@media (max-width: 700px) {
  .add-grid { grid-template-columns: 1fr; }
}

/* ============ HOW WE WORK ============ */
.how-we-work { background: var(--white); padding: 6rem 0; }
.how-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start;
}
.how-steps { display: grid; gap: 1.5rem; margin-top: 2rem; }
.how-step {
  display: grid; grid-template-columns: 50px 1fr; gap: 1.25rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--light-gray);
}
.how-step:last-child { border-bottom: none; }
.step-num { font-size: 1.5rem; font-weight: 700; color: var(--red); }
.step-content h3 { margin-bottom: 0.5rem; }
.step-content p { color: var(--gray); font-size: 0.95rem; }
.how-cta-card { background: var(--navy); color: var(--white); padding: 2rem; }
.how-cta-card h3 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.15rem; }
.how-cta-card .btn-primary { display: block; text-align: center; }

@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ============ POSITION STATEMENT ============ */
.position-statement {
  background: var(--off-white); padding: 5rem 0; text-align: center;
}
.position-statement h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 1000px; margin: 0 auto;
  line-height: 1.5; font-weight: 700;
}
.position-statement h2 .accent { color: var(--red); }

/* ============ STATS ============ */
.stats { background: var(--navy); color: var(--white); padding: 4rem 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
}
.stat-num {
  font-size: 3.5rem; font-weight: 700; color: var(--red-bright);
  letter-spacing: -2px; margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 1rem; color: var(--white);
}
.stat-body { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .stat-num { font-size: 2.5rem; }
}

/* ============ REGION GRID (Locations) ============ */
.region-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.region-card {
  background: var(--white); padding: 2rem;
  border: 1px solid var(--light-gray); transition: all 0.3s;
  cursor: pointer;
}
.region-card:hover {
  border-color: var(--red); transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10,31,68,0.08);
}
.region-card .region-label {
  font-size: 0.75rem; color: var(--red); font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
}
.region-card h3 { margin: 0.5rem 0 1rem; font-size: 1.5rem; }
.region-card .countries {
  color: var(--gray); font-size: 0.9rem; line-height: 1.7;
  margin-bottom: 1.5rem; min-height: 110px;
}
.region-card .explore-link {
  color: var(--red); font-weight: 600; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1.5px;
}

@media (max-width: 900px) {
  .region-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .region-grid { grid-template-columns: 1fr; }
}

.callout-box {
  background: var(--off-white); border-left: 4px solid var(--red);
  padding: 2rem; max-width: 700px; margin: 3rem auto 0; text-align: center;
}
.callout-box p {
  font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--navy); font-weight: 600;
}

/* ============ HEADQUARTERS / FOOTER ============ */
.headquarters { background: var(--white); padding-bottom: 3rem; padding-top: 5rem; }
.hq-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem;
}
.hq-card {
  padding: 2rem; border-top: 4px solid var(--red);
  border-left: 1px solid var(--light-gray); border-right: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.hq-label {
  font-size: 0.75rem; color: var(--red); font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem;
}
.hq-card h3 { margin-bottom: 0.75rem; }
.hq-card p { font-size: 0.9rem; color: var(--gray); margin-bottom: 0.5rem; line-height: 1.6; }
.hq-card p strong { color: var(--navy); }

@media (max-width: 800px) {
  .hq-grid { grid-template-columns: 1fr; }
}

.legal-strip {
  text-align: center; padding: 2rem 0; font-size: 0.8rem; color: var(--gray);
  border-top: 1px solid var(--light-gray);
}
.legal-strip a { color: var(--gray); }
.legal-strip a:hover { color: var(--red); }

/* ============ COUNTRY LIST (Locations) ============ */
.country-block {
  padding: 2rem 0; border-bottom: 1px solid var(--light-gray);
}
.country-block:last-child { border-bottom: none; }
.country-name {
  display: flex; align-items: center; gap: 1rem;
  font-size: 1.5rem; font-weight: 700; color: var(--navy);
  margin-bottom: 1rem;
}
.country-flag {
  font-size: 1.8rem; line-height: 1;
}
.country-sectors {
  color: var(--gray); font-size: 0.95rem; line-height: 1.7;
}

/* ============ PARTNERSHIP CARDS ============ */
.partnership-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem;
}
.partnership-card {
  background: var(--white); padding: 3rem;
  border: 2px solid var(--light-gray); transition: all 0.3s;
  display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start;
}
.partnership-card:hover {
  border-color: var(--red); transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10,31,68,0.08);
}
.partnership-card .left {
  border-right: 1px solid var(--light-gray); padding-right: 2rem;
}
.partnership-card .number {
  font-size: 3rem; font-weight: 700; color: var(--red); letter-spacing: -2px;
}
.partnership-card .label {
  font-size: 0.75rem; color: var(--red); font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin: 0.5rem 0 1rem;
}
.partnership-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.partnership-card .for-whom {
  color: var(--navy); font-weight: 600; font-size: 0.95rem;
  margin-bottom: 1rem;
}
.partnership-card .right p {
  color: #1f2937; line-height: 1.6; margin-bottom: 1rem;
}
.partnership-card .right h4 {
  color: var(--navy); font-size: 0.95rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 1.5rem; margin-bottom: 0.5rem;
}
.partnership-card .benefit-list { list-style: none; }
.partnership-card .benefit-list li {
  padding: 0.4rem 0 0.4rem 1.5rem; position: relative; font-size: 0.95rem;
}
.partnership-card .benefit-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700;
}

@media (max-width: 800px) {
  .partnership-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem; }
  .partnership-card .left { border-right: none; border-bottom: 1px solid var(--light-gray); padding-right: 0; padding-bottom: 1.5rem; }
}

/* ============ CONTACT FORM ============ */
.contact-form-section { background: var(--white); padding: 5rem 0; }
.contact-grid {
  display: grid; grid-template-columns: 3fr 2fr; gap: 4rem;
  max-width: 1100px; margin: 0 auto;
}
.contact-form { display: grid; gap: 1.25rem; }
.contact-form label {
  display: block; color: var(--navy); font-weight: 600;
  font-size: 0.85rem; margin-bottom: 0.4rem; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 0.85rem; font-size: 1rem;
  border: 1px solid var(--light-gray); background: var(--white);
  font-family: inherit; color: var(--navy);
  transition: border 0.2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--red);
}
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form button { margin-top: 1rem; padding: 1rem 2rem; cursor: pointer; }
.checkbox-row {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.85rem; color: var(--gray);
}
.checkbox-row input { width: auto; }

.contact-sidebar h3 {
  color: var(--navy); font-size: 1rem; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 1rem;
}
.contact-sidebar p {
  color: var(--gray); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.6;
}

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============ PROVIDER PAGE — Narrative blocks ============ */
.narrative-section { padding: 4rem 0; background: var(--white); }
.narrative-section:nth-of-type(even) { background: var(--off-white); }
.narrative-section .container { max-width: 800px; }
.narrative-section h2 { margin-bottom: 1rem; }
.narrative-section p {
  font-size: 1.1rem; line-height: 1.7; color: #1f2937; margin-bottom: 1.25rem;
}
.narrative-section .lead {
  font-size: 1.2rem; color: var(--navy); font-weight: 600;
}

/* ============ PAGE CTA ============ */
.page-cta {
  background: var(--navy); color: var(--white);
  padding: 5rem 0; text-align: center;
}
.page-cta h2 { color: var(--white); margin-bottom: 1rem; }
.page-cta p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }

/* ============ WHAT OFFICE-IN DOES (3 categories + activities) ============ */
.what-does {
  background: var(--white);
  padding: 5rem 0;
}
.does-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.does-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
}
.does-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10,31,68,0.08);
}
.does-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.does-card h3 {
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.does-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.active-operations {
  margin-top: 4rem;
  padding: 2.5rem 3rem;
  background: var(--off-white);
  border-left: 4px solid var(--red);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.active-operations .tag {
  margin-bottom: 1rem;
  display: block;
}
.active-operations p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--navy);
}
.active-operations p strong {
  color: var(--red);
}

@media (max-width: 900px) {
  .does-grid { grid-template-columns: 1fr; }
  .active-operations { padding: 1.5rem; }
}

/* ============ COMPARISON SECTION (Before You Open a Branch) ============ */
.comparison-section {
  background: var(--off-white);
  padding: 6rem 0;
}
.comparison-intro {
  text-align: center;
  max-width: 800px;
  margin: 1.5rem auto 0;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.6;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.comparison-col {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 2px solid var(--light-gray);
  transition: all 0.3s;
}
.comparison-col.traditional {
  border-color: var(--light-gray);
}
.comparison-col.office-in {
  border-color: var(--red);
  position: relative;
}
.comparison-col.office-in::before {
  content: 'SMART CHOICE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  padding: 4px 16px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 700;
}
.comparison-label {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.comparison-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.comparison-divider {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin-bottom: 1.5rem;
}
.comparison-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comparison-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--light-gray);
  gap: 1rem;
}
.comparison-list li:last-child {
  border-bottom: none;
}
.cost-label {
  color: var(--gray);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.cost-value {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: right;
}
.cost-value.cost-good {
  color: #16a34a;
}
.cost-value.cost-bad {
  color: var(--red);
}
.comparison-callout {
  background: var(--white);
  border-left: 4px solid var(--red);
  padding: 2rem 2.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
}
.comparison-callout p {
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.6;
  font-style: italic;
}
.comparison-callout p strong {
  font-style: normal;
  color: var(--red);
}

@media (max-width: 800px) {
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-list li { flex-direction: column; gap: 0.25rem; }
  .cost-value { text-align: left; }
}

/* ============ PAIN POINTS (Problems Office-In Solves) ============ */
.pain-points {
  background: var(--white);
  padding: 6rem 0;
}
.pain-intro {
  text-align: center;
  max-width: 800px;
  margin: 1.5rem auto 0;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.6;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.pain-card {
  background: var(--off-white);
  padding: 2rem 1.75rem;
  border-left: 4px solid var(--red);
  transition: all 0.3s;
  position: relative;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10,31,68,0.08);
  background: var(--white);
  border-left-color: var(--red);
}
.pain-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}
.pain-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
  line-height: 1.3;
}
.pain-card p {
  color: #1f2937;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Special stat card (the 30% card) */
.pain-card.stat-card {
  background: var(--navy);
  border-left: 4px solid var(--red-bright);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.pain-card.stat-card:hover {
  background: var(--navy);
  transform: translateY(-4px);
}
.pain-stat {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--red-bright);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pain-stat-label {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.pain-card.stat-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

.pain-callout {
  margin-top: 3.5rem;
  padding: 2.5rem 3rem;
  background: var(--off-white);
  border-left: 4px solid var(--red);
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.pain-callout .tag {
  margin-bottom: 1rem;
  display: block;
}
.pain-callout p {
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.6;
}
.pain-callout p strong {
  color: var(--red);
}

@media (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pain-grid { grid-template-columns: 1fr; }
  .pain-callout { padding: 1.5rem; }
}

/* ============ HERO EMPHASIS LINE (Red highlight) ============ */
.hero-emphasis {
  display: inline-block;
  color: var(--red-bright);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  margin: 0 0 1.75rem 0;
  border: 2px solid var(--red-bright);
  background: rgba(239, 68, 68, 0.08);
  border-radius: 2px;
}

@media (max-width: 700px) {
  .hero-emphasis {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.25rem;
  }
}

/* ============ FLOATING CONTACT BUTTON (Right side, sticky) ============ */
.floating-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  background: #f97316;  /* orange */
  color: var(--white);
  padding: 0.9rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
  transition: all 0.25s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
}
.floating-contact:hover {
  background: #ea580c;  /* darker orange on hover */
  padding-right: 2rem;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5);
  color: var(--white);
}
.floating-contact .fc-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
  font-size: 1.1rem;
}
.floating-contact:hover .fc-arrow {
  transform: translateX(4px);
}

@media (max-width: 700px) {
  .floating-contact {
    bottom: 1rem;
    top: auto;
    right: 1rem;
    transform: none;
    padding: 0.75rem 1.2rem;
    font-size: 0.8rem;
    border-radius: 6px;
  }
  .floating-contact:hover {
    transform: none;
    padding-right: 1.5rem;
  }
}

/* ============ FLOATING WHATSAPP BUTTON (Right bottom corner) ============ */
.floating-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25D366;  /* WhatsApp green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
  text-decoration: none;
}
.floating-whatsapp:hover {
  background: #1da851;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}
.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* Tooltip on hover */
.floating-whatsapp::before {
  content: 'WhatsApp Us';
  position: absolute;
  right: 75px;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.25s ease;
  pointer-events: none;
}
.floating-whatsapp:hover::before {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 700px) {
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    right: 1rem;
    bottom: 5rem;  /* Above Contact Us mobile button */
  }
  .floating-whatsapp svg { width: 26px; height: 26px; }
  .floating-whatsapp::before { display: none; }
}

/* ============ PACKAGE PRICE (price range display) ============ */
.package-price {
  margin: 1.5rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  text-align: center;
}
.price-range {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 0.25rem;
}
.price-period {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.price-note {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
}

.package-card.premium .price-range {
  color: var(--red);
}

/* Additional services price */
.add-price {
  margin: 1rem 0;
  padding: 0.75rem 0;
  border-top: 1px solid var(--light-gray);
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}
.add-price strong {
  color: var(--red);
  font-weight: 700;
}

/* Pricing note explanation */
.pricing-note {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: var(--off-white);
  border-left: 4px solid var(--red);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-note p {
  color: #1f2937;
  font-size: 0.95rem;
  line-height: 1.7;
}
.pricing-note p strong {
  color: var(--navy);
  font-weight: 700;
}

/* Teaser card price */
.teaser-price {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--light-gray);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.teaser-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0;
}
.teaser-card.premium .teaser-price {
  color: var(--red);
}

/* ============ HERO REAL VIDEO ============ */
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
}

/* Mosaic now only shown as fallback BEHIND the video (in case video fails) */
.mosaic-fallback {
  z-index: 0;
}

/* When video is present, slightly stronger overlay for text readability */
.hero-mosaic .hero-overlay {
  background: 
    linear-gradient(135deg, rgba(10,31,68,0.65), rgba(10,31,68,0.55) 50%, rgba(10,31,68,0.75)),
    radial-gradient(ellipse at center, rgba(10,31,68,0.3) 0%, rgba(10,31,68,0.6) 100%);
  z-index: 2;
}

/* ============================================================
   APPLE-STYLE PREMIUM ENHANCEMENTS
   Cinematic, smooth, glass morphism, scroll-triggered animations
   ============================================================ */

/* ============ Better default typography (Apple-style) ============ */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 
               'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-feature-settings: 'kern' 1, 'liga' 1;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.022em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.04em;
  font-weight: 700;
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

/* ============ Glass morphism navigation ============ */
.main-nav {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.secondary-nav {
  background: rgba(10, 31, 68, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

/* ============ Smoother section transitions ============ */
section {
  padding: 7rem 0;
}

/* ============ Hero — bigger, more cinematic ============ */
.hero-mosaic {
  min-height: 100vh;
  padding: 6rem 0 4rem;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-secondary {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  opacity: 0.95;
}

/* ============ Scroll-triggered fade-up animation ============ */
/* Only hide elements when JS is loaded (avoids broken display if JS fails) */
.js-loaded .fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-loaded .fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.2s; }
.fade-in-up.delay-3 { transition-delay: 0.3s; }
.fade-in-up.delay-4 { transition-delay: 0.4s; }

/* Stagger children animation - only when JS loaded */
.js-loaded .stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-loaded .stagger-children.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.0s; }
.js-loaded .stagger-children.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.js-loaded .stagger-children.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.js-loaded .stagger-children.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.js-loaded .stagger-children.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.js-loaded .stagger-children.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* ============ Apple-style hover for cards ============ */
.pain-card, .why-card, .does-card, .add-card, .package-card, 
.teaser-card, .region-card, .comparison-col, .partnership-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.pain-card:hover, .why-card:hover, .does-card:hover, .add-card:hover,
.teaser-card:hover, .region-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(10, 31, 68, 0.18);
}

.package-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 60px -15px rgba(10, 31, 68, 0.2);
}

/* ============ Smoother buttons (Apple-style) ============ */
.btn {
  border-radius: 980px;  /* Apple's signature pill shape */
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -8px rgba(185, 28, 28, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.btn-secondary {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ============ Number counter animation ============ */
.stat-num {
  font-feature-settings: 'tnum' 1; /* tabular nums for smooth counting */
}

/* ============ Premium gradient backgrounds ============ */
.position-statement {
  background: linear-gradient(135deg, #f9f9f7 0%, #ffffff 50%, #f9f9f7 100%);
  position: relative;
  overflow: hidden;
}

.position-statement::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.04) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* ============ Stats — gradient backdrop ============ */
.stats {
  background: linear-gradient(135deg, #0a1f44 0%, #1a3a6b 50%, #0a1f44 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.stat-num {
  font-size: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* ============ Pain Points — Apple-style refinement ============ */
.pain-card {
  background: rgba(249, 249, 247, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-left: 4px solid var(--red);
  border-radius: 16px;
  overflow: hidden;
}

.pain-card.stat-card {
  background: linear-gradient(135deg, #0a1f44 0%, #1a3a6b 100%);
  border-radius: 16px;
  border-left-color: var(--red-bright);
}

.pain-stat {
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

/* ============ Cards — softer borders, rounder ============ */
.why-card, .does-card, .add-card, .teaser-card, 
.region-card, .package-card, .partnership-card, .comparison-col {
  border-radius: 16px;
}

.hq-card {
  border-radius: 16px;
  overflow: hidden;
}

/* ============ Form — Apple-style inputs ============ */
.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 12px;
  background: rgba(249, 249, 247, 0.6);
  border: 1px solid rgba(229, 231, 235, 0.7);
  padding: 1rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.08);
  outline: none;
}

/* ============ Floating Contact Us — more refined ============ */
.floating-contact {
  border-radius: 10px 0 0 10px;
  padding: 1rem 1.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-contact:hover {
  padding-right: 2.5rem;
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.5);
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

/* ============ Smoother WhatsApp button ============ */
.floating-whatsapp {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-whatsapp:hover {
  transform: scale(1.12) rotate(-3deg);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

/* ============ Page hero refinement ============ */
.page-hero {
  background: linear-gradient(135deg, #0a1f44 0%, #1a3a6b 50%, #0a1f44 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  margin-top: 1rem;
}

/* ============ Smoother section reveals ============ */
.what-does,
.pain-points,
.comparison-section,
.package-teaser,
.why-block,
.what-is,
.questions,
.tagline-band,
.packages,
.add-services,
.how-we-work,
.position-statement,
.headquarters,
.work-as,
.narrative-section,
.contact-form-section {
  position: relative;
  overflow: hidden;
}

/* ============ Mobile responsive (better Apple feel) ============ */
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-mosaic {
    min-height: 90vh;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .container {
    padding: 0 1.25rem;
  }
}

/* ============ Hide secondary nav blur on mobile (perf) ============ */
@media (max-width: 900px) {
  .main-nav {
    background: var(--white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* ============ Smooth scroll-snap for sections (optional Apple feel) ============ */
html {
  scroll-padding-top: 120px;
}

/* ============ Premium image rendering ============ */
img, video {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}


/* ============================================================
   BUILT FOR — Apple Stage Style Section
   Big number reveal + 3 customer profile cards
   ============================================================ */

.built-for {
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f7 100%);
  padding: 8rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.built-for::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(185, 28, 28, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.built-for .container {
  position: relative;
  z-index: 2;
}

/* The stage area - where the big "3" lives */
.built-for-stage {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.built-for-stage .tag {
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
}

/* The massive "3" - Apple style */
.built-for-number {
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 700;
  line-height: 0.9;
  background: linear-gradient(135deg, #b91c1c 0%, #ef4444 50%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.08em;
  margin: 0;
  margin-bottom: 0.5rem;
  display: inline-block;
  position: relative;
  animation: numberPulse 4s ease-in-out infinite;
}

@keyframes numberPulse {
  0%, 100% { 
    transform: scale(1); 
    filter: drop-shadow(0 0 30px rgba(185, 28, 28, 0.2));
  }
  50% { 
    transform: scale(1.02); 
    filter: drop-shadow(0 0 50px rgba(185, 28, 28, 0.35));
  }
}

.built-for-stage h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1.5rem;
  letter-spacing: -0.03em;
}

.built-for-intro {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* 3 cards grid */
.built-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 1rem;
}

.built-for-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(229, 231, 235, 0.7);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.built-for-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b91c1c, #ef4444, #f97316);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.built-for-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -15px rgba(10, 31, 68, 0.2);
  border-color: rgba(185, 28, 28, 0.2);
}

.built-for-card:hover::before {
  transform: scaleX(1);
}

.built-for-card-number {
  font-size: 1rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.built-for-card-tag {
  display: inline-block;
  background: rgba(185, 28, 28, 0.08);
  color: var(--red);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}

.built-for-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.built-for-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
}

/* Bottom CTA */
.built-for-cta {
  margin-top: 5rem;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #0a1f44 0%, #1a3a6b 100%);
  border-radius: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.built-for-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.built-for-cta p {
  position: relative;
  z-index: 2;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.built-for-cta .btn {
  position: relative;
  z-index: 2;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .built-for-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .built-for {
    padding: 5rem 0;
  }
  .built-for-stage {
    margin-bottom: 3rem;
  }
}

@media (max-width: 600px) {
  .built-for-card {
    padding: 2rem 1.5rem;
  }
  .built-for-cta {
    padding: 2rem 1.25rem;
    margin: 3rem 0 0;
  }
}

