/* =========================================================
   Adam Publications — static HTML/CSS rebuild
   Brand: #090C9B (deep blue) · slate #0F172A · Inter
   ========================================================= */

:root {
  --brand: #090C9B;
  --brand-dark: #070a7a;
  --brand-light: #3a3dc4;
  --ink: #0f172a;
  --body: #454f5e;
  --muted: #64748b;
  --line: #e6e8ef;
  --bg-soft: #f5f7fb;
  --gold: #e7a700;
  --sky: #0091ff;
  --coral: #dd5939;
  --white: #ffffff;
  --radius: 14px;
  --radius-pill: 30px;
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, .06);
  --shadow: 0 18px 40px rgba(15, 23, 42, .10);
  --shadow-lg: 0 30px 60px rgba(9, 12, 155, .18);
  --maxw: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: var(--brand-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .6em;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 2.9rem);
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.section {
  padding: 76px 0;
}

.section--soft {
  background: var(--bg-soft);
}

.text-center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: .6rem;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: all .22s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(9, 12, 155, .28);
}

.btn--primary:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(9, 12, 155, .36);
}

.btn--white {
  background: #fff;
  color: var(--brand);
}

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

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn--outline:hover {
  background: var(--brand);
  color: #fff;
}

.btn--sm {
  padding: 11px 22px;
  font-size: .92rem;
}

/* ---------- Top bar ---------- */
.topbar {
  background: #f1f3f7;
  color: #454f5e;
  font-size: .86rem;
  border-bottom: 1px solid var(--line);
}

.topbar .container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
}

.topbar a {
  color: #454f5e;
  font-weight: 500;
}

.topbar a:hover {
  color: var(--brand);
  text-decoration: none;
}

.topbar-left {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.topbar-social a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e2e8f0;
  transition: all 0.2s ease;
}

.topbar-social a:hover {
  background: var(--brand);
}

.topbar-social a:hover svg {
  fill: #fff;
}

.topbar-social svg {
  width: 14px;
  height: 14px;
  fill: #454f5e;
  transition: fill 0.2s ease;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand img {
  height: 48px;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu>li {
  position: relative;
}

.menu>li>a {
  display: block;
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 600;
  font-size: .96rem;
  border-radius: 8px;
}

.menu>li>a:hover,
.menu>li.active>a {
  color: var(--brand);
  background: var(--bg-soft);
}

.has-sub>a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  border-bottom: 0;
  vertical-align: middle;
}

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 262px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
}

.has-sub:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--body);
  font-size: .92rem;
  font-weight: 500;
}

