/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
  --navy:       #2B3480;
  --navy-dark:  #1e2560;
  --red:        #E8554E;
  --red-light:  #f07a75;
  --blue:       #4A90C4;
  --blue-light: #6aaad4;
  --purple:     #7B6B9E;
  --purple-light:#9a8dbf;
  --bg:         #F7F8FC;
  --white:      #ffffff;
  --text:       #2c2c3a;
  --text-muted: #6b7280;
  --border:     #e5e7eb;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.14);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.25s ease;
  --max-width:  1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================
   UTILITIES
   ========================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.accent { color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: #d44540;
  border-color: #d44540;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 85, 78, 0.35);
}

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

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

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

.section-label--light { color: rgba(255,255,255,0.75); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header--light h2 { color: var(--white); }

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.section-header--light p { color: rgba(255,255,255,0.75); }

/* =========================================
   NAVIGATION
   ========================================= */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}

.nav-header.scrolled { box-shadow: var(--shadow-lg); }

.nav-top-bar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:not(.nav-cta):hover { color: var(--navy); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--navy-dark) !important;
  transform: translateY(-1px);
}

/* Services bar */
.nav-services-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-services-list {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-services-list li { flex: 1; }

.nav-services-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  transition: all var(--transition);
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.nav-services-list li:last-child a { border-right: none; }

.nav-services-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-services-list a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-services-list a:hover::after { transform: scaleX(1); }

.nav-services-list svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

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

/* =========================================
   HERO
   ========================================= */
.hero {
  background: linear-gradient(145deg, #1a2068 0%, var(--navy) 45%, #1e3a6e 100%);
  padding: 10.5rem 0 0;
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(74,144,196,0.25) 0%, transparent 70%);
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  bottom: 20%;
  left: -100px;
  background: radial-gradient(circle, rgba(232,85,78,0.15) 0%, transparent 70%);
}

.hero-inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
}

.hero-inner h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-inner h1 .accent { color: var(--red); }

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 0.875rem 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 0.2rem;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* =========================================
   SCROLL OFFSET — accounts for fixed two-bar header
   ========================================= */
.svc-section,
#about,
#why-us,
#testimonials,
#contact {
  scroll-margin-top: 115px;
}

/* =========================================
   INDIVIDUAL SERVICE SECTIONS
   ========================================= */
.svc-section { padding: 5rem 0; }
.svc-section--light { background: var(--bg); }
.svc-section--white { background: var(--white); }

.svc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.svc-inner--reversed { direction: rtl; }
.svc-inner--reversed > * { direction: ltr; }

.svc-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}

.svc-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.svc-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.svc-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.svc-highlights svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

.svc-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  max-width: 480px;
  width: 100%;
  justify-self: center;
  box-shadow: var(--shadow-lg);
}

.svc-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: 6rem 0;
  background: var(--bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 380px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-initials {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
}

.about-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 100px;
}

