/* ============================================================
   Coral Execs – Main Stylesheet
   Colors: #E63946 | #F4A261 | #E9C46A | #2A9D8F
   ============================================================ */

/* ========================
   1. CSS VARIABLES
   ======================== */
:root {
  --coral:      #E63946;
  --coral-dark: #C62A36;
  --orange:     #F4A261;
  --yellow:     #E9C46A;
  --teal:       #2A9D8F;
  --teal-dark:  #1E7268;
  --dark:       #1A1A2E;
  --dark-2:     #2D3748;
  --gray:       #4A5568;
  --gray-light: #718096;
  --border:     #E2E8F0;
  --bg-light:   #F7FAFC;
  --white:      #FFFFFF;

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', var(--font-primary);

  --container:  1200px;
  --pad-x:      1.5rem;
  --section-py: 5rem;

  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;
  --radius-full:9999px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.18);

  --transition: .3s ease;
  --transition-fast: .15s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
table { border-collapse: collapse; }

/* ========================
   3. SKIP LINK
   ======================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--coral);
  color: var(--white);
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 1rem; }

/* ========================
   4. TYPOGRAPHY
   ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.7;
}

.text-coral   { color: var(--coral); }
.text-teal    { color: var(--teal); }
.text-orange  { color: var(--orange); }
.text-yellow  { color: var(--yellow); }
.text-white   { color: var(--white); }
.text-gray    { color: var(--gray); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ========================
   5. LAYOUT
   ======================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section { padding: var(--section-py) 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 2rem; }
.grid-4 { display: grid; gap: 1.5rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-col { flex-direction: column; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* ========================
   6. SECTION LABELS
   ======================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(230,57,70,.1);
  color: var(--coral);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.section-label.teal {
  background: rgba(42,157,143,.12);
  color: var(--teal);
}
.section-label.orange {
  background: rgba(244,162,97,.15);
  color: #c97b30;
}

.section-header {
  margin-bottom: 3rem;
}
.section-header.centered {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================
   7. BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: all var(--transition);
  min-height: 44px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--coral);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-sm {
  padding: .6rem 1.4rem;
  font-size: .875rem;
}
.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

/* ========================
   8. HEADER & NAVIGATION
   ======================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.25rem 0;
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: .75rem 0;
}
.site-header.scrolled .nav-logo-text { color: var(--dark); }
.site-header.scrolled .nav-logo-dot  { color: var(--coral); }
.site-header.scrolled .nav-link      { color: var(--dark-2); }
.site-header.scrolled .nav-cta       { /* already has bg */ }

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--coral);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--white);
  font-size: .95rem;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -.02em;
  transition: color var(--transition);
}
.nav-logo-dot { color: var(--orange); }

/* Desktop Nav */
.nav-menu {
  display: none;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  font-size: .925rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  padding: .5rem .875rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.15);
}
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  background: var(--bg-light);
  color: var(--coral);
}
.nav-cta {
  margin-left: .5rem;
  padding: .6rem 1.4rem;
  font-size: .9rem;
  min-height: 44px;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  background: none;
  border: none;
  padding: .5rem;
}
.nav-toggle:hover { background: rgba(255,255,255,.15); }
.site-header.scrolled .nav-toggle:hover { background: var(--bg-light); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.site-header.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  padding: 5rem var(--pad-x) 2rem;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
}
.nav-mobile .nav-link:hover {
  color: var(--coral);
  background: transparent;
  padding-left: .5rem;
}
.nav-mobile .btn-primary { margin-top: 2rem; width: 100%; justify-content: center; }
.nav-mobile-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: rgba(255,255,255,.08);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.nav-mobile-close:hover { background: var(--coral); }

@media (min-width: 1024px) {
  .nav-menu   { display: flex; }
  .nav-toggle { display: none; }
}

/* ========================
   9. HERO SECTIONS
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(230,57,70,.95) 0%,
      rgba(26,26,46,.85) 50%,
      rgba(42,157,143,.9) 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 50%, rgba(244,162,97,.25) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(233,196,106,.2) 0%, transparent 50%);
}
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  background: var(--white);
}
.hero-shape-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-shape-2 { width: 300px; height: 300px; bottom: 50px; left: -80px; }
.hero-shape-3 { width: 200px; height: 200px; top: 30%; right: 20%; opacity: .05; }

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,.2);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.8); }
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -.03em;
}
.hero h1 .accent { color: var(--yellow); }

.hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-stat-item {}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: .25rem;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: 7rem 0 4rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--teal-dark) 100%);
  overflow: hidden;
  margin-top: 0;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(230,57,70,.2) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(42,157,143,.2) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero .lead { color: rgba(255,255,255,.75); margin-bottom: 0; }
.page-hero-shapes .hero-shape { opacity: .04; }

/* ========================
   10. BREADCRUMBS
   ======================== */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin-bottom: 1.25rem;
  font-size: .85rem;
}
.breadcrumb-item a {
  color: rgba(255,255,255,.6);
  transition: color var(--transition-fast);
}
.breadcrumb-item a:hover { color: var(--white); }
.breadcrumb-item.active { color: rgba(255,255,255,.9); font-weight: 600; }
.breadcrumb-sep {
  color: rgba(255,255,255,.35);
  margin: 0 .15rem;
}

