/* ==========================================================================
   BooksRight Bookkeeping Services — Main Stylesheet
   Palette: Navy (#0b2447) + Green (#2f9e52), built for Creative Dot's
   approved hybrid design direction (Mockup 2 structure + Mockup 1 polish).
   ========================================================================== */

/* Self-hosted fonts (no external font requests, works offline) */
@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src: url('../assets/fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:500; font-display:swap; src: url('../assets/fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src: url('../assets/fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:700; font-display:swap; src: url('../assets/fonts/inter-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:500; font-display:swap; src: url('../assets/fonts/poppins-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:600; font-display:swap; src: url('../assets/fonts/poppins-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:700; font-display:swap; src: url('../assets/fonts/poppins-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:800; font-display:swap; src: url('../assets/fonts/poppins-latin-800-normal.woff2') format('woff2'); }

:root {
  --navy-950: #071a33;
  --navy-900: #0b2447;
  --navy-800: #0f2f5c;
  --navy-700: #15396e;
  --green-600: #2f9e52;
  --green-700: #24803f;
  --green-500: #3cb96a;
  --green-100: #e7f6ec;
  --gray-50: #f7f9fb;
  --gray-100: #eef1f5;
  --gray-200: #e3e8ee;
  --gray-400: #a2acba;
  --gray-600: #5b6b7d;
  --gray-800: #2b3646;
  --gray-900: #111827;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(11, 36, 71, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 36, 71, 0.10);
  --shadow-lg: 0 20px 50px rgba(11, 36, 71, 0.16);
  --container: 1200px;
  --font-head: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

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

ul { list-style: none; }

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

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

section { padding: 80px 0; }

.section-tag {
  display: inline-block;
  color: var(--green-600);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 14px; }
.section-head p { color: var(--gray-600); font-size: 17px; }

.text-green { color: var(--green-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-green {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(47, 158, 82, 0.30);
}
.btn-green:hover { background: var(--green-700); }
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-800); }
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy-900);
  color: var(--navy-900);
}
.btn-outline-navy:hover { background: var(--navy-900); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-left a, .topbar-left span { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); }
.topbar-right { display: flex; align-items: center; gap: 6px; color: var(--green-500); font-weight: 600; }
.icon { width: 15px; height: 15px; flex-shrink: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 18px;
  padding-right: 18px;
  gap: 14px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--navy-900); white-space: nowrap; }
.brand-name span { color: var(--green-600); }

.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--gray-800);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--green-600); border-color: var(--green-600); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy-900); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  /* Falls back to the navy gradient on its own; drop a photo at
     assets/hero-bg.jpg and it layers in automatically underneath the
     gradient (kept for text legibility) with no other changes needed. */
  background-color: var(--navy-950);
  background-image:
    linear-gradient(120deg, rgba(7, 19, 38, 0.90) 0%, rgba(7, 19, 38, 0.72) 45%, rgba(11, 36, 71, 0.45) 100%),
    url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(60, 185, 106, 0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(60, 185, 106, 0.10), transparent 40%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(60, 185, 106, 0.15);
  border: 1px solid rgba(60, 185, 106, 0.4);
  color: var(--green-500);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(32px, 4.4vw, 50px);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero-lead {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-partners { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-partners span { color: rgba(255,255,255,0.6); font-size: 13.5px; }
.hero-partners .partner-badges { display: flex; align-items: center; gap: 12px; }
.hero-partners img { height: 30px; width: 30px; border-radius: 50%; background: var(--white); padding: 3px; }

/* Qualification form card in hero */
.lead-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--gray-800);
}
.lead-card-tag { color: var(--green-600); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.lead-card h3 { font-size: 21px; margin: 6px 0 6px; }
.lead-card p.hint { color: var(--gray-600); font-size: 13.5px; margin-bottom: 18px; }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.field select, .field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: border-color 0.15s ease;
}
.field select:focus, .field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 76px; }
.form-lock { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-600); margin-top: 12px; justify-content: center; }

/* Glass-style variant used for the hero qualification card, designed to
   float over a background photo (see .hero background-image below). */
