/* ==========================================================================
   513 Web Design — Global Stylesheet
   Palette: Navy (trust/established) + Warm Amber (accent/CTA)
   ========================================================================== */

:root {
  --navy-900: #0a1628;
  --navy-800: #0f2240;
  --navy-700: #15315c;
  --navy-600: #1d4178;
  --navy-100: #e8edf5;
  --amber-500: #f0a13c;
  --amber-600: #d9871f;
  --amber-100: #fdf1e0;
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f3;
  --gray-300: #c9cdd5;
  --gray-500: #6b7280;
  --gray-700: #3d4451;
  --gray-900: #1a1d24;
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 6px 20px rgba(10, 22, 40, 0.10);
  --shadow-lg: 0 16px 40px rgba(10, 22, 40, 0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-width: 1180px;
  --font-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Smooth crossfade between pages on nav clicks (Chrome/Edge — safely ignored elsewhere) */
@view-transition {
  navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.35s;
  animation-timing-function: ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   ANIMATIONS
   The .js class is added by an inline script in <head> the instant the
   page starts loading. .reveal is fully visible by default and ONLY
   hides itself once .js confirms JS is actually running, so content can
   never get stuck invisible if JS is slow, blocked, or errors out.
   ========================================================================== */

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-content .hero-eyebrow { animation-delay: 0.05s; }
.hero-content .badge-row    { animation-delay: 0.11s; }
.hero-content h1            { animation-delay: 0.18s; }
.hero-content p.lead        { animation-delay: 0.34s; }
.hero-content .hero-actions { animation-delay: 0.48s; }
.hero-content .hero-stats   { animation-delay: 0.6s; }

.hero-visual {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.3s;
}

.page-header .container > * {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-header .breadcrumb { animation-delay: 0.04s; }
.page-header h1           { animation-delay: 0.12s; }
.page-header p            { animation-delay: 0.24s; }

@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-links.open {
  animation: navSlideDown 0.2s ease both;
}

/* Scroll-reveal — safe-by-default */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.js .reveal.in-view { opacity: 1; transform: none; }

.reveal-left { opacity: 1; transform: none; }
.js .reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.js .reveal-left.in-view { opacity: 1; transform: none; }

.reveal-right { opacity: 1; transform: none; }
.js .reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.js .reveal-right.in-view { opacity: 1; transform: none; }

.reveal-d1.in-view { transition-delay: 0.06s; }
.reveal-d2.in-view { transition-delay: 0.12s; }
.reveal-d3.in-view { transition-delay: 0.18s; }
.reveal-d4.in-view { transition-delay: 0.24s; }

/* Mobile nav hamburger — animated into an X */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 0 auto;
  display: block;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.case-media {
  overflow: hidden;
}
.case-media img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-media:hover img {
  transform: scale(1.04);
}

.brand img {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand:hover img {
  transform: rotate(-4deg) scale(1.06);
}

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { color: var(--gray-700); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-600);
  background: var(--amber-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head p { margin-top: 14px; font-size: 1.08rem; }

.bg-light { background: var(--gray-50); }
.bg-navy { background: var(--navy-900); color: var(--gray-100); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: var(--navy-100); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--amber-600); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: var(--navy-100);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.btn-outline:active { transform: translateY(-1px); }
.btn-dark {
  background: var(--navy-900);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-700); transform: translateY(-3px); }
.btn-dark:active { transform: translateY(-1px); }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}
.brand img { height: 36px; width: auto; border-radius: 6px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}
.nav-links a:not(.nav-cta) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-100);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber-500);
  transition: width 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
  width: 100%;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--amber-500); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-500);
  color: var(--navy-900) !important;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 4px;
  line-height: 1.2;
}
.nav-cta:hover { background: var(--amber-600); }

@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 26px;
    gap: 16px;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-cta { width: 100%; text-align: center; margin-right: 0; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(240,161,60,0.18) 0%, transparent 70%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  color: var(--amber-500);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p.lead {
  font-size: 1.15rem;
  color: var(--navy-100);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber-500);
}
.hero-stat .label { font-size: 0.85rem; color: var(--navy-100); }

.hero-visual {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-visual .browser-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}
.hero-visual .browser-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.hero-visual .mock-line { height: 12px; border-radius: 4px; background: rgba(255,255,255,0.12); margin-bottom: 10px; }
.hero-visual .mock-line.short { width: 60%; }
.hero-visual .mock-line.amber { background: var(--amber-500); width: 40%; height: 14px; margin-top: 18px; }
.hero-visual .mock-block { height: 90px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.08); margin: 16px 0; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}

