/* =========================================================
   SOLUTION TICKET — Main Stylesheet
   Design: Trust & Authority | Barlow + EB Garamond
   Colors: Navy #0E1C3C | Blue #2E71AD | Orange #F97316
   ========================================================= */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Barlow:wght@300;400;500;600;700&display=swap');

/* === DESIGN TOKENS === */
:root {
  --primary:       #2E71AD;
  --primary-dark:  #1D5A8E;
  --primary-light: #4A8FCC;
  --navy:          #0E1C3C;
  --navy-mid:      #152847;
  --navy-light:    #1e3a5f;
  --orange:        #F97316;
  --orange-dark:   #E86A0F;
  --bg:            #F8FAFC;
  --bg-alt:        #EEF2F7;
  --text:          #1E293B;
  --text-muted:    #64748B;
  --text-light:    #94A3B8;
  --white:         #FFFFFF;
  --border:        #CBD5E1;
  --border-light:  #E2E8F0;
  --success:       #22C55E;
  --shadow-sm:     0 1px 4px rgba(14,28,60,.07);
  --shadow-md:     0 4px 18px rgba(14,28,60,.12);
  --shadow-lg:     0 10px 40px rgba(14,28,60,.18);
  --shadow-xl:     0 20px 60px rgba(14,28,60,.22);
  --radius-xs:     4px;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-full:   9999px;
  --max-w:         1220px;
  --nav-h:         82px;
  --transition:    0.22s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'EB Garamond', Georgia, serif;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1.025rem; color: var(--text-muted); line-height: 1.72; }

.lead { font-size: 1.15rem; font-weight: 400; color: var(--text); }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
}
.section-label-light { color: var(--primary-light); }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.75rem; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); }
.section-blue { background: var(--primary); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* section heading block */
.section-header { max-width: 680px; margin-bottom: 3.5rem; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,113,173,.38);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,.38);
}

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

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

.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.1rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.875rem; }
.btn-icon { padding: 0.9rem; border-radius: var(--radius-sm); }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(14,28,60,.28);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img {
  height: 46px;
  width: auto;
}
.nav-logo-text {
  font-family: 'EB Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-xs);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-link.active { color: var(--white); }

/* dropdown */
.nav-item { position: relative; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.18s ease;
  z-index: 100;
}
.nav-dropdown a {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-xs);
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown a:hover { background: var(--bg-alt); color: var(--primary); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.nav-phone svg { color: var(--orange); width: 18px; height: 18px; }
.nav-phone:hover { color: var(--orange); }

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.22s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy);
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  z-index: 999;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-xs);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color var(--transition), background var(--transition);
}
.nav-mobile a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-mobile-cta { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }

/* === PAGE HERO === */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--primary) 100%);
  overflow: hidden;
  padding-top: var(--nav-h);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; padding: 4rem 0 3.5rem; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.1rem; max-width: 580px; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb svg { width: 14px; height: 14px; }

/* === HOME HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14,28,60,.96) 0%, rgba(21,40,71,.88) 50%, rgba(46,113,173,.75) 100%),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 7rem;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(249,115,22,.18);
  border: 1px solid rgba(249,115,22,.35);
  color: #FDB47A;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  color: var(--white);
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero h1 .accent { color: var(--orange); }
.hero .lead {
  color: rgba(255,255,255,.82);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.72);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-trust-item svg { color: var(--success); width: 16px; height: 16px; flex-shrink: 0; }

/* === STATS BAR === */
.stats-bar {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
  margin-top: -3.5rem;
}
.stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--border-light);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'EB Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-number span { color: var(--orange); }
.stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* === SERVICE CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(46,113,173,.12), rgba(46,113,173,.06));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(46,113,173,.22), rgba(46,113,173,.12));
}
.service-icon svg { width: 26px; height: 26px; color: var(--primary); }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; }
.service-card .link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition);
}
.service-card .link-more svg { width: 16px; height: 16px; }
.service-card:hover .link-more { gap: 0.6rem; }