/* ========================
   11. CARDS
   ======================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-body { padding: 2rem; }
.card-header { padding: 1.5rem 2rem 0; }

/* Icon Card */
.icon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.icon-card .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
}
.icon-card h3 { font-size: 1.15rem; margin-bottom: .75rem; }
.icon-card p  { font-size: .925rem; color: var(--gray); line-height: 1.65; }

.ic-coral  { background: rgba(230,57,70,.1);  }
.ic-teal   { background: rgba(42,157,143,.12); }
.ic-orange { background: rgba(244,162,97,.12); }
.ic-yellow { background: rgba(233,196,106,.15); }

/* Service Card */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,26,46,.6));
}
.service-card-body {
  padding: 1.75rem;
  flex: 1;
}
.service-card-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: .6rem;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.service-card p  { font-size: .9rem; color: var(--gray); }

/* ========================
   12. STATS STRIP
   ======================== */
.stats-strip {
  background: var(--dark);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* ========================
   13. HOME PAGE SECTIONS
   ======================== */

/* Why-us content — block by default, grid at 768px+ */
.why-us-content {
  display: block;
}
.why-us-content > * + * {
  margin-top: 2.5rem;
}

/* Services Overview */
.services-overview {
  background: var(--bg-light);
}

/* Why Us */
.why-us {
  background: var(--white);
}
.why-us-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--coral) 0%, var(--teal) 100%);
}
.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-us-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.why-us-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
}
.why-us-badge span {
  font-size: .8rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.checklist { margin: 1.5rem 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
  font-size: .95rem;
  color: var(--dark-2);
}
.checklist li .check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  margin-top: .1rem;
  font-weight: 900;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); }
.cta-section p  { color: rgba(255,255,255,.8); }

/* Contact Section */
.contact-section {
  background: var(--bg-light);
}
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; }
}
.contact-info {}
.contact-info h2 { margin-bottom: .75rem; }
.contact-info .lead { margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(230,57,70,.1);
  color: var(--coral);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-item-text strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-light); margin-bottom: .2rem; }
.contact-item-text span  { font-size: .95rem; color: var(--dark-2); }
.contact-item-text a     { color: var(--dark-2); transition: color var(--transition-fast); }
.contact-item-text a:hover { color: var(--coral); }

/* ========================
   14. FORMS
   ======================== */
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark-2);
  margin-bottom: .45rem;
}
.form-label .req { color: var(--coral); margin-left: .2rem; }

.form-control {
  width: 100%;
  padding: .875rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(230,57,70,.1);
}
.form-control::placeholder { color: #adb5bd; }
.form-control.error { border-color: var(--coral); background: rgba(230,57,70,.03); }
.form-error { font-size: .8rem; color: var(--coral); margin-top: .35rem; display: none; }
.form-error.visible { display: block; }

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .875rem center; background-size: 16px; padding-right: 2.5rem; cursor: pointer; }

.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 640px) { .form-row.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
  font-size: .9rem;
  color: var(--gray);
}
.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--border);
  border-radius: .25rem;
  cursor: pointer;
  accent-color: var(--coral);
  margin-top: .1rem;
}
.form-check a { color: var(--coral); text-decoration: underline; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; height: 0; overflow: hidden; }

/* File upload */
.file-upload-wrap {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: border-color var(--transition);
  cursor: pointer;
}
.file-upload-wrap:hover { border-color: var(--coral); }
.file-upload-wrap input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}
.file-upload-icon { font-size: 2rem; margin-bottom: .5rem; }
.file-upload-text { font-size: .9rem; color: var(--gray); }
.file-upload-text strong { color: var(--coral); }
.file-name { font-size: .85rem; color: var(--teal); margin-top: .5rem; display: none; }