.lead-card.glass {
  background: rgba(7, 21, 42, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(120, 224, 160, 0.45);
  box-shadow: 0 0 0 1px rgba(60, 185, 106, 0.12), 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 45px rgba(60, 185, 106, 0.18);
  color: var(--white);
}
.lead-card.glass h3 { color: var(--white); }
.lead-card.glass p.hint { color: rgba(255, 255, 255, 0.68); }
.lead-card.glass .field label { color: rgba(255, 255, 255, 0.92); }
.lead-card.glass .input-wrap { position: relative; }
.lead-card.glass .input-wrap > i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--gray-500); font-size: 14px; pointer-events: none;
}
.lead-card.glass .input-wrap.ta > i { top: 18px; transform: none; }
.lead-card.glass .input-wrap select,
.lead-card.glass .input-wrap input,
.lead-card.glass .input-wrap textarea {
  padding-left: 38px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  background: rgba(255, 255, 255, 0.97);
}
.lead-card.glass .input-wrap select:focus,
.lead-card.glass .input-wrap input:focus,
.lead-card.glass .input-wrap textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(60, 185, 106, 0.25);
  background: var(--white);
}
.lead-card.glass .form-lock { color: rgba(255, 255, 255, 0.65); }

/* Trust strip */
.trust-strip {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  margin: 0 auto -1px;
  transform: translateY(40px);
  position: relative;
  z-index: 2;
  padding: 30px 10px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item { display: flex; align-items: center; gap: 14px; padding: 0 14px; }
.trust-item .ic {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600);
}
.trust-item h4 { font-size: 15px; margin-bottom: 2px; }
.trust-item p { font-size: 13px; color: var(--gray-600); }

/* Section after hero needs top padding to clear the floating trust strip */
.after-hero { padding-top: 120px; background: var(--gray-50); }

/* ---------- Industry / cards grids ---------- */
.industry-grid, .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ic-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--navy-900);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card h3, .card h4 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--gray-600); font-size: 14.5px; }
.card .learn, .service-detail .learn { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--green-600); font-weight: 700; font-size: 14px; }
.card .learn svg, .service-detail .learn svg { transition: transform 0.15s ease; }
.card:hover .learn svg { transform: translateX(4px); }
.service-detail .learn:hover i { transform: translateX(4px); }
.service-detail .learn i { transition: transform 0.15s ease; }

/* ---------- Cloud banner ---------- */
.cloud-banner {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: 46px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--white);
}
.cloud-banner-text h3 { color: var(--white); font-size: 26px; margin-bottom: 10px; }
.cloud-banner-text p { color: rgba(255,255,255,0.75); max-width: 480px; }
.cloud-banner-badges { display: flex; align-items: center; gap: 22px; }
.cloud-banner-badges img { height: 64px; width: 64px; border-radius: 50%; background: var(--white); padding: 6px; }

/* ---------- Why choose / stats ---------- */
.why-section {
  background-color: var(--navy-950);
  background-image:
    linear-gradient(rgba(7, 19, 38, 0.88), rgba(7, 19, 38, 0.88)),
    url('../assets/why-section-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.why-item .ic {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(60, 185, 106, 0.15);
  color: var(--green-500);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-item h4 { color: var(--white); font-size: 16.5px; margin-bottom: 6px; }
.why-item p { color: rgba(255,255,255,0.65); font-size: 14px; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 34px 0;
  margin-bottom: 48px;
}
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-size: 34px; font-weight: 700; color: var(--green-500); }
.stat .label { font-size: 13.5px; color: rgba(255,255,255,0.65); margin-top: 4px; }

.testimonials-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 26px;
}
.testimonial .quote-mark { color: var(--green-500); font-size: 34px; font-family: Georgia, serif; line-height: 1; margin-bottom: 6px; display: block; }
.testimonial p.quote { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 16px; }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.testimonial .who .name { font-weight: 600; color: var(--white); font-size: 14px; }
.testimonial .who .role { font-size: 12.5px; color: rgba(255,255,255,0.55); }

