/* =============================================
   RESET & BASE  (Template B — Clean Professional)
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111827;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.has-watermark { padding-top: 41px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* WATERMARK */
.watermark-bar {
  background: #c0392b; color: #fff; text-align: center;
  padding: 10px 16px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.3px; display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 10px;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
}
.watermark-cta {
  background: #fff; color: #c0392b; padding: 5px 14px;
  border-radius: 20px; font-size: 12px; font-weight: 700;
  white-space: nowrap; transition: opacity 0.2s;
}
.watermark-cta:hover { opacity: 0.85; }

/* NAV */
.nav {
  background: #fff;
  position: sticky; top: 0; z-index: 999;
  border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}
.nav.has-watermark { top: 41px; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 24px; max-width: 1140px; margin: 0 auto;
}
.nav-logo {
  font-size: 18px; font-weight: 800; color: #1a3a5c; letter-spacing: -0.5px; flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  font-size: 14px; font-weight: 600; color: #6b7280; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #1a3a5c; }
.nav-cta {
  background: #2980b9; color: #fff !important; padding: 9px 20px;
  border-radius: 100px; font-size: 13px; font-weight: 700;
  transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  white-space: nowrap;
}
.nav-cta:hover { background: #1f6fa0; box-shadow: 0 4px 16px rgba(0,0,0,0.2); transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: none;
  font-size: 22px; cursor: pointer; color: #1a3a5c; padding: 4px 8px;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 26px; border-radius: 100px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; border: 2px solid transparent; white-space: nowrap;
}
.btn-primary { background: #2980b9; color: #fff; border-color: #2980b9; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.btn-primary:hover { background: #1f6fa0; border-color: #1f6fa0; box-shadow: 0 6px 20px rgba(0,0,0,0.2); transform: translateY(-1px); }
.btn-outline { background: #fff; color: #1a3a5c; border-color: #e5e7eb; }
.btn-outline:hover { border-color: #2980b9; color: #2980b9; }
.btn-white { background: #fff; color: #1a3a5c; border-color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.btn-white:hover { background: #f9fafb; transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }
.btn-full { width: 100%; justify-content: center; }

/* HERO — full-bleed background image with color-matched gradient overlay */
.hero {
  background-color: #1a3a5c;
  background-image:
    linear-gradient(135deg, #1a3a5cf2 0%, #1a3a5cbb 40%, #1a3a5c88 70%, #1a3a5c55 100%),
    var(--hero-bg-img, none);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 88px 0 72px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -150px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, #2980b944 0%, #2980b911 40%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.6); color: #111827;
  font-size: 12px; font-weight: 700; padding: 6px 14px;
  border-radius: 100px; margin-bottom: 18px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(30px, 4.5vw, 52px); font-weight: 800;
  line-height: 1.1; letter-spacing: -1px; color: #ffffff; margin-bottom: 16px;
}
.hero h1 em { font-style: normal; color: #2980b9; }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.72); max-width: 500px;
  line-height: 1.8; margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }

/* HERO CARD */
.hero-card {
  background: #fff; border-radius: 20px; padding: 32px 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1); border: 1px solid #f3f4f6;
}
.hero-card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid #f3f4f6;
}
.hero-card-icon {
  width: 44px; height: 44px; background: #f0f4ff; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.hero-card-title { font-size: 15px; font-weight: 800; color: #111827; }
.hero-card-sub { font-size: 12px; color: #6b7280; }
.hero-card-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.hero-card-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #374151;
}
.hero-card-item::before {
  content: '✓'; width: 18px; height: 18px; min-width: 18px;
  background: #dcfce7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #16a34a;
}
.hero-card-cta {
  display: block; background: #2980b9; color: #fff; text-align: center;
  padding: 13px; border-radius: 12px; font-size: 14px; font-weight: 700;
  transition: all 0.2s;
}
.hero-card-cta:hover { background: #1f6fa0; }

/* TRUST STRIP */
.trust-strip {
  background: #fff; border-top: 1px solid #f3f4f6; border-bottom: 1px solid #f3f4f6;
  padding: 18px 0;
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-strip-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #374151;
}

/* SECTIONS */
.section { padding: 80px 0; }
.section-alt { background: #f9fafb; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block; background: #f0f4ff; color: #1a3a5c;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(24px, 3.5vw, 38px); font-weight: 800;
  color: #111827; letter-spacing: -0.8px; margin-bottom: 12px;
}
.section-header p { font-size: 16px; color: #6b7280; max-width: 540px; margin: 0 auto; line-height: 1.75; }

/* SERVICES GRID (home page) */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  background: #fff; border: 1px solid #f3f4f6; border-radius: 16px;
  padding: 26px 22px; transition: all 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-3px);
  border-color: #e0e7ff;
}
.service-icon {
  width: 46px; height: 46px; background: #f0f4ff; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}
.service-card h3 { font-size: 15px; font-weight: 800; color: #111827; margin-bottom: 7px; }
.service-card p { font-size: 14px; color: #6b7280; line-height: 1.7; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 700; color: #2980b9; margin-top: 10px;
  transition: gap 0.2s;
}
.service-card-link:hover { gap: 8px; }

/* =============================================
   SERVICES PAGE — Alternating Tile Layout
   ============================================= */
.svc-tiles { display: flex; flex-direction: column; gap: 56px; }

.svc-tile {
  display: grid; grid-template-columns: 340px 1fr; gap: 48px;
  align-items: center;
}
.svc-tile.reverse { grid-template-columns: 1fr 340px; }
.svc-tile.reverse .svc-tile-card { order: 2; }
.svc-tile.reverse .svc-tile-body { order: 1; }

/* Emoji image card */
.svc-tile-card {
  background: linear-gradient(160deg, #1a3a5c 0%, #0d1f33 100%);
  border-radius: 24px; aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 88px; position: relative; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  min-height: 280px; max-height: 340px;
}
.svc-tile-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.svc-tile-card-inner {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px; position: relative; z-index: 1;
  padding: 24px;
}
.svc-tile-card-emoji { font-size: 72px; line-height: 1; }
.svc-tile-card-label {
  font-size: 14px; font-weight: 800; color: rgba(255,255,255,0.9);
  text-align: center; letter-spacing: 0.3px; line-height: 1.3;
}

/* Text body */
.svc-tile-body {}
.svc-tile-body h2 {
  font-size: clamp(22px, 2.8vw, 30px); font-weight: 800;
  color: #111827; letter-spacing: -0.6px; line-height: 1.15;
  margin-bottom: 16px;
}
.svc-tile-body p {
  font-size: 15px; color: #4b5563; line-height: 1.85; margin-bottom: 16px;
}
.svc-tile-body p:last-of-type { margin-bottom: 0; }

.svc-includes-label {
  font-size: 12px; font-weight: 700; color: #374151;
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 14px; margin-top: 20px;
}
.svc-includes-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px;
}
.svc-include-chip {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px; color: #374151; line-height: 1.45;
}
.svc-include-chip-dot {
  width: 20px; height: 20px; min-width: 20px; background: #2980b9;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-top: 1px; flex-shrink: 0;
}
.svc-include-chip-dot svg { display: block; }

/* Divider between tiles */
.svc-tile-divider {
  border: none; border-top: 1px solid #f3f4f6; margin: 0;
}

/* =============================================
   FAQ — Animated Accordion
   ============================================= */
.faq-section-inner {
  max-width: 760px; margin: 0 auto;
}
.faq-accordion { display: flex; flex-direction: column; gap: 0; border-radius: 16px; overflow: hidden; border: 1px solid #e5e7eb; }
.faq-acc-item {
  background: #fff; border-bottom: 1px solid #e5e7eb;
}
.faq-acc-item:last-child { border-bottom: none; }
.faq-acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 28px; background: none; border: none;
  cursor: pointer; font-family: inherit; text-align: left;
  transition: background 0.15s;
}
.faq-acc-btn:hover { background: #f9fafb; }
.faq-acc-btn.open { background: #f9fafb; }
.faq-acc-q {
  font-size: 15px; font-weight: 700; color: #111827; line-height: 1.4;
}
.faq-acc-icon {
  width: 32px; height: 32px; min-width: 32px; border-radius: 50%;
  background: #f0f4ff; display: flex; align-items: center;
  justify-content: center; transition: all 0.25s;
}
.faq-acc-btn.open .faq-acc-icon {
  background: #2980b9; transform: rotate(45deg);
}
.faq-acc-icon svg { display: block; }
.faq-acc-btn.open .faq-acc-icon svg path { stroke: #fff; }
.faq-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-acc-body.open { max-height: 400px; }
.faq-acc-answer {
  padding: 0 28px 24px;
  font-size: 15px; color: #4b5563; line-height: 1.8;
  border-top: 1px solid #f3f4f6;
  padding-top: 16px;
}

/* =============================================
   ABOUT PAGE — Redesigned
   ============================================= */
.about-mission {
  background-color: #1a3a5c;
  background-image:
    linear-gradient(135deg, #1a3a5cf2 0%, #1a3a5ccc 50%, #1a3a5c99 100%),
    var(--hero-bg-img, none);
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.about-mission::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.about-mission-quote {
  font-size: clamp(20px, 3vw, 30px); font-weight: 800; color: #fff;
  letter-spacing: -0.5px; line-height: 1.3; max-width: 680px;
  margin: 0 auto 20px; position: relative;
}
.about-mission-quote::before { display: none; }
.about-mission-sub {
  font-size: 16px; color: rgba(255,255,255,0.65);
  max-width: 480px; margin: 0 auto;
}

.about-body-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
  padding: 80px 0;
}

/* ABOUT SECTION IMAGE */
.about-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  aspect-ratio: 4/3;
}
.about-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-radius: 12px; padding: 12px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 10px;
}
.about-img-badge-icon {
  font-size: 24px; line-height: 1;
}
.about-img-badge-text strong {
  display: block; font-size: 14px; font-weight: 800; color: #111827;
}
.about-img-badge-text span {
  font-size: 12px; color: #6b7280;
}

/* WORK GALLERY SECTION */
.work-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 48px;
}
.work-gallery-item {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.work-gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.work-gallery-item:hover img { transform: scale(1.05); }
.about-body-left h2 {
  font-size: clamp(22px, 3vw, 30px); font-weight: 800;
  color: #111827; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 20px;
}
.about-body-left p {
  font-size: 15px; color: #4b5563; line-height: 1.9; margin-bottom: 18px;
}

.about-values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px;
}
.about-value-card {
  background: #f9fafb; border: 1px solid #f3f4f6;
  border-radius: 14px; padding: 20px 18px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: all 0.2s;
}
.about-value-card:hover {
  background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-color: #e0e7ff; transform: translateY(-2px);
}
.about-value-icon {
  width: 40px; height: 40px; min-width: 40px; background: #2980b9;
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.about-value-icon svg { display: block; }
.about-value-card-text strong {
  display: block; font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 3px;
}
.about-value-card-text span {
  font-size: 13px; color: #6b7280; line-height: 1.5;
}

.about-why-col {
  position: sticky; top: 100px;
}
.about-why-header {
  background: linear-gradient(135deg, #2980b9 0%, #1a3a5c 100%);
  border-radius: 20px 20px 0 0; padding: 28px 32px;
}
.about-why-header h3 {
  font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.3px;
}
.about-why-header p {
  font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px;
}
.about-why-body {
  background: #fff; border: 1px solid #f3f4f6; border-top: none;
  border-radius: 0 0 20px 20px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.about-why-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 28px; border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s;
}
.about-why-item:last-child { border-bottom: none; }
.about-why-item:hover { background: #f9fafb; }
.about-why-num {
  width: 32px; height: 32px; min-width: 32px; background: #f0f4ff;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 13px; font-weight: 800; color: #2980b9;
  flex-shrink: 0; margin-top: 1px;
}
.about-why-item-text strong {
  display: block; font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 3px;
}
.about-why-item-text span {
  font-size: 13px; color: #6b7280; line-height: 1.5;
}

/* CTA BAND */
.cta-band {
  background-color: #1a3a5c;
  background-image:
    linear-gradient(135deg, #1a3a5cf5 0%, #1a3a5ccc 50%, #1a3a5caa 100%),
    var(--cta-bg-img, none);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff; padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(24px, 4vw, 40px); font-weight: 800;
  letter-spacing: -0.8px; margin-bottom: 12px;
}
.cta-band p {
  font-size: 17px; color: rgba(255,255,255,0.7);
  max-width: 480px; margin: 0 auto 36px; line-height: 1.75;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(160deg, #f8faff 0%, #eef2ff 60%, #fff 100%);
  padding: 72px 0 60px; text-align: center;
}
.page-hero-tag {
  display: inline-block; background: #fff; border: 1px solid #e5e7eb;
  color: #1a3a5c; font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 46px); font-weight: 800;
  letter-spacing: -1px; color: #111827; margin-bottom: 12px;
}
.page-hero p { font-size: 17px; color: #6b7280; max-width: 520px; margin: 0 auto; }

/* ABOUT PAGE — redesigned */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-content h2 {
  font-size: clamp(22px, 3vw, 32px); font-weight: 800;
  color: #111827; margin-bottom: 20px; letter-spacing: -0.5px; line-height: 1.2;
}
.about-content p {
  font-size: 15px; color: #4b5563; line-height: 1.85; margin-bottom: 16px;
}
.about-content p:last-of-type { margin-bottom: 0; }
.about-values {
  margin-top: 32px; display: flex; flex-direction: column; gap: 14px;
}
.about-values-title {
  font-size: 13px; font-weight: 700; color: #374151;
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px;
}
.about-value-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: #374151; line-height: 1.5;
}
.about-value-check {
  width: 22px; height: 22px; min-width: 22px; background: #2980b9;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 11px; font-weight: 700; color: #fff; margin-top: 1px;
}
.about-sidebar {
  background: #f9fafb; border: 1px solid #f3f4f6;
  border-radius: 20px; padding: 40px 32px;
}
.about-sidebar h3 {
  font-size: 18px; font-weight: 800; color: #111827;
  margin-bottom: 24px; letter-spacing: -0.3px;
}
.about-sidebar-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid #e5e7eb;
}
.about-sidebar-item:last-child { border-bottom: none; padding-bottom: 0; }
.about-sidebar-item strong {
  display: block; font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 3px;
}
.about-sidebar-item span { font-size: 13px; color: #6b7280; line-height: 1.5; }
.about-sidebar-dot {
  width: 8px; height: 8px; min-width: 8px; background: #2980b9;
  border-radius: 50%; margin-top: 6px;
}

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: #111827; margin-bottom: 24px; letter-spacing: -0.5px; }
.contact-detail {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f3f4f6;
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  font-size: 20px; flex-shrink: 0; width: 42px; height: 42px;
  background: #f0f4ff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail strong { display: block; font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 3px; }
.contact-detail span { font-size: 14px; color: #6b7280; line-height: 1.5; }
.contact-phone-link {
  font-size: 18px; font-weight: 800; color: #2980b9; text-decoration: none;
  display: inline-block; margin-bottom: 2px;
}
.contact-phone-link:hover { color: #1f6fa0; text-decoration: underline; }

/* CONTACT FORM */
.contact-form-box {
  background: #fff; border: 1px solid #f3f4f6; border-radius: 20px;
  padding: 36px 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
}
.contact-form-box h3 {
  font-size: 18px; font-weight: 800; color: #111827;
  margin-bottom: 24px; letter-spacing: -0.3px;
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px; border: 1px solid #e5e7eb;
  border-radius: 10px; font-size: 14px; color: #111827;
  transition: border-color 0.2s; font-family: inherit; background: #fff;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #2980b9; box-shadow: 0 0 0 3px rgba(0,0,0,0.06); }
.form-group textarea { height: 110px; resize: vertical; }
.form-locked-overlay {
  position: absolute; inset: 0; background: rgba(255,255,255,0.93);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 24px;
  border-radius: 20px;
}
.form-locked-overlay .lock-icon { font-size: 36px; margin-bottom: 12px; }
.form-locked-overlay h4 { font-size: 16px; font-weight: 700; color: #1a3a5c; margin-bottom: 8px; }
.form-locked-overlay p { font-size: 13px; color: #6b7280; margin-bottom: 20px; max-width: 260px; }

/* CLAIM / PRICING */
.claim-section { background: #f9fafb; text-align: center; }
.claim-badge {
  display: inline-block; background: #1a3a5c; color: #fff;
  font-size: 12px; font-weight: 700; padding: 5px 14px;
  border-radius: 100px; margin-bottom: 16px; letter-spacing: 0.5px;
}
.claim-section h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; color: #111827; margin-bottom: 12px; letter-spacing: -0.5px; }
.claim-section > .container > p { font-size: 16px; color: #6b7280; max-width: 560px; margin: 0 auto 40px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; max-width: 760px; margin: 56px auto 0;
}
.pricing-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 20px;
  padding: 40px 36px; position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
  transition: transform 0.2s;
  text-align: left;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-featured { background: #1a3a5c; border-color: #1a3a5c; color: #fff; box-shadow: 0 8px 40px rgba(0,0,0,0.18); }
.pricing-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #facc15; color: #1e293b; font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.pricing-tier { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #9ca3af; margin-bottom: 8px; }
.pricing-featured .pricing-tier { color: rgba(255,255,255,0.7); }
.pricing-price { font-size: 3rem; font-weight: 900; color: #1a3a5c; line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 500; vertical-align: top; margin-top: 8px; display: inline-block; }
.pricing-featured .pricing-price { color: #fff; }
.pricing-sub { font-size: 0.88rem; color: #6b7280; margin-bottom: 6px; }
.pricing-featured .pricing-sub { color: rgba(255,255,255,0.7); }
.pricing-desc { font-size: 0.8rem; color: #9ca3af; font-style: italic; margin-bottom: 28px; line-height: 1.5; }
.pricing-featured .pricing-desc { color: rgba(255,255,255,0.65); }
.pricing-features { list-style: none; margin: 0 0 32px 0; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pricing-features li { font-size: 0.9rem; color: #374151; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.pricing-features li::before { content: "✓"; color: #22c55e; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-featured .pricing-features li { color: rgba(255,255,255,0.92); }
.pricing-featured .pricing-features li::before { color: #4ade80; }
.pricing-callout {
  background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.1); border-radius: 10px;
  padding: 12px 16px; font-size: 0.8rem; color: #6b7280;
  margin: 0 0 28px; line-height: 1.5; margin-top: auto;
}
.pricing-callout strong { color: #d97706; }
.pricing-featured .pricing-callout {
  background: rgba(0,0,0,0.15); border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}
.pricing-featured .pricing-callout strong { color: #fbbf24; }
.pricing-cta {
  display: block; text-align: center;
  background: rgba(0,0,0,0.07); color: #1e293b;
  padding: 14px 24px; border-radius: 10px; text-decoration: none;
  font-weight: 700; font-size: 0.95rem;
  border: 1px solid rgba(0,0,0,0.14); transition: all 0.2s;
}
.pricing-cta:hover { background: rgba(0,0,0,0.12); transform: translateY(-2px); }
.pricing-cta-lead {
  background: #16a34a; color: #fff; border-color: transparent;
  box-shadow: 0 4px 14px rgba(22,163,74,0.35);
}
.pricing-cta-lead:hover { background: #15803d; color: #fff; box-shadow: 0 6px 20px rgba(22,163,74,0.45); transform: translateY(-2px); }
.pricing-featured .pricing-cta {
  background: #fff; color: #1a3a5c; border-color: transparent;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.pricing-featured .pricing-cta:hover { background: #f0f9ff; }
.claim-note { margin-top: 24px; font-size: 14px; color: #9ca3af; }

/* ONBOARDING STEPS */
.onboarding-steps {
  background: #fff; border: 1px solid #f3f4f6; border-radius: 16px;
  padding: 28px 28px 24px; margin: 32px auto 0; max-width: 700px;
  text-align: left; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.onboarding-steps-header {
  font-size: 15px; font-weight: 700; color: #111827; margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 1px solid #f3f4f6;
  text-align: center; letter-spacing: -0.1px;
}
.onboarding-steps-grid { display: flex; flex-direction: column; gap: 0; }
.onboarding-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid #f3f4f6;
}
.onboarding-step:last-child { border-bottom: none; padding-bottom: 0; }
.step-number {
  width: 32px; height: 32px; min-width: 32px; background: #2980b9;
  color: #fff; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 14px; font-weight: 800; margin-top: 1px;
}
.step-content { display: flex; flex-direction: column; gap: 3px; }
.step-content strong { font-size: 14px; font-weight: 700; color: #111827; line-height: 1.4; }
.step-content span { font-size: 13px; color: #6b7280; line-height: 1.6; }

/* FOOTER */
.footer { background: #111827; color: rgba(255,255,255,0.5); padding: 56px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 32px;
}
.footer-brand .footer-logo { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 600;
  padding: 6px 12px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; transition: all 0.2s;
}
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.06); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px;
  font-size: 13px; display: flex; justify-content: space-between; align-items: center;
}

/* =============================================
   RESPONSIVE — Mobile-First
   ============================================= */

/* Prevent horizontal overflow on all screen sizes */
html, body { overflow-x: hidden; max-width: 100%; }

@media (max-width: 1024px) {
  .svc-tile { grid-template-columns: 280px 1fr; gap: 36px; }
  .svc-tile.reverse { grid-template-columns: 1fr 280px; }
}

@media (max-width: 900px) {
  /* Hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  /* Services home grid */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  /* About */
  .about-layout { grid-template-columns: 1fr; }
  .about-body-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-why-col { position: static; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .about-img-wrap { aspect-ratio: 16/9; max-height: 320px; }
  .work-gallery { grid-template-columns: repeat(2, 1fr); }
  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  /* Services tiles: stack on tablet */
  .svc-tile,
  .svc-tile.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .svc-tile-card {
    max-width: 320px; min-height: 220px;
    margin: 0 auto; aspect-ratio: auto;
    padding: 40px 24px;
  }
  .svc-tile.reverse .svc-tile-card { order: 0; }
  .svc-tile.reverse .svc-tile-body { order: 1; }
  .svc-tile-card-emoji { font-size: 56px; }
  /* Includes grid: 1 col on tablet */
  .svc-includes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 16px 24px;
    border-bottom: 1px solid #f3f4f6; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    gap: 0; z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid #f3f4f6; font-size: 15px; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  /* Trust strip */
  .trust-strip-inner { gap: 12px; flex-direction: column; align-items: flex-start; padding: 0 24px; }
  /* Services home grid */
  .services-grid { grid-template-columns: 1fr; }
  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  /* About values: 1 col on mobile */
  .about-values-grid { grid-template-columns: 1fr; }
  /* About image: hide on mobile to keep layout clean */
  .about-img-wrap { display: none; }
  /* Work gallery: 1 col on mobile */
  .work-gallery { grid-template-columns: 1fr; gap: 12px; }
  /* Contact form padding */
  .contact-form-box { padding: 24px 20px; }
  /* Page hero */
  .page-hero { padding: 48px 0 36px; }
  /* Watermark bar */
  .watermark-bar { font-size: 12px; padding: 8px 12px; gap: 8px; }
  .watermark-cta { font-size: 11px; padding: 4px 12px; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  /* Sections */
  .section { padding: 48px 0; }
  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  /* Services tiles */
  .svc-tiles { gap: 40px; }
  .svc-tile-card {
    max-width: 100%; min-height: 180px;
    border-radius: 20px; padding: 32px 16px;
  }
  .svc-tile-card-emoji { font-size: 48px; }
  .svc-tile-card-label { font-size: 13px; }
  .svc-tile-body h2 { font-size: 22px; }
  .svc-tile-body p { font-size: 14px; }
  /* FAQ */
  .faq-acc-btn { padding: 16px 20px; }
  .faq-acc-answer { padding: 0 20px 20px; padding-top: 14px; }
  /* About */
  .about-mission { padding: 56px 0; }
  .about-body-grid { padding: 48px 0; }
  /* Pricing */
  .pricing-card { padding: 28px 20px; }
  /* Onboarding steps */
  .onboarding-steps { padding: 20px 16px; }
  /* Footer */
  .footer { padding: 40px 0 20px; }
  /* Contact */
  .contact-grid { gap: 32px; }
  /* Container padding */
  .container { padding: 0 16px; }
}