/* services page list */
.services-list { display: flex; flex-direction: column; gap: 1.25rem; }
.service-row {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-row:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.service-row .service-icon { flex-shrink: 0; margin-bottom: 0; }
.service-row-body h3 { margin-bottom: 0.5rem; }
.service-row-body p { font-size: 0.95rem; }
.service-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  color: var(--text-muted);
}
.tag-blue { background: rgba(46,113,173,.1); color: var(--primary); }
.tag-orange { background: rgba(249,115,22,.1); color: var(--orange); }
.tag-red { background: rgba(239,68,68,.1); color: #EF4444; }

/* === PROCESS STEPS === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-family: 'EB Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px rgba(46,113,173,.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover .step-number {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(46,113,173,.45);
}
.process-step h3 { margin-bottom: 0.75rem; }
.process-step p { font-size: 0.95rem; max-width: 240px; margin: 0 auto; }

/* === WHY US / TRUST === */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.trust-item {
  display: flex;
  gap: 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: background var(--transition);
}
.trust-item:hover { background: rgba(255,255,255,.1); }
.trust-item-icon {
  width: 46px; height: 46px;
  background: rgba(249,115,22,.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg { width: 22px; height: 22px; color: var(--orange); }
.trust-item h4 { color: var(--white); margin-bottom: 0.4rem; }
.trust-item p { color: rgba(255,255,255,.65); font-size: 0.9rem; }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
}
.testimonial-stars svg {
  width: 18px; height: 18px;
  color: #F59E0B;
  fill: #F59E0B;
}
.testimonial-text {
  font-size: 0.97rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.testimonial-meta { font-size: 0.82rem; color: var(--text-light); }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
  border-color: var(--primary-light);
  box-shadow: 0 2px 12px rgba(46,113,173,.1);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: background var(--transition);
  user-select: none;
}
.faq-question:hover { background: var(--bg); }
.faq-question h4 { font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); flex: 1; }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--bg-alt);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--primary); transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--primary); }
.faq-item.open .faq-icon svg { color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.72;
}
.faq-item.open .faq-answer { max-height: 600px; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--primary) 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.78); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* === CONTACT FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 46px; height: 46px;
  background: rgba(46,113,173,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--primary); }
.contact-info-item h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.3rem; font-family: 'Barlow', sans-serif; }
.contact-info-item p, .contact-info-item a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}
.contact-info-item a:hover { color: var(--primary); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.form-required { color: var(--orange); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46,113,173,.12);
  background: var(--white);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; margin-top: 0.5rem; }

/* === MAP === */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* === BLOG GRID === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-img svg { width: 48px; height: 48px; color: rgba(255,255,255,.3); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.85rem;
}
.blog-card-meta svg { width: 14px; height: 14px; }
.blog-card h3 { margin-bottom: 0.7rem; font-size: 1.1rem; }
.blog-card p { font-size: 0.92rem; flex: 1; }
.blog-card .link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition);
}
.blog-card .link-more svg { width: 15px; height: 15px; }
.blog-card:hover .link-more { gap: 0.6rem; }

/* === ABOUT PAGE === */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-img-main svg { width: 80px; height: 80px; color: rgba(255,255,255,.25); }
.about-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 160px;
}
.about-badge-float .num {
  font-family: 'EB Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-badge-float .num span { color: var(--orange); }
.about-badge-float .lbl { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); margin-top: 0.3rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; }
.about-values { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-value {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
}
.about-value svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'EB Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
}
.team-card h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.team-role { font-size: 0.88rem; color: var(--primary); font-weight: 600; margin-bottom: 0.85rem; }
.team-card p { font-size: 0.9rem; }

/* === FOOTER === */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: 0.92rem; margin-top: 1rem; line-height: 1.7; }
.footer-brand .footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-social a svg { width: 18px; height: 18px; }

.footer-col h5 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.92rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}
.footer-contact li svg { width: 17px; height: 17px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact li span { font-size: 0.9rem; color: rgba(255,255,255,.68); line-height: 1.55; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* === UTILITY === */
.divider {
  height: 4px;
  width: 52px;
  background: linear-gradient(90deg, var(--orange), var(--primary));
  border-radius: var(--radius-full);
  margin: 1rem 0 1.5rem;
}
.divider-center { margin: 1rem auto 1.5rem; }

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.alert-info { background: rgba(46,113,173,.1); color: var(--primary-dark); border-left: 3px solid var(--primary); }
.alert-success { background: rgba(34,197,94,.1); color: #166534; border-left: 3px solid var(--success); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  :root { --nav-h: 72px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-light); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border-light); }
  .stat-item:nth-child(even) { border-right: none; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 1.5rem; }
  .about-badge-float { right: 0.5rem; bottom: -1rem; }
}

@media (max-width: 480px) {
  :root { --nav-h: 66px; }
  .container { padding: 0 1.25rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2rem; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .cta-actions { flex-direction: column; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; }
}