.submenu li a:hover {
  background: var(--bg-soft);
  color: var(--brand);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .btn--primary {
  background: #090C9B;
  color: #fff;
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 0.95rem;
  box-shadow: none;
}

.nav-cta .btn--primary:hover {
  background: #06086b;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .25s;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background-image: url('../img/2025/07/minimum-1024x559.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 120px 0 160px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 12, 155, 0.9) 0%, rgba(81, 81, 130, 0.275) 50%, rgba(87, 79, 109, 0.226) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.hero h1 .rotator {
  color: #ffff00;
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Feature cards (intro) ---------- */
.section-features {
  position: relative;
  z-index: 10;
  margin-top: -120px;
  padding-top: 0;
  padding-bottom: 60px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform .25s ease, box-shadow .25s ease;
  color: #ffffff;
  border: none;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 38px;
  height: 38px;
  stroke: #ffffff;
  fill: none;
}

.feature h3 {
  font-size: 1.15rem;
  margin-bottom: .75rem;
  color: #ffffff;
  font-weight: 700;
}

.feature p {
  font-size: .88rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.feature--gold {
  background: #d89c00;
}

.feature--blue {
  background: #0080ff;
}

.feature--coral {
  background: #dd5939;
}

.feature--green {
  background: #138a36;
}

/* ---------- About split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.split img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.about-soft {
  background: var(--bg-soft);
}

/* ---------- Services grid ---------- */
#services {
  background: #fdf2a9;
  padding-bottom: 76px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.svc-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fffef5;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  padding: 36px 24px 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: transform .25s ease, box-shadow .25s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.svc-card .svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #e7a700;
}

.svc-card .svc-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.svc-card p {
  font-size: .88rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.svc-card .learn {
  font-weight: 600;
  color: #1f2937;
  font-size: .86rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border: 1.5px solid #1f2937;
  border-radius: 30px;
  background: #fff;
  transition: all .2s ease;
  margin-top: auto;
}

.svc-card .learn:hover {
  background: #1f2937;
  color: #fff;
}

.badge-new {
  position: absolute;
  top: 15px;
  left: -30px;
  right: auto;
  background: #000;
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 30px;
  transform: rotate(-45deg);
  text-transform: uppercase;
  width: 110px;
  text-align: center;
}

/* ---------- Stats ---------- */
.section-stats {
  background: #ffffff;
  padding: 60px 0;
}

.stats {
  background: none;
  box-shadow: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.stat-icon {
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat .num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--brand);
}

.stat .lbl {
  font-size: 0.9rem;
  color: #4b5563;
  margin-top: 4px;
}

/* ---------- Why choose us ---------- */
.why-section {
  background: #ffffff;
  padding: 80px 0;
}

.why-container {
  background: #f8fafc;
  border-radius: 24px;
  padding: 60px 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-card {
  background-image: linear-gradient(rgba(9, 12, 155, 0.9), rgba(9, 12, 155, 0.9)), url('../img/2025/07/op.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 10px 25px rgba(9, 12, 155, 0.15);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(9, 12, 155, 0.25);
}

.why-card .why-icon {
  margin-bottom: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card .why-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.why-card p {
  display: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
}

.step .step-no {
  font-size: 2.4rem;
  font-weight: 800;
  color: #e4e6f6;
  line-height: 1;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 1.06rem;
  margin-bottom: .5rem;
}

.step p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- Testimonials ---------- */
.reviews-section {
  background: #ffffff;
  padding: 80px 0;
}

.reviews-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review {
  display: flex;
  flex-direction: column;
}

.review-bubble {
  position: relative;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.review-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #f8fafc transparent;
  display: block;
  width: 0;
}

.review-bubble::before {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 11px 11px 0;
  border-style: solid;
  border-color: #e2e8f0 transparent;
  display: block;
  width: 0;
  z-index: -1;
}

.review-bubble p {
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.review-client {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-client .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e2e8f0;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: 600;
  font-size: 0.85rem;
  overflow: hidden;
}

.review-client .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-client b {
  font-size: 0.95rem;
  color: #0f172a;
  display: block;
}

.review-client span {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 2px;
}

/* Navigation arrows */
.reviews-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s;
  z-index: 10;
  user-select: none;
}

.reviews-nav:hover {
  background: #f8fafc;
  color: var(--brand);
  border-color: var(--brand);
}

.reviews-nav--prev {
  left: 0;
}

.reviews-nav--next {
  right: 0;
}

/* Pagination dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.reviews-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.2s;
}

.reviews-dot.active {
  background: var(--brand);
  width: 16px;
  border-radius: 4px;
}

/* ---------- Contact / form ---------- */
#contact {
  position: relative;
  z-index: 1;
  background-image: linear-gradient(135deg, rgba(9, 12, 155, 0.95), rgba(9, 12, 155, 0.92)), url('../img/2025/07/whisk-3b4f37bade-1-68720bd1b39f6-1024x559.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0 100px;
}

#contact .section-head h2 {
  color: #fff;
}

#contact .section-head p {
  color: rgba(255, 255, 255, 0.8);
}

.lead-form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.lead-form {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  padding: 40px 48px 60px;
  position: relative;
  overflow: visible;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: .88rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}

.field label span {
  color: #ef4444;
  margin-left: 2px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: .95rem;
  color: #fff;
  padding: 12px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

.field select option {
  background: #090C9B;
  color: #fff;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.check input {
  width: 16px;
  height: 16px;
  accent-color: #090C9B;
}

.lead-form button[type="submit"] {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: #090C9B;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 14px 44px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lead-form button[type="submit"]:hover {
  background: #06086b;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.25);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-cards--four {
  grid-template-columns: repeat(4, 1fr);
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.contact-card .ic {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card .ic svg {
  width: 22px;
  height: 22px;
  fill: var(--brand);
}

.contact-card h3 {
  font-size: 1.02rem;
  margin-bottom: .2rem;
}

.contact-card a,
.contact-card p {
  font-size: .92rem;
  color: var(--muted);
  margin: 0;
  word-break: break-word;
}

/* ---------- Reviews / Testimonials ---------- */
.reviews-section {
  background: #ffffff;
  padding: 72px 0 60px;
}

.reviews-container {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.reviews-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 28px;
  box-sizing: border-box;
  text-align: center;
}

/* Bubble — transparent, no card frame */
.review-bubble {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0 0 32px;
  margin-bottom: 0;
  position: relative;
}

.review-bubble::before {
  display: none;
}

.review-bubble p {
  font-size: 0.93rem;
  color: #374151;
  line-height: 1.78;
  margin: 0;
}

/* Client info — stacked & centred */
.review-client {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.review-client .avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f9fafb;
  border: 2px solid #d1d5db;
  color: #9ca3af;
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.review-client b {
  display: block;
  font-size: 0.94rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 3px;
}

.review-client span {
  font-size: 0.82rem;
  color: #6b7280;
}

/* Nav arrows — hidden (all 3 show at once) */
.reviews-nav {
  display: none;
}

/* Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 36px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.reviews-dot.active {
  background: #6b7280;
  transform: scale(1.25);
}


/* ---------- Footer ---------- */
.site-footer {
  background: #ffffff;
  color: #4b5563;
  padding: 64px 0 0;
  border-top: 1px solid #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 38px;
  padding-bottom: 48px;
}

.site-footer h4 {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: .02em;
}

.site-footer img.flogo {
  height: 42px;
  margin-bottom: 18px;
}

.site-footer p {
  font-size: .9rem;
  color: #4b5563;
  line-height: 1.6;
}

.fmenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fmenu li {
  margin-bottom: 10px;
}

.fmenu a {
  color: #4b5563;
  font-size: .9rem;
  transition: all 0.2s ease;
}

.fmenu a:hover {
  color: var(--brand);
  padding-left: 4px;
}

.fcontact p {
  font-size: .9rem;
  margin-bottom: 10px;
  color: #4b5563;
}

.fcontact a {
  color: #4b5563;
  transition: color 0.2s ease;
}

.fcontact a:hover {
  color: var(--brand);
}

.fsocial {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.fsocial a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.fsocial a:hover {
  background: var(--brand);
}

.fsocial a:hover svg {
  fill: #fff;
}

.fsocial svg {
  width: 16px;
  height: 16px;
  fill: #4b5563;
  transition: fill 0.2s ease;
}

.footer-bottom {
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 22px 0;
  text-align: center;
  font-size: .88rem;
  color: #64748b;
}

.footer-bottom a {
  color: #090C9B;
  font-weight: 600;
}

/* ---------- Page banner ---------- */
.page-banner {
  position: relative;
  color: #fff;
  background-image: linear-gradient(135deg, rgba(9, 12, 155, 0.86), rgba(14, 23, 108, 0.86)), url('../img/2025/07/pic-6.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 110px 0 90px;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 15%, rgba(255, 255, 255, .12), transparent 35%);
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: #fff;
  margin-bottom: .5rem;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
}

.page-banner .crumbs {
  color: rgba(255, 255, 255, .88);
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-banner .crumbs a {
  color: #fff;
}

#contact-main {
  padding-top: 0;
}

#contact-main .contact-card {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 28px;
  margin: -80px auto 0;
  max-width: 1160px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 45px 95px rgba(15, 23, 42, 0.18);
  padding: 42px;
}

#contact-main .contact-card__left,
#contact-main .contact-card__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#contact-main .contact-card__left h2,
#contact-main .contact-card__right h2 {
  margin-top: 0;
}

#contact-main .panel-subtitle {
  color: #475569;
  max-width: 600px;
  margin: 0;
  line-height: 1.75;
}

#contact-main .info-list {
  display: grid;
  gap: 18px;
}

#contact-main .info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: flex-start;
}

#contact-main .info-item .icon {
  width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #eef2ff;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#contact-main .info-item .icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

#contact-main .info-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #0f172a;
}

#contact-main .info-item p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

#contact-main .info-item a {
  color: #0f172a;
}

#contact-main .lead-form {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

#contact-main .field label {
  color: #334155;
}

#contact-main .field input,
#contact-main .field select,
#contact-main .field textarea {
  background: #f8fafc;
  color: #0f172a;
  border: 1px solid #d3dce9;
}

#contact-main .field input::placeholder,
#contact-main .field textarea::placeholder {
  color: #94a3b8;
}