/* Form Messages */
.form-message {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-weight: 500;
  display: none;
  margin-top: 1rem;
  align-items: flex-start;
  gap: .75rem;
}
.form-message.visible { display: flex; }
.form-message.success { background: rgba(42,157,143,.1); color: var(--teal-dark); border: 1px solid rgba(42,157,143,.2); }
.form-message.error   { background: rgba(230,57,70,.08); color: var(--coral-dark); border: 1px solid rgba(230,57,70,.15); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

/* ========================
   15. TESTIMONIALS
   ======================== */
.testimonials-section {
  background: var(--bg-light);
}

/* Testimonial Slider */
.testimonial-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 3rem;
}
.testimonial-track {
  display: flex;
  transition: transform .5s ease;
  will-change: transform;
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 .5rem;
}
@media (min-width: 768px) {
  .testimonial-slide { min-width: 50%; }
}
@media (min-width: 1024px) {
  .testimonial-slide { min-width: 33.333%; }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--coral);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card.teal  { border-top-color: var(--teal); }
.testimonial-card.orange { border-top-color: var(--orange); }
.testimonial-card.yellow { border-top-color: var(--yellow); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--yellow);
  font-size: 1.1rem;
}
.testimonial-quote {
  font-size: 1.1rem;
  color: #333;
  font-style: italic;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
}
.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: -8px;
  top: -12px;
  font-size: 3.5rem;
  color: var(--coral);
  opacity: .2;
  font-family: var(--font-display);
  line-height: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name  { font-weight: 700; font-size: .95rem; }
.author-title { font-size: .8rem; color: var(--gray-light); }

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--dark);
  font-size: 1.1rem;
}
.slider-btn:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  min-height: unset;
}
.slider-dot.active {
  background: var(--coral);
  width: 24px;
  border-radius: 4px;
}

/* ========================
   16. FAQ ACCORDION
   ======================== */
.faq-section { background: var(--white); }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: .875rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  border: none;
  width: 100%;
  text-align: left;
  transition: background var(--transition-fast), color var(--transition-fast);
  min-height: 44px;
}
.faq-question:hover { background: var(--bg-light); }
.faq-item.open .faq-question { background: var(--bg-light); color: var(--coral); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .8rem;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ========================
   17. TEAM SECTION
   ======================== */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.team-photo {
  height: 320px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--teal) 100%);
  position: relative;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 5rem;
  color: rgba(255,255,255,.4);
}
.team-info { padding: 1.75rem; }
.team-name  { font-size: 1.2rem; font-weight: 700; margin-bottom: .25rem; }
.team-role  { font-size: .875rem; color: var(--coral); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.team-bio   { font-size: .9rem; color: var(--gray); }

/* ========================
   18. PROCESS STEPS
   ======================== */
.process-grid {
  display: grid;
  gap: 2rem;
  counter-reset: process;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  position: relative;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.process-step h4 { margin-bottom: .5rem; font-size: 1rem; }
.process-step p  { font-size: .875rem; color: var(--gray); }

/* ========================
   19. SERVICES PAGE
   ======================== */
.services-full-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px)  { .services-full-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-full-grid { grid-template-columns: repeat(3, 1fr); } }

.service-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.service-full-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-full-card-top {
  padding: 2rem 2rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.service-icon-lg {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.service-full-card-body {
  padding: 0 2rem 2rem;
  flex: 1;
}
.service-full-card-body p { font-size: .925rem; color: var(--gray); margin-bottom: 1rem; }
.service-features {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 1rem;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: var(--dark-2);
}
.service-feature::before {
  content: '✓';
  width: 18px;
  height: 18px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 900;
}

/* ========================
   20. ABOUT PAGE
   ======================== */
.about-story {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .about-story { grid-template-columns: 1fr 1fr; } }

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--coral) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  min-height: 320px;
}
.about-accent-card {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}
.about-accent-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
}
.about-accent-card span {
  font-size: .75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.value-card h4 { margin-bottom: .5rem; font-size: 1rem; }
.value-card p  { font-size: .875rem; color: var(--gray); }

/* ========================
   21. APPLY PAGE
   ======================== */
.apply-page { background: var(--bg-light); }
.apply-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) { .apply-card { padding: 3rem; } }

.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 2px solid var(--border);
  padding-bottom: .75rem;
  margin: 2rem 0 1.5rem;
}
.form-section-title:first-child { margin-top: 0; }

/* ========================
   22. 404 PAGE
   ======================== */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--teal-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}