@media (max-width: 640px) {
  .hero {
    padding: 40px 0 48px;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .hero-inner { gap: 28px; }
  .hero-visual {
    display: none;
  }
  .hero h1 { font-size: 2rem; margin-bottom: 14px; }
  .hero-eyebrow { margin-bottom: 10px; }
  .hero p.lead { margin-bottom: 22px; font-size: 1rem; }
  .hero-actions { gap: 12px; }
  .hero-stats { margin-top: 28px; gap: 20px; }
}

/* ---------- Page header (non-home pages) ---------- */
.page-header {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: 64px 0 56px;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.page-header p { color: var(--navy-100); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--amber-500);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}
.breadcrumb a { color: var(--navy-100); }
.breadcrumb a:hover { color: var(--white); }

/* ---------- Cards / Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 1100px) {
  .grid-3[style*="repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 860px) {
  .grid-3, .grid-2, .grid-3[style*="repeat(4"] { grid-template-columns: 1fr !important; }
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; line-height: 1.55; width: 100%; }

.icon-badge {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--amber-100);
  color: var(--amber-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.step-card { position: relative; padding-left: 0; align-items: center; text-align: center; }
.step-card p { max-width: 88%; margin-left: auto; margin-right: auto; }
.step-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber-500);
  opacity: 0.9;
  margin-bottom: 14px;
  display: block;
}
.step-card h3 { margin-bottom: 14px; }

/* ---------- Pricing ---------- */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.featured {
  border: 2px solid var(--amber-500);
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber-500);
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-card h3 { margin-bottom: 6px; }
.price {
  font-family: var(--font-head);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 14px 0 4px;
}
.price span { font-size: 0.95rem; color: var(--gray-500); font-weight: 500; }
.pricing-card .desc { font-size: 0.92rem; margin-bottom: 22px; }
.pricing-card ul { margin: 0 0 26px; flex-grow: 1; }
.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--gray-700);
  margin-bottom: 11px;
}
.pricing-card li .check { color: var(--amber-600); font-weight: 700; flex-shrink: 0; }

/* ---------- Comparison table ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
}
.compare-table th {
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
}
.compare-table td:first-child, .compare-table th:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy-900);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--amber-600); font-weight: 700; }
.compare-table .no { color: var(--gray-300); }
.table-scroll { overflow-x: auto; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  padding: 22px 0;
}
.faq-item summary {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--amber-600);
  transition: transform 0.2s ease;
  margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; font-size: 0.96rem; }

/* ---------- Portfolio ---------- */
.portfolio-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-100);
}
.portfolio-case:last-child { border-bottom: none; }
.portfolio-case.reverse .case-media { order: 2; }
.case-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.case-media .browser-chrome {
  background: var(--gray-100);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.case-media .browser-chrome span { width: 9px; height: 9px; border-radius: 50%; background: var(--gray-300); }
.case-placeholder {
  background: linear-gradient(135deg, var(--navy-100), var(--gray-100));
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--navy-700);
  text-align: center;
  padding: 20px;
}
.case-placeholder .ph-icon { font-size: 2.4rem; }
.case-placeholder small { color: var(--gray-500); font-size: 0.8rem; max-width: 280px; }
.case-tag {
  display: inline-block;
  background: var(--amber-100);
  color: var(--amber-600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.case-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
.case-content p { margin-bottom: 18px; }
.case-features { margin-bottom: 22px; }
.case-features li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.case-features li .check { color: var(--amber-600); font-weight: 700; }

@media (max-width: 860px) {
  .portfolio-case, .portfolio-case.reverse { grid-template-columns: 1fr; }
  .portfolio-case.reverse .case-media { order: 0; }
}

/* ---------- Process timeline (Services / About) ---------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; }
.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.timeline-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--amber-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
}

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.about-photo {
  background: var(--navy-100);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  text-align: center;
  padding: 30px;
  font-size: 0.95rem;
  border: 1px solid var(--gray-100);
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}

.value-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 16px; }
@media (max-width: 600px) { .value-list { grid-template-columns: 1fr; } }

/* ---------- Form ---------- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 7px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--gray-50);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--amber-500);
  background: var(--white);
}
.field textarea { min-height: 130px; resize: vertical; }

.contact-info-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 18px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-item .icon-badge { background: rgba(240,161,60,0.15); color: var(--amber-500); flex-shrink: 0; margin-bottom: 0; }
.contact-info-item .label { font-size: 0.8rem; color: var(--navy-100); }
.contact-info-item .value { font-weight: 600; color: var(--white); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  color: var(--white);
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: var(--navy-100); max-width: 520px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: var(--navy-100); padding: 60px 0 28px; }
.site-footer p { color: var(--navy-100); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 32px; border-radius: 5px; }
.footer-brand span { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1.1rem; }
.site-footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.site-footer ul li { margin-bottom: 10px; font-size: 0.92rem; }
.site-footer a:hover { color: var(--amber-500); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-500);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Misc utility ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.badge-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.mini-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-700);
  background: var(--navy-100);
  padding: 6px 14px;
  border-radius: 999px;
}
