/* ============================================
   SCALE UP FA - MAIN STYLESHEET
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap");

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --navy: #0b2545;
  --navy-light: #163762;
  --blue: #1d6fa4;
  --blue-light: #2d88c3;
  --gold: #c9943a;
  --gold-light: #e8b84b;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;

  --section-py: 80px;
  --container-max: 1200px;
  --container-px: 24px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);
  --shadow-card: 0 2px 12px rgba(11, 37, 69, 0.08);

  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}
h4 {
  font-size: 1.05rem;
}

p {
  line-height: 1.75;
  color: var(--gray-600);
}

.text-gold {
  color: var(--gold);
}
.text-blue {
  color: var(--blue);
}
.text-navy {
  color: var(--navy);
}
.text-white {
  color: var(--white) !important;
}
.text-muted {
  color: var(--gray-500);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

section {
  padding: var(--section-py) 0;
}

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

.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.text-center {
  text-align: center;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-slow);
}

.header.scrolled {
  background: rgba(11, 37, 69, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 5px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.logo-tagline {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.nav-link.active {
  color: var(--gold);
}

.nav-chevron {
  font-size: 0.65rem;
  transition: transform var(--transition);
  opacity: 0.7;
}

.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}

/* Mega dropdown */
.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  border: 1px solid var(--gray-200);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.nav-dropdown.mega {
  min-width: 700px;
  left: auto;
  right: -40px;
  transform: translateY(-8px);
  padding: 24px;
}

.nav-item:hover .nav-dropdown.mega {
  transform: translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
}

.mega-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  padding: 6px 10px 8px;
  display: block;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--gray-700);
  font-weight: 500;
  transition: all var(--transition);
}

.dropdown-link:hover {
  background: var(--off-white);
  color: var(--blue);
}

.dropdown-link-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* Nav CTA */
.nav-cta {
  margin-left: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  padding: 90px 24px 40px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  display: none;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
  display: flex;
}

.mobile-nav-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition);
}

.mobile-nav-link:hover {
  color: var(--gold);
}

.mobile-cat-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding: 20px 0 8px;
}

.mobile-service-link {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  padding: 10px 0 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--transition);
}

.mobile-service-link:hover {
  color: var(--white);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 148, 58, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 111, 164, 0.35);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 0.95rem;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.btn-arrow::after {
  content: "→";
  transition: transform var(--transition);
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================
   HERO - HOME PAGE
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--navy-light) 55%,
    #0e3060 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 72% 48%,
      rgba(29, 111, 164, 0.18) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse at 18% 80%,
      rgba(201, 148, 58, 0.07) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 148, 58, 0.12);
  border: 1px solid rgba(201, 148, 58, 0.3);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 span {
  color: var(--gold);
}

.hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-family: var(--font-serif);
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(29, 111, 164, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.25);
}
.breadcrumb .current {
  color: var(--gold);
  font-weight: 600;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 580px;
}

.page-hero-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 28px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    135deg,
    rgba(29, 111, 164, 0.1),
    rgba(11, 37, 69, 0.06)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* Service card - clickable */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: block;
  box-shadow: var(--shadow-card);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    135deg,
    rgba(29, 111, 164, 0.1),
    rgba(11, 37, 69, 0.06)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.service-card-arrow {
  color: var(--gray-400);
  font-size: 1rem;
  transition: all var(--transition);
}
.service-card:hover .service-card-arrow {
  transform: translate(2px, -2px);
  color: var(--blue);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  margin-bottom: 52px;
}
.section-header.text-center {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1rem;
  color: var(--gray-500);
}

/* ============================================
   FEATURES / WHY US
   ============================================ */
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(29, 111, 164, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--blue);
}

.feature-item h4 {
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 0.875rem;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.steps {
  display: flex;
  flex-direction: column;
}

.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 40px;
  position: relative;
}

.step-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 0;
  width: 1px;
  background: var(--gray-200);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 8px;
}
.step-content p {
  font-size: 0.9rem;
}

/* ============================================
   BENEFITS LIST
   ============================================ */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.benefit-item:last-child {
  border-bottom: none;
}