.page-404::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(230,57,70,.2) 0%, transparent 60%);
}
.page-404 .container { position: relative; z-index: 1; text-align: center; }
.error-number {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  line-height: .9;
  background: linear-gradient(135deg, var(--coral), var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -.05em;
}
.error-title { color: var(--white); font-size: 2rem; margin-bottom: 1rem; }
.error-text  { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-bottom: 2.5rem; }
.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ========================
   23. FOOTER
   ======================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand .nav-logo { margin-bottom: 1.25rem; }
.footer-brand .nav-logo-text { color: var(--white); }
.footer-tagline { font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: .75rem; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  font-size: .9rem;
}
.social-btn:hover { background: var(--coral); color: var(--white); }

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-link {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer-link:hover { color: var(--coral); padding-left: .35rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .875rem;
}
.footer-contact-icon {
  color: var(--coral);
  flex-shrink: 0;
  margin-top: .1rem;
  font-size: .9rem;
}
.footer-contact-item a { color: rgba(255,255,255,.6); transition: color var(--transition-fast); }
.footer-contact-item a:hover { color: var(--coral); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copyright { font-size: .85rem; color: rgba(255,255,255,.45); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-legal-link {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition-fast);
}
.footer-legal-link:hover { color: var(--coral); }

/* ========================
   24. BACK TO TOP
   ======================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.back-to-top:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

/* ========================
   25. SCROLL ANIMATIONS
   ======================== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity .7s ease;
}
.fade-in.visible { opacity: 1; }

.stagger-1 { transition-delay: .1s !important; }
.stagger-2 { transition-delay: .2s !important; }
.stagger-3 { transition-delay: .3s !important; }
.stagger-4 { transition-delay: .4s !important; }

/* ========================
   26. BADGES & TAGS
   ======================== */
.badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge-coral   { background: rgba(230,57,70,.1);  color: var(--coral); }
.badge-teal    { background: rgba(42,157,143,.12); color: var(--teal); }
.badge-orange  { background: rgba(244,162,97,.15); color: #c0652a; }

/* ========================
   27. DIVIDERS & DECORATORS
   ======================== */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg { display: block; width: 100%; }

.section-divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ========================
   28. PRIVACY & TERMS PAGES
   ======================== */
.legal-page { background: var(--bg-light); }
.legal-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.8;
}
@media (min-width: 768px) { .legal-content { padding: 3.5rem; } }

.legal-content h2 { margin: 2.5rem 0 1rem; font-size: 1.4rem; color: var(--dark); }
.legal-content h3 { margin: 2rem 0 .75rem; font-size: 1.15rem; color: var(--dark-2); }
.legal-content p  { color: var(--gray); margin-bottom: 1rem; }
.legal-content ul { margin: .75rem 0 1rem 1.5rem; list-style: disc; }
.legal-content ul li { color: var(--gray); margin-bottom: .5rem; }
.legal-content a  { color: var(--coral); text-decoration: underline; }
.legal-date {
  display: inline-block;
  background: rgba(230,57,70,.08);
  color: var(--coral);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
}

/* ========================
   29. UTILITIES
   ======================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.hidden { display: none !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ========================
   30. MEDIA QUERIES
   ======================== */
@media (min-width: 768px) {
  :root {
    --section-py: 6rem;
    --pad-x: 2rem;
  }
  .hero-content { max-width: 820px; }
  .about-story  { gap: 4rem; }
}

@media (min-width: 768px) {
  .why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .why-us-content > * + * { margin-top: 0; }
}

@media (min-width: 1024px) {
  :root { --section-py: 7rem; }
  .why-us-content { gap: 5rem; }
}

/* ========================
   31. FOCUS STYLES (Accessibility)
   ======================== */
:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
  border-radius: 2px;
}
a:focus-visible, button:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

/* ========================
   32. PRINT STYLES
   ======================== */
@media print {
  .site-header,
  .back-to-top,
  .nav-toggle,
  .nav-mobile,
  .hero-cta,
  .cta-section,
  .slider-controls,
  .site-footer .footer-social,
  .btn { display: none !important; }

  body { font-size: 12pt; color: #000; background: #fff; }
  a    { color: #000; text-decoration: underline; }
  .container { max-width: 100%; padding: 0; }
  .section  { padding: 1.5rem 0; }
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; page-break-after: avoid; }
  h3 { font-size: 14pt; page-break-after: avoid; }
  .card, .icon-card, .testimonial-card { box-shadow: none; border: 1px solid #ddd; }
  img { max-width: 100%; }
  .site-footer { background: none; color: #000; padding: 1rem 0; }
  .footer-bottom { border-top: 1px solid #ddd; }
}