.about-badge-float strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-float span {
  font-size: 0.75rem;
  opacity: 0.85;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-credentials {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.credential svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}

/* =========================================
   WHY US
   ========================================= */
.why-us {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74,144,196,0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: 6rem 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }

.testimonial-text {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-platform-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.review-platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid;
  transition: all var(--transition);
}

.review-platform-btn--google {
  color: var(--navy);
  border-color: var(--border);
  background: var(--white);
}

.review-platform-btn--google:hover {
  border-color: #4285F4;
  background: #f0f4ff;
}

.review-platform-btn--trustpilot {
  color: #00B67A;
  border-color: #00B67A;
  background: var(--white);
}

.review-platform-btn--trustpilot:hover {
  background: #00B67A;
  color: var(--white);
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: 6rem 0;
  background: var(--bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

a.contact-method:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg { width: 20px; height: 20px; }

.contact-method-icon--red    { background: rgba(232, 85, 78, 0.1);  color: var(--red); }
.contact-method-icon--blue   { background: rgba(74, 144, 196, 0.1); color: var(--blue); }
.contact-method-icon--purple { background: rgba(123, 107, 158, 0.1); color: var(--purple); }

.contact-method > div {
  min-width: 0;
  overflow: hidden;
}

.contact-method strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.contact-method span {
  font-size: 0.925rem;
  color: var(--text);
  font-weight: 500;
  overflow-wrap: anywhere;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--navy);
}

.form-checkbox label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.875rem;
  background: rgba(74, 196, 126, 0.1);
  color: #16a34a;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.form-success.visible { display: block; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
}

.footer-fca {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-fca p {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--white); }

/* Mobile services grid hidden on desktop — shown via media query below */
.mobile-services-grid { display: none; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-inner         { gap: 3rem; }
}

@media (max-width: 768px) {
  /* --- Navigation ---
     Dropdown is position:absolute on the fixed .nav-header so
     it always appears just below the full header, regardless of
     whether the services bar is also showing. */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1.5rem 1.25rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 99;
  }

  .nav-links.open { display: flex; }

  .nav-links a:not(.nav-cta) {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
    padding: 0.875rem;
    display: block;
  }

  .nav-burger { display: flex; }

  /* Services bar: hidden on mobile — replaced by mobile-services-grid section */
  .nav-services-bar { display: none; }

  /* Scroll offset — header is ~68px on mobile */
  .svc-section,
  #about,
  #why-us,
  #testimonials,
  #contact { scroll-margin-top: 75px; }

  /* --- Mobile services grid --- */
  .mobile-services-grid {
    display: block;
    background: var(--white);
    padding: 2rem 0 2.5rem;
    border-bottom: 1px solid var(--border);
  }
  .mobile-services-grid .section-label { display: block; margin-bottom: 1.25rem; }
  .mobile-services-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
  }
  .mobile-svc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.25rem 0.75rem;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    text-decoration: none;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
  }
  .mobile-svc-card:active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }
  .mobile-svc-card svg {
    width: 26px;
    height: 26px;
    stroke: var(--red);
    flex-shrink: 0;
  }
  .mobile-svc-card:active svg { stroke: var(--white); }

  /* --- Hero --- */
  .hero { padding-top: 6rem; }
  .hero-sub { max-width: 100%; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 1rem; padding: 0.75rem 1.5rem; }

  /* --- Service sections --- */
  .svc-inner,
  .svc-inner--reversed {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }
  .svc-visual { max-width: 100%; margin: 0 auto; order: -1; }
  .svc-section { padding: 3.5rem 0; }

  /* --- About --- */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-image-placeholder { max-width: 300px; margin: 0 auto; }
  .about-badge-float {
    bottom: -1rem;
    right: 0;
    padding: 0.75rem 1rem;
  }

  /* --- Contact --- */
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* --- Footer --- */
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .why-grid          { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
}

@media (max-width: 500px) {
  .hero-stats { display: none; }
  .hero { padding-top: 5.5rem; }
  .hero-inner h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .nav-logo img { height: 42px; }
}

/* =========================================
   INITIAL DISCLOSURE BAR
   ========================================= */
.disclosure-bar {
  background: var(--navy);
  padding: 2rem 0;
  scroll-margin-top: 115px;
}

.disclosure-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.disclosure-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0 1.5rem;
}

.disclosure-item svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.disclosure-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.disclosure-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.disclosure-item a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  transition: color var(--transition);
}

.disclosure-item a:hover { color: var(--white); }

.disclosure-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* =========================================
   RISK WARNINGS
   ========================================= */
.risk-warning {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-left: 3px solid var(--border);
  padding-left: 0.875rem;
  margin-bottom: 1.25rem;
  font-style: italic;
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  z-index: 500;
  border-top: 3px solid var(--red);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 260px; }

.cookie-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.cookie-text p {
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-text a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.cookie-text a:hover { color: var(--white); }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-actions .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.cookie-actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* Responsive disclosure bar */
@media (max-width: 1024px) {
  .disclosure-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .disclosure-divider { display: none; }
  .disclosure-item { padding: 0; }
}

@media (max-width: 600px) {
  .disclosure-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* =========================================
   LEGAL PAGES (privacy-policy, complaints)
   ========================================= */
.legal-page {
  padding: 8rem 0 5rem;
  min-height: 80vh;
}

.legal-container {
  max-width: 780px;
}

.legal-container h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-of-type { border-bottom: none; }

.legal-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.875rem;
}

.legal-section p {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-section ul,
.legal-section ol {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section li {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.35rem;
}

.legal-section a { color: var(--navy); font-weight: 500; text-decoration: underline; }
.legal-section a:hover { color: var(--red); }

.complaints-fos {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1rem 0;
}

.complaints-fos p {
  margin-bottom: 0.5rem !important;
}

.complaints-fos a { color: var(--navy); }