/* ---------- About preview / split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.1fr 0.9fr; }
.split.reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.split-media .skyline {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  display: flex; align-items: flex-end; justify-content: center;
  position: relative;
  overflow: hidden;
}
.split-media .skyline svg { width: 100%; height: auto; opacity: 0.9; }
.split-media .skyline img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-media .badge-float {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
}
.split-media .badge-float .ic { width: 38px; height: 38px; border-radius: 50%; background: var(--green-100); color: var(--green-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.split-media .badge-float strong { display: block; font-size: 14px; color: var(--navy-900); }
.split-media .badge-float span { font-size: 12.5px; color: var(--gray-600); }
.split-body h2 { font-size: clamp(26px, 3.2vw, 34px); margin-bottom: 16px; }
.split-body p { color: var(--gray-600); margin-bottom: 16px; font-size: 16px; }
.check-list { margin: 18px 0 26px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 15px; color: var(--gray-800); }
.check-list .tick { width: 22px; height: 22px; border-radius: 50%; background: var(--green-100); color: var(--green-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

/* ---------- Final CTA banner ---------- */
.final-cta {
  background: var(--green-600);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.final-cta h3 { color: var(--white); font-size: 25px; margin-bottom: 6px; }
.final-cta p { color: rgba(255,255,255,0.85); }
.final-cta .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.final-cta .btn-outline-white { border-color: rgba(255,255,255,0.7); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.65); padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 34px; }
.footer-brand span { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--white); }
.site-footer p { font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; font-size: 14px; }
.footer-col ul li a:hover { color: var(--green-500); }
.footer-col ul li { display: flex; align-items: flex-start; gap: 8px; }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.social-row a:hover { background: var(--green-600); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--green-500); }
.footer-bottom .powered-by { color: rgba(255, 255, 255, 0.5); }
.footer-bottom .powered-by a { color: rgba(255, 255, 255, 0.75); font-weight: 600; }
.footer-bottom .powered-by a:hover { color: var(--green-500); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-800) 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(60,185,106,0.16), transparent 45%);
}
.page-hero .container { position: relative; }
.breadcrumb { color: rgba(255,255,255,0.55); font-size: 13.5px; margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--green-500); }
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 620px; margin: 0 auto; font-size: 17px; }

/* Optional photo variant of the inner-page hero — same navy overlay
   technique as the homepage .hero, applied uniformly (rather than the
   homepage's left-to-right fade) because this hero's text is centered
   rather than left-aligned. Falls back to the plain .page-hero gradient
   above if a page-specific modifier class/photo isn't present. */
.page-hero.page-hero-photo {
  background-color: var(--navy-950);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.page-hero-about {
  background-image: linear-gradient(rgba(7, 19, 38, 0.82), rgba(7, 19, 38, 0.82)), url('../assets/about-hero-bg.jpg');
}
.page-hero-services {
  background-image: linear-gradient(rgba(7, 19, 38, 0.82), rgba(7, 19, 38, 0.82)), url('../assets/services-hero-bg.jpg');
}
.page-hero-cloud {
  background-image: linear-gradient(rgba(7, 19, 38, 0.82), rgba(7, 19, 38, 0.82)), url('../assets/cloud-hero-bg.jpg');
}

/* ---------- Generic content sections ---------- */
.alt-bg { background: var(--gray-50); }
.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 26px; }
.value-card .ic-wrap { background: var(--green-100); color: var(--green-600); }

/* Service detail blocks */
.service-detail {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail:last-child { border-bottom: none; }
.service-detail .ic-wrap { width: 56px; height: 56px; border-radius: 14px; background: var(--navy-900); color: var(--white); display: flex; align-items: center; justify-content: center; }
.service-detail h3 { font-size: 21px; margin-bottom: 8px; }
.service-detail p { color: var(--gray-600); margin-bottom: 14px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-row span { background: var(--gray-100); color: var(--gray-800); font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 999px; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { text-align: left; }
.step .num-badge {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy-900); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; margin-bottom: 16px;
}
.step h4 { font-size: 16.5px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--gray-600); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }
.contact-info-card {
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.contact-info-card h3 { color: var(--white); font-size: 20px; margin-bottom: 20px; }
.contact-info-row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-info-row .ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(60,185,106,0.18); color: var(--green-500); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-row strong { display: block; font-size: 14.5px; color: var(--white); margin-bottom: 2px; }
.contact-info-row span, .contact-info-row a { font-size: 14px; color: rgba(255,255,255,0.7); }
.hours-table { width: 100%; margin-top: 8px; font-size: 13.5px; }
.hours-table tr td { padding: 5px 0; color: rgba(255,255,255,0.7); }
.hours-table tr td:last-child { text-align: right; color: var(--white); font-weight: 600; }
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
/* Hero variant: floats over the photo/gradient hero, so it needs a much
   stronger shadow than the plain contact-page card to lift off the background. */
.hero-form-card { border: none; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06); }
.expect-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }

/* ---------- Privacy page ---------- */
.policy-body h2 { font-size: 22px; margin: 34px 0 12px; }
.policy-body h2:first-child { margin-top: 0; }
.policy-body p { color: var(--gray-600); margin-bottom: 14px; font-size: 15.5px; }
.policy-body ul { margin: 0 0 14px 0; }
.policy-body ul li { color: var(--gray-600); font-size: 15.5px; margin-bottom: 8px; padding-left: 22px; position: relative; }
.policy-body ul li::before { content: "•"; color: var(--green-600); position: absolute; left: 6px; font-weight: 700; }
.policy-note { background: var(--green-100); border: 1px solid rgba(47,158,82,0.25); border-radius: var(--radius-sm); padding: 16px 18px; font-size: 14px; color: var(--green-700); margin-bottom: 30px; }