#contact-main .field input:focus,
#contact-main .field select:focus,
#contact-main .field textarea:focus {
  background: #fff;
  border-color: rgba(9, 12, 155, 0.22);
  box-shadow: 0 0 0 3px rgba(9, 12, 155, 0.08);
}

#contact-main .btn--block {
  width: 100%;
  justify-content: center;
}

#contact-main .lead-form button[type="submit"] {
  position: static;
  transform: none;
  width: 100%;
  margin-top: 6px;
  border-radius: 999px;
  padding: 16px 22px;
}

#contact-main .form-success {
  display: none;
  color: #0a8f3c;
  margin-top: 16px;
  font-size: .95rem;
}

@media (max-width:860px) {
  .page-banner {
    padding: 90px 0 70px;
  }

  #contact-main .contact-card {
    grid-template-columns: 1fr;
    margin-top: -60px;
    padding: 32px;
  }
}

@media (max-width:560px) {
  #contact-main .contact-card {
    padding: 24px;
    gap: 20px;
  }

  .page-banner {
    padding: 70px 0 55px;
  }
}

/* ---------- Service hero ---------- */
.svc-hero {
  padding: 60px 0;
}

.svc-hero .split {
  gap: 46px;
}

.svc-hero img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.svc-hero .lead {
  font-size: 1.05rem;
  color: var(--body);
}

/* ---------- Article / legal ---------- */
.prose {
  max-width: 860px;
  margin: 0 auto;
}