.benefit-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(29, 111, 164, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item p {
  font-size: 0.92rem;
  margin: 0;
}

/* ============================================
   WHO IT'S FOR TAGS
   ============================================ */
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
}
.audience-tag:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(29, 111, 164, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 111, 164, 0.1);
}
.form-control::placeholder {
  color: var(--gray-400);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}
select.form-control {
  cursor: pointer;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(29, 111, 164, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--blue);
}

.contact-item h4 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 0.92rem;
  color: var(--gray-800);
  font-weight: 500;
}
.contact-item a:hover {
  color: var(--blue);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-top: 16px;
  line-height: 1.75;
  max-width: 260px;
}

.footer-heading {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.footer-link:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.65;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.value-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  background: var(--white);
}
.value-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-card);
}

.value-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.value-card h4 {
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.875rem;
}

/* ============================================
   TAGS / BADGES
   ============================================ */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
}
.tag-blue {
  background: rgba(29, 111, 164, 0.1);
  color: var(--blue);
}
.tag-gold {
  background: rgba(201, 148, 58, 0.12);
  color: var(--gold);
}
.tag-navy {
  background: rgba(11, 37, 69, 0.08);
  color: var(--navy);
}
.tag-green {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

/* ============================================
   HIGHLIGHT BOX
   ============================================ */
.highlight-box {
  background: linear-gradient(
    135deg,
    rgba(29, 111, 164, 0.06),
    rgba(11, 37, 69, 0.04)
  );
  border: 1px solid rgba(29, 111, 164, 0.15);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}

.highlight-box h3 {
  margin-bottom: 10px;
}
.highlight-box p {
  font-size: 0.9rem;
  margin: 0;
}

/* Divider */
.divider {
  height: 1px;
  background: var(--gray-200);
}

/* Background variants */
.bg-off-white {
  background: var(--off-white);
}
.bg-navy {
  background: var(--navy);
}
.bg-gray {
  background: var(--gray-100);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-dropdown.mega {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 56px;
    --container-px: 20px;
  }

  .nav,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }
  .hero-stats {
    gap: 32px;
    margin-top: 48px;
  }
  .hero-actions {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-hero {
    padding: 130px 0 60px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .mega-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .btn-lg {
    width: 100%;
    justify-content: center;
  }
  .stat-value {
    font-size: 1.6rem;
  }
}

/* ============================================
   LUCIDE ICONS
   ============================================ */
svg.lucide {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  stroke-width: 1.75;
}

/* Context-specific sizes */
.card-icon svg.lucide {
  width: 26px;
  height: 26px;
}
.service-card-icon svg.lucide {
  width: 20px;
  height: 20px;
}
.dropdown-link-icon svg.lucide {
  width: 15px;
  height: 15px;
}
.page-hero-icon svg.lucide {
  width: 36px;
  height: 36px;
  stroke: rgba(255, 255, 255, 0.85);
}
.contact-icon svg.lucide {
  width: 20px;
  height: 20px;
}
.feature-icon svg.lucide {
  width: 20px;
  height: 20px;
}
.benefit-check svg.lucide {
  width: 11px;
  height: 11px;
  stroke-width: 2.5;
}
.footer-contact-icon svg.lucide {
  width: 15px;
  height: 15px;
  opacity: 0.7;
}
.value-icon svg.lucide {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
}
.audience-tag svg.lucide {
  width: 15px;
  height: 15px;
}
.inline-icon svg.lucide {
  width: 28px;
  height: 28px;
}

/* ============================================
   COMING SOON
   ============================================ */
.service-card.coming-soon {
  pointer-events: none;
  opacity: .72;
  cursor: default;
  position: relative;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(201,148,58,.12);
  border: 1px solid rgba(201,148,58,.35);
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 3px 9px;
  border-radius: 100px;
  margin-top: 12px;
}

/* Coming soon page */
.coming-soon-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.coming-soon-icon {
  width: 80px; height: 80px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(29,111,164,.1), rgba(11,37,69,.06));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}

.coming-soon-icon svg.lucide {
  width: 36px; height: 36px;
  stroke: var(--blue);
}