/* ---------- Thank you page ---------- */
.thankyou-wrap { max-width: 640px; margin: 0 auto; text-align: center; padding: 40px 0; }
.thankyou-icon {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--green-100); color: var(--green-600);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
}
.thankyou-steps { text-align: left; background: var(--gray-50); border-radius: var(--radius-md); padding: 26px 30px; margin: 30px 0; }
.thankyou-steps li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 15px; color: var(--gray-800); }
.thankyou-steps li:last-child { margin-bottom: 0; }
.thankyou-steps .n { width: 24px; height: 24px; border-radius: 50%; background: var(--green-600); color: var(--white); font-size: 12.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ---------- Utility ---------- */
.mt-40 { margin-top: 40px; }
.center-btn { display: flex; justify-content: center; margin-top: 30px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .testimonials-row { grid-template-columns: 1fr; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .expect-list { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-green span.desktop-only { display: none; }
  .topbar-left span:nth-child(3) { display: none; }
  section { padding: 56px 0; }
  .trust-strip { transform: translateY(24px); padding: 22px 16px; }
  .trust-grid { grid-template-columns: 1fr; gap: 18px; }
  .after-hero { padding-top: 80px; }
  .industry-grid, .services-grid, .why-grid, .stats-row, .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cloud-banner, .final-cta { flex-direction: column; text-align: center; justify-content: center; }
  .cloud-banner-text, .final-cta > div:first-child { text-align: center; }
  .cloud-banner-text p { margin: 0 auto; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 10px 24px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 0; font-weight: 600; border-bottom: 1px solid var(--gray-100); color: var(--gray-800); }
.mobile-nav .btn { margin-top: 14px; }

/* ---------- Coming Soon (standalone placeholder page) ---------- */
.coming-soon-page {
  min-height: 100vh;
  background-color: var(--navy-950);
  background-image:
    radial-gradient(circle at 85% 12%, rgba(60, 185, 106, 0.16), transparent 45%),
    radial-gradient(circle at 8% 92%, rgba(60, 185, 106, 0.10), transparent 40%),
    linear-gradient(135deg, rgba(7, 19, 38, 0.92) 0%, rgba(7, 19, 38, 0.86) 55%, rgba(11, 36, 71, 0.80) 100%),
    url('../assets/why-section-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.coming-soon-inner {
  width: 100%;
  max-width: 620px;
  text-align: center;
  color: var(--white);
}
.coming-soon-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.coming-soon-brand img { height: 46px; width: auto; }
.coming-soon-brand .brand-name { font-family: var(--font-head); font-weight: 700; font-size: 23px; color: var(--white); }
.coming-soon-brand .brand-name span { color: var(--green-500); }
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(60, 185, 106, 0.15);
  border: 1px solid rgba(60, 185, 106, 0.4);
  color: var(--green-500);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.coming-soon-page h1 {
  color: var(--white);
  font-size: clamp(28px, 4.4vw, 42px);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.coming-soon-lead {
  color: rgba(255,255,255,0.78);
  font-size: 16.5px;
  max-width: 500px;
  margin: 0 auto 34px;
}
.coming-soon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
  color: var(--gray-800);
  text-align: left;
  margin-bottom: 34px;
}
.notify-success { display: none; text-align: center; padding: 10px 0; }
.notify-success-icon {
  width: 56px; height: 56px;
  background: var(--green-100);
  color: var(--green-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}
.notify-success h3 { font-size: 19px; margin-bottom: 8px; }
.notify-success p { color: var(--gray-600); font-size: 14.5px; }
.coming-soon-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 22px;
  font-size: 14.5px;
}
.coming-soon-contact a, .coming-soon-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
}
.coming-soon-contact a:hover { color: var(--green-500); }
.coming-soon-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}
.coming-soon-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: background 0.15s ease, color 0.15s ease;
}
.coming-soon-social a:hover { background: var(--green-600); color: var(--white); border-color: var(--green-600); }
.coming-soon-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
}
.coming-soon-footer .powered-by a { color: rgba(255,255,255,0.75); font-weight: 600; }
.coming-soon-footer .powered-by a:hover { color: var(--green-500); }
@media (max-width: 560px) {
  .coming-soon-card .form-grid { grid-template-columns: 1fr; }
  .coming-soon-contact { flex-direction: column; gap: 12px; }
}