.prose h2 {
  margin-top: 1.8em;
}

.prose h3 {
  margin-top: 1.4em;
  color: var(--ink);
}

.prose p,
.prose li {
  color: var(--body);
}

.prose strong {
  color: var(--ink);
}

.article-hero img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.post-meta {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 8px;
}

/* blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.post-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.post-card .pc-body,
.post-card .post-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.learn {
  font-weight: 600;
  color: var(--brand);
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.learn:hover {
  color: var(--brand-dark);
}

.post-card .excerpt {
  font-size: .9rem;
  color: var(--muted);
  flex: 1;
  margin: .3rem 0 1rem;
}

.post-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.post-card p {
  font-size: .9rem;
  color: var(--muted);
  flex: 1;
}

/* work list */
.work-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.work-item .post-meta {
  margin-bottom: 2px;
}

.work-item h3 {
  font-size: 1.16rem;
  margin-bottom: .4rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--brand), #2a2bb0);
  color: #fff;
  border-radius: 20px;
  padding: 46px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, .9);
  max-width: 620px;
  margin: 0 auto 24px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #ffffff;
  color: #000000;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 38px;
}

.site-footer h4 {
  color: #1c1c1c;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: .02em;
}

.site-footer img.flogo {
  height: 42px;
  margin-bottom: 18px;
}

.site-footer p {
  font-size: .9rem;
  color: #9aa3b8;
}

.fmenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fmenu li {
  margin-bottom: 10px;
}

.fmenu a {
  color: #c2c8d6;
  font-size: .9rem;
}

.fmenu a:hover {
  color: #fff;
  padding-left: 4px;
}

.fcontact p {
  font-size: .9rem;
  margin-bottom: 10px;
  color: #9aa3b8;
}

.fcontact a {
  color: #c2c8d6;
}

.fcontact a:hover {
  color: #fff;
}

.fsocial {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.fsocial a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fsocial a:hover {
  background: var(--brand);
}

.fsocial svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 48px;
  padding: 22px 0;
  text-align: center;
  font-size: .85rem;
  color: #8b94a8;
}

.footer-bottom a {
  color: #c2c8d6;
}

/* ---------- Floating buttons ---------- */
.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
}

.float-wa:hover {
  color: #fff;
  transform: translateY(-2px);
}

.float-wa svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.to-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 80;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.to-top.show {
  display: flex;
}

.to-top svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* ---------- Map ---------- */
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width:1024px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width:860px) {

  .menu,
  .nav-cta .btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta {
    gap: 0;
  }

  .site-header .menu.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 10px 14px;
    gap: 2px;
  }

  .site-header .menu.open .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    margin: 2px 0 6px 12px;
    padding-left: 8px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-art {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .split .split-img {
    order: -1;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .section {
    padding: 52px 0;
  }

  .features,
  .services-grid,
  .why-grid,
  .reviews-track,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .form-row,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-cards--four {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .topbar-left {
    gap: 14px;
    font-size: .8rem;
  }

  .lead-form {
    padding: 24px;
  }

  .cta-band,
  .stats {
    padding: 32px 20px;
  }

  .float-wa span {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-banner {
    padding: 44px 0;
  }
}

@media (max-width:480px) {
  .hero .container {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .hero-art {
    max-width: 300px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat .num {
    font-size: 2rem;
  }

  .nav-cta .btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .topbar-left {
    flex-direction: column;
    gap: 6px;
    font-size: .75rem;
    width: 100%;
  }

  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 16px;
  }

  .topbar-social {
    align-self: flex-end;
    margin-top: -38px;
  }

  .contact-card {
    padding: 16px;
  }

  .svc-card {
    padding: 20px;
  }

  .feature {
    padding: 20px;
  }

  .step {
    padding: 20px;
  }

  .lead-form {
    padding: 18px;
  }
}

@media (max-width:380px) {
  .hero-art {
    max-width: 220px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* ---------- Services Banner ---------- */
.services-banner {
  background: #fdf2a9;
  /* Soft golden-yellow band matching the screenshot */
  padding: 34px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.services-banner .section-head {
  margin-bottom: 0;
  max-width: 100%;
}

.services-banner .eyebrow {
  color: #0f172a;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 6px;
}

.services-banner h2 {
  font-size: 1.15rem;
  color: #4b5563;
  font-weight: 500;
  margin-bottom: 0;
}

/* Custom Service Page Overrides */
.aw-hero-wrap {
  background: url('../img/2025/07/new.webp') center/cover no-repeat !important;
}

.aw-hero-wrap::before {
  background: rgba(255, 255, 255, 0.75) !important; /* White overlay reducing image opacity to 25% */
}

.why-img-card .overlay {
  background: rgba(9, 12, 155, 0.82) !important; /* Solid blue overlay with adjusted opacity */
}