:root {
  --navy: #111111;
  --navy-dark: #090909;
  --navy-light: #333333;
  --accent-orange: #f2994a;
  --accent-orange-hover: #e08535;
  --blue: #28A9E1;
  --blue-dark: #1a8ec0;
  --blue-light: rgba(40, 169, 225, 0.09);
  --green: #25D366;
  --green-dark: #1cbd51;
  --green-light: #dcf8c6;
  --purple: #833ab4;
  --purple-light: #f3ebfa;
  --text: #333333;
  --text-dark: #111111;
  --muted: #666666;
  --border: #e4e4e4;
  --border-light: #f7f8fa;
  --light-bg: #f7f8fa;
  --light-blue-bg: rgba(40, 169, 225, 0.04);
  --white: #ffffff;
  --transition: all 0.26s ease;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 25px -5px rgba(17, 17, 17, 0.08), 0 8px 10px -6px rgba(17, 17, 17, 0.05);
  --shadow-xl: 0 20px 40px -8px rgba(17, 17, 17, 0.15);
}

/* Base resets & structural styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 75px 0;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

/* Button & Action tokens */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 26px;
  cursor: pointer;
  transition: var(--transition);
  border: 0;
}

.btn.slim-dark {
  background: var(--navy);
  color: var(--white) !important;
  font-size: 13.5px;
  padding: 10px 20px;
}

.btn.slim-dark:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* HEADER STYLE REDESIGN */
.topbar {
  display: none !important; /* Removed topbar as requested */
}

.site-header {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

/* Branding Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.h-logo-svg {
  filter: drop-shadow(0 2px 4px rgba(6, 29, 75, 0.1));
  transition: var(--transition);
}

.brand:hover .h-logo-svg {
  transform: rotate(-3deg) scale(1.05);
}

.brand-text-container {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.5px;
  color: var(--navy);
}

.brand-name b {
  font-weight: 900;
  color: var(--navy);
}

.brand-name em {
  font-style: normal;
  font-weight: 800;
  color: var(--accent-orange);
}

.brand-tagline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-top: 3px;
}

/* Navigation Links */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-light);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dropdown Sub-menu Styling */
.main-nav ul .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  list-style: none;
}

.main-nav ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.main-nav ul .sub-menu li {
  width: 100%;
}

.main-nav ul .sub-menu a {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 0;
  display: block;
  width: 100%;
}

.main-nav ul .sub-menu a:hover {
  background: var(--light-blue-bg);
  color: var(--blue);
}

/* Prevent sub-menus from stretching or displaying inline inside parent ul */
.main-nav ul li .sub-menu ul {
  display: none !important;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--blue);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.nav-arrow {
  transition: var(--transition);
  opacity: 0.7;
}

.main-nav li:hover .nav-arrow {
  transform: translateY(2px);
  color: var(--blue);
}

/* Client Portal Header Action */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.portal-btn {
  background: #E91E63;
  color: var(--white) !important;
  box-shadow: var(--shadow-sm);
  padding: 10px 18px;
  font-size: 13.5px;
}

.portal-btn:hover {
  background: #C2185B;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.portal-svg {
  margin-right: 2px;
}

.menu-toggle {
  display: none;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: var(--navy);
  cursor: pointer;
}

/* SECTION 1: HERO CONTAINER */
.hero-section {
  background: radial-gradient(100% 100% at 90% 10%, #fbfdff 0%, #f4f8ff 100%);
  padding: 80px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid-new {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.hero-left-content {
  display: flex;
  flex-direction: column;
}

.pill-new {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  background: rgba(11, 124, 255, 0.08);
  border: 1px solid rgba(11, 124, 255, 0.2);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-heading {
  font-size: 46px;
  line-height: 1.15;
  color: var(--navy-dark);
  margin-bottom: 20px;
}

.hero-heading span.highlight-orange {
  color: var(--accent-orange);
}

.hero-desc {
  font-size: 16.5px;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-checklists {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 35px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy-light);
}

.green-check-svg {
  background: rgba(37, 211, 102, 0.12);
  border-radius: 50%;
  padding: 2px;
}

.hero-actions-new {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.primary-consult {
  background: var(--navy);
  color: var(--white) !important;
  box-shadow: 0 10px 20px rgba(6, 29, 75, 0.15);
}

.primary-consult:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 124, 255, 0.25);
}

.whatsapp-consult {
  background: var(--white);
  color: var(--green) !important;
  border: 2px solid var(--green);
  box-shadow: var(--shadow-sm);
}

.whatsapp-consult:hover {
  background: var(--green);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-icon {
  flex-shrink: 0;
}

.hero-ratings {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.ratings-text {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stars-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  color: #ffb703;
  font-size: 20px;
  letter-spacing: 2px;
}

.score {
  font-size: 13.5px;
  color: var(--navy-light);
}

.score b {
  font-weight: 800;
  color: var(--navy-dark);
}

/* WIDGET CHAT ASSISTANT BOX */
.hero-right-widget {
  display: flex;
  justify-content: flex-end;
}

.ai-box-premium {
  background: var(--white);
  width: 100%;
  max-width: 410px;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ai-head-new {
  background: var(--navy);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--navy-light);
  color: var(--white);
}

.ai-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-avatar {
  font-size: 26px;
}

.ai-title-row h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.powered-by {
  font-size: 10.5px;
  font-weight: 700;
  color: #cbd9f4;
  margin-top: 1px;
}

.gemini-grad {
  background: linear-gradient(135deg, #a5b4fc, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.close-chat {
  font-size: 15px;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
}

.close-chat:hover {
  opacity: 1;
}

.ai-messages-container {
  padding: 22px;
  flex-grow: 1;
  background: var(--white);
  min-height: 250px;
  max-height: 310px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.msg-wrapper {
  display: flex;
  flex-direction: column;
}

.msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  word-wrap: break-word;
}

.msg.ai-message {
  background: var(--light-bg);
  color: var(--text-dark);
  border-bottom-left-radius: 3px;
  align-self: flex-start;
  border: 1px solid var(--border-light);
}

.msg.user-message {
  background: var(--blue-light);
  color: var(--blue-dark);
  font-weight: 600;
  border-bottom-right-radius: 3px;
  align-self: flex-end;
  margin-left: auto;
}

.msg.typing {
  background: var(--light-bg);
  font-style: italic;
  color: var(--muted);
  border-bottom-left-radius: 3px;
}

.quick-prompts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.prompt-btn {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-light);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

.prompt-btn:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue-dark);
  transform: translateX(4px);
}

.ai-form-new {
  display: flex;
  align-items: center;
  padding: 14px 22px;
  border-top: 1px solid var(--border-light);
  background: var(--white);
  gap: 12px;
}

.ai-form-new input {
  flex-grow: 1;
  border: 0;
  font-family: inherit;
  font-size: 13.5px;
  outline: none;
  color: var(--text-dark);
  font-weight: 600;
}

.submit-chat-btn {
  background: none;
  border: 0;
  color: var(--blue);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-chat-btn:hover {
  color: var(--blue-dark);
  transform: scale(1.1);
}

/* SECTION 2: SERVICES SECTION REDESIGN */
.section-header-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 45px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
}

.kicker-blue {
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title-new {
  font-size: 32px;
  color: var(--navy-dark);
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
}

.service-card-premium {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 18px 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 124, 255, 0.15);
}

.card-icon-round {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
}

/* Icon thematic colors */
.card-icon-round.green-theme { background: rgba(37, 211, 102, 0.12); color: var(--green-dark); }
.card-icon-round.blue-theme { background: rgba(11, 124, 255, 0.08); color: var(--blue); }
.card-icon-round.purple-theme { background: rgba(131, 58, 180, 0.08); color: var(--purple); }
.card-icon-round.orange-theme { background: rgba(242, 153, 74, 0.1); color: var(--accent-orange); }
.card-icon-round.cyan-theme { background: rgba(19, 184, 255, 0.1); color: #0099cc; }
.card-icon-round.red-theme { background: rgba(235, 87, 87, 0.08); color: #eb5757; }
.card-icon-round.gold-theme { background: rgba(255, 183, 3, 0.12); color: #d48f00; }

.service-card-premium h3 {
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--navy-dark);
}

.service-card-premium p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 12px;
  flex-grow: 1;
}

.learn-more-link {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.service-card-premium:hover .learn-more-link {
  color: var(--blue-dark);
  transform: translateX(4px);
}

/* SECTION 3: WHY CHOOSE US BAND (Navy banner) */
.why-choose-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 55px 0;
  border-bottom: 4px solid var(--accent-orange);
}

.band-title {
  color: var(--accent-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 35px;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.band-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.band-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  margin-bottom: 15px;
  transition: var(--transition);
}

.band-item:hover .band-icon {
  background: var(--accent-orange);
  color: var(--navy);
  transform: scale(1.1);
}

.band-item h4 {
  color: var(--white);
  font-size: 14.5px;
  font-weight: 800;
  margin-bottom: 8px;
}

.band-item p {
  font-size: 11.5px;
  color: #cbd9f4;
  line-height: 1.5;
}

/* SECTION 4: HOW IT WORKS */
.title-center {
  text-align: center;
  margin-bottom: 50px;
}

.how-it-works-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 20px;
}

.flow-connector-line {
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--purple) 35%, var(--accent-orange) 70%, var(--green) 100%);
  z-index: 1;
  opacity: 0.25;
}

.flow-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}

.step-icon.blue-grad-bg { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); }
.step-icon.purple-grad-bg { background: linear-gradient(135deg, var(--purple) 0%, #6366f1 100%); }
.step-icon.orange-grad-bg { background: linear-gradient(135deg, var(--accent-orange) 0%, #e87a24 100%); }
.step-icon.green-grad-bg { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); }

.step-num {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 22px;
  height: 22px;
  background: var(--navy);
  border: 2px solid var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.flow-step:hover .step-icon {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.flow-step h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--navy-dark);
}

.flow-step p {
  font-size: 13px;
  color: var(--muted);
  max-width: 240px;
  margin: 0 auto;
}

/* SECTION 5: WIDE INDIGO AI SHOWCASE */
.ai-showcase-section {
  background: var(--light-bg);
}

.ai-showcase-card {
  background: linear-gradient(145deg, #091c3d 0%, #06122b 100%);
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.ai-showcase-card::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 124, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-left {
  color: var(--white);
}

.showcase-left h2 {
  color: var(--white);
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.sub-powered {
  font-size: 13.5px;
  color: var(--accent-orange);
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.showcase-left p {
  font-size: 14.5px;
  color: #cbd9f4;
  line-height: 1.6;
  margin-bottom: 25px;
}

.showcase-list {
  list-style: none;
  margin-bottom: 30px;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.bullet-check {
  color: var(--accent-orange);
  font-weight: 900;
}

.white-btn {
  background: var(--white);
  color: var(--navy-dark) !important;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.white-btn:hover {
  background: var(--accent-orange);
  color: var(--navy-dark) !important;
  transform: translateY(-2px);
}

/* Chat mockup window styling */
.showcase-center {
  display: flex;
  justify-content: center;
}

.chat-mockup-window {
  background: var(--white);
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

.mockup-header {
  background: #f1f5f9;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border-light);
}

.mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.mock-dot.red { background: #ff5f56; }
.mock-dot.yellow { background: #ffbd2e; }
.mock-dot.green { background: #27c93f; }

.mock-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  margin-left: 6px;
  text-transform: uppercase;
}

.mockup-body {
  padding: 18px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.5;
}

.mock-bubble.user-msg {
  background: var(--blue-light);
  color: var(--blue-dark);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  font-weight: 600;
}

.mock-bubble.ai-reply {
  background: var(--light-bg);
  color: var(--text-dark);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border: 1px solid var(--border-light);
}

.mock-bubble.ai-reply ul {
  padding-left: 15px;
  margin: 6px 0;
}

.small-text-mock {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 8px;
}

.mockup-input-bar {
  border: 1px solid var(--blue);
  background: var(--light-bg);
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.arrow-mock {
  color: var(--blue);
  font-weight: 900;
}

/* Right mini features list */
.showcase-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item-mini {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  transition: var(--transition);
}

.feature-item-mini:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.f-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(242, 153, 74, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.feature-item-mini h5 {
  color: var(--white);
  font-size: 13.5px;
  margin-bottom: 3px;
}

.feature-item-mini p {
  font-size: 11.5px;
  color: #a3b8cc;
}

/* SECTION 6: KEY STATS RIBBON */
.stats-ribbon-section {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 35px 0;
}

.stats-grid-new {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.stat-box-new {
  text-align: center;
  border-right: 1px solid var(--border-light);
}

.stat-box-new:last-child {
  border-right: 0;
}

.stat-box-new b {
  font-size: 32px;
  font-weight: 900;
  color: var(--navy-dark);
  display: block;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-box-new span {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SECTION 7: TESTIMONIALS SECTION */
.testimonials-section {
  background: radial-gradient(circle at 10% 90%, #fbfdff 0%, #f7faff 100%);
}

.testimonials-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial-card-new {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testimonial-card-new.animate-card {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-lg);
}

.testimonial-card-new:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blue-light {
  background: var(--blue-light);
  color: var(--blue);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.stars-gold {
  color: #ffb703;
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 15px;
}

.quote-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.author-block {
  display: flex;
  flex-direction: column;
}

.author-block b {
  color: var(--navy-dark);
  font-size: 14.5px;
  font-weight: 850;
}

.author-block span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--blue);
}

/* SECTION 8: PRACTICAL TRAINING / COURSES SECTION */
.courses-promo-section {
  background: var(--white);
  border-top: 1px solid var(--border-light);
}

.promo-container {
  display: grid;
  grid-template-columns: 1fr 0.95fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.kicker-green {
  color: var(--green-dark);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.promo-left h2 {
  font-size: 34px;
  color: var(--navy-dark);
  margin-bottom: 5px;
}

.promo-left h4 {
  font-size: 17.5px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 18px;
}

.promo-left p {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 25px;
}

.promo-checklist {
  list-style: none;
  margin-bottom: 30px;
}

.promo-checklist li {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-light);
  margin-bottom: 12px;
}

.green-btn {
  background: var(--green-dark);
  color: var(--white) !important;
  box-shadow: 0 10px 20px rgba(43, 147, 72, 0.15);
}

.green-btn:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(43, 147, 72, 0.25);
}

/* Middle photo frame */
.promo-photo-card {
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  outline: 1px solid var(--border);
}

/* Right side courses values stack */
.promo-right-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.val-card {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition);
}

.val-card:hover {
  background: var(--white);
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.val-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--green-dark);
  opacity: 0.6;
}

.val-card h5 {
  font-size: 14.5px;
  color: var(--navy-dark);
  margin-bottom: 2px;
}

.val-card p {
  font-size: 12px;
  color: var(--muted);
}

/* SECTION 9: RESOURCES & FAQS SPLIT */
.resources-faqs-split {
  background: var(--light-bg);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.column-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 15px;
}

.column-header-row h3 {
  font-size: 20px;
  color: var(--navy-dark);
  margin-top: 4px;
}

.view-link {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
}

.view-link:hover {
  color: var(--blue-dark);
}

/* Small resource card styles */
.resources-vertical-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resource-card-small {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.resource-card-small:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}

.res-thumb {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.res-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-tag {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.category-tag.blue-tag { background: var(--blue-light); color: var(--blue-dark); }
.category-tag.orange-tag { background: rgba(242,153,74,0.12); color: var(--accent-orange-hover); }
.category-tag.purple-tag { background: var(--purple-light); color: var(--purple); }

.resource-card-small h4 {
  font-size: 15px;
  margin-bottom: 5px;
  color: var(--navy-dark);
  line-height: 1.35;
}

.resource-card-small h4 a:hover {
  color: var(--blue);
}

.resource-card-small p {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 6px;
}

.res-date {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

/* Accordion FAQs Panel */
.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-weight: 800;
  font-size: 14.5px;
  color: var(--navy-light);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--blue);
}

.faq-toggle-icon {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  border-top: 0 solid var(--border-light);
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* Accordion Active States */
.faq-item.active {
  border-color: var(--blue);
}

.faq-item.active .faq-question {
  color: var(--blue-dark);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--accent-orange);
}

.faq-item.active .faq-answer {
  max-height: 250px; /* arbitrary height to slide down */
  padding: 0 24px 20px 24px;
  border-top: 1px solid var(--border-light);
}

/* SECTION 10: FINAL CTA BANNER (Footer Banner) */
.home-final-cta-section {
  background: var(--white);
  padding: 50px 0;
}

.cta-banner-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 20px;
  padding: 45px 50px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 5px solid var(--accent-orange);
}

.cta-left {
  color: var(--white);
  max-width: 580px;
}

.cta-left h2 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-left p {
  font-size: 14.5px;
  color: #cbd9f4;
  line-height: 1.6;
}

.cta-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.whatsapp-cta-btn {
  background: var(--green);
  color: var(--white) !important;
  box-shadow: 0 6px 12px rgba(37, 211, 102, 0.15);
}

.whatsapp-cta-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.book-cta-btn {
  background: var(--accent-orange);
  color: var(--navy-dark) !important;
  box-shadow: 0 6px 12px rgba(242, 153, 74, 0.15);
}

.book-cta-btn:hover {
  background: var(--accent-orange-hover);
  transform: translateY(-2px);
}

.phone-inline {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 20px;
}

.phone-label {
  font-size: 11.5px;
  color: #a3b8cc;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.phone-val {
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
}

.phone-val:hover {
  color: var(--accent-orange);
}

/* FOOTER STYLING REDESIGN */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 70px 0 20px 0;
  border-top: 1px solid var(--navy-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr 1.3fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent-orange);
}

.footer-col a {
  display: block;
  color: #cbd9f4;
  font-size: 13.5px;
  margin-bottom: 12px;
}

.footer-col a:hover {
  color: var(--accent-orange);
  transform: translateX(3px);
}

/* Brand col details */
.brand-col .foot-brand {
  margin-bottom: 20px;
  display: inline-flex;
}

.brand-desc {
  font-size: 13px;
  color: #cbd9f4;
  line-height: 1.6;
  margin-bottom: 22px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent-orange);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

/* Contact block items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #cbd9f4;
  margin-bottom: 15px;
  line-height: 1.4;
}

.contact-item .icon {
  color: var(--accent-orange);
  font-weight: 800;
  font-size: 14px;
}

.contact-item a {
  margin-bottom: 0;
  display: inline;
}

.contact-item a:hover {
  transform: none;
}

/* Copyright block */
.copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  color: #cbd9f4;
  font-size: 12.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copy span {
  font-weight: 700;
  color: var(--accent-orange);
}

/* RESPONSIVENESS AND MOBILE ADAPTATIONS */
@media (max-width: 1100px) {
  .services-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .hero-grid-new {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right-widget {
    justify-content: center;
  }
  .ai-box-premium {
    max-width: 100%;
  }
  .ai-showcase-card {
    grid-template-columns: 1fr 1fr;
  }
  .showcase-right {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  .promo-container {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .promo-right-values {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
  .footer-col:last-child {
    grid-column: 1 / -1;
    margin-top: 10px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 55px 0;
  }
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .band-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .how-it-works-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .flow-connector-line {
    display: none;
  }
  .split-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .testimonials-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-banner-dark {
    flex-direction: column;
    text-align: center;
    padding: 35px;
  }
  .cta-actions-row {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 650px) {
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .hero-heading {
    font-size: 32px;
  }
  .hero-actions-new {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions-new .btn {
    width: 100%;
  }
  .section-header-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .section-header-split .btn {
    width: 100%;
  }
  .band-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-it-works-flow {
    grid-template-columns: 1fr;
  }
  .ai-showcase-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  .showcase-right {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-box-new {
    border-right: 0;
  }
  .testimonials-grid-new {
    grid-template-columns: 1fr;
  }
  .promo-container {
    grid-template-columns: 1fr;
  }
  .promo-middle-image {
    display: none;
  }
  .promo-right-values {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .copy {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .phone-inline {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 15px;
    width: 100%;
  }
}

/* Sub-page helpers */
.inner-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 55px 0;
  text-align: center;
}

.inner-hero h1 {
  color: var(--white);
  font-size: 34px;
}

.inner-hero p {
  color: #cbd9f4;
  margin-top: 8px;
}

/* Mobile Active Menu */
.main-nav.active {
  display: block !important;
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border-bottom: 2px solid var(--blue);
}

.main-nav.active ul {
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.main-nav.active a {
  padding: 10px 0;
  border-bottom: 1.5px solid var(--border-light);
}

.main-nav.active a.active::after {
  display: none;
}

/* =============================================
   QUICKBOOKS SERVICE PAGE STYLES
   ============================================= */

/* Breadcrumb */
.qb-breadcrumb {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}
.qb-breadcrumb a { color: var(--muted); }
.qb-breadcrumb a:hover { color: var(--blue); }
.qb-breadcrumb span { color: var(--navy); }

/* Hero Section */
.qb-hero-section {
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
  padding: 55px 0 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.qb-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.qb-hero-heading {
  font-size: 36px;
  line-height: 1.2;
  color: var(--navy-dark);
  margin-bottom: 16px;
}
.qb-blue { color: var(--blue); }
.qb-orange { color: var(--accent-orange); }
.qb-green-txt { color: var(--green-dark); }

.qb-hero-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 520px;
}
.qb-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.qb-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.qb-badge span { font-size: 18px; }
.qb-badge b { display: block; font-size: 12px; font-weight: 800; color: var(--navy-dark); line-height: 1.2; }
.qb-badge small { font-size: 11px; color: var(--muted); }

.qb-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.qb-book-btn {
  background: var(--navy);
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(6,29,75,0.15);
}
.qb-book-btn:hover { background: var(--blue); transform: translateY(-2px); }
.qb-wa-btn {
  background: var(--green);
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(37,211,102,0.15);
}
.qb-wa-btn:hover { background: var(--green-dark); transform: translateY(-2px); }

/* Hero Right */
.qb-hero-right { position: relative; }
.qb-hero-img-wrap { position: relative; }
.qb-hero-img {
  width: 100%;
  border-radius: 16px 16px 0 0;
  display: block;
  object-fit: cover;
  max-height: 380px;
}
.qb-why-box {
  position: absolute;
  top: 20px;
  right: -10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 20px;
  width: 230px;
  box-shadow: var(--shadow-xl);
}
.qb-why-box h4 {
  color: var(--white);
  font-size: 12.5px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.4;
}
.qb-why-list { list-style: none; }
.qb-why-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #cbd9f4;
  margin-bottom: 8px;
}
.chk-svg.green { color: var(--green); }
.qb-priority-banner {
  background: var(--accent-orange);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 800;
  border-radius: 6px;
  padding: 8px 12px;
  margin-top: 12px;
  text-align: center;
}

/* QB Services Section overrides */
.qb-services-section { background: var(--white); }
.qb-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 25px;
}
.qb-svc-card {
  padding: 22px 14px;
  text-align: center;
  align-items: center;
}
.qb-svc-card .card-icon-round {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 22px;
  margin: 0 auto 14px auto;
}
.qb-svc-card h3 { font-size: 13px; margin-bottom: 8px; }
.qb-svc-card p { font-size: 11.5px; }

/* Process Flow */
.qb-process-section { background: var(--light-bg); }
.qb-process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 35px;
}

/* Triple Column Section */
.qb-triple-section { background: var(--white); padding: 55px 0; }
.qb-triple-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  gap: 30px;
  align-items: start;
}

/* ICT Column (left) */
.ict-col { display: flex; flex-direction: column; gap: 22px; }
.ict-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ict-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--white);
}
.ict-item h4 { font-size: 14px; margin-bottom: 4px; color: var(--navy-dark); }
.ict-item p { font-size: 12.5px; color: var(--muted); }

/* Why Column (center dark card) */
.why-col {
  background: var(--navy);
  border-radius: 14px;
  padding: 28px;
  color: var(--white);
}
.why-col-title {
  color: var(--accent-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  margin-bottom: 22px;
  text-align: center;
}
.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.wf-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.wf-icon.orange-theme { background: rgba(242,153,74,0.2); }
.wf-icon.blue-theme { background: rgba(11,124,255,0.2); }
.wf-icon.green-theme { background: rgba(37,211,102,0.2); }
.wf-icon.purple-theme { background: rgba(131,58,180,0.2); }
.wf-icon.cyan-theme { background: rgba(19,184,255,0.2); }
.why-feat b { font-size: 12px; color: var(--white); display: block; margin-bottom: 3px; }
.why-feat p { font-size: 11px; color: #a3b8cc; margin: 0; }

/* What You Get Column (right) */
.what-col { display: flex; flex-direction: column; gap: 10px; }
.what-you-get-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 15px; }
.what-you-get-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-light);
}

/* FAQ + Sidebar Layout */
.qb-faq-section { background: var(--light-bg); }
.qb-faq-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.qb-faq-col { display: flex; flex-direction: column; gap: 14px; }
.qb-faq-col .faq-accordion-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.qb-sidebar-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.qb-sidebar-box h3 { font-size: 18px; margin-bottom: 10px; color: var(--navy-dark); }
.qb-sidebar-box p { font-size: 13px; color: var(--muted); margin-bottom: 8px; }

/* Bottom CTA Banner */
.qb-bottom-cta-section {
  background: var(--navy);
  padding: 32px 0;
}
.qb-bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.qb-cta-text h2 { color: var(--white); font-size: 20px; margin-bottom: 4px; }
.qb-cta-text p { color: #cbd9f4; font-size: 13px; }
.qb-cta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.qb-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #cbd9f4;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 20px;
}
.qb-cta-orange-btn {
  background: var(--accent-orange);
  color: var(--navy-dark) !important;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}
.qb-cta-orange-btn:hover { background: var(--accent-orange-hover); transform: translateY(-2px); }

/* QB Responsive */
@media (max-width: 1100px) {
  .qb-services-grid { grid-template-columns: repeat(3, 1fr); }
  .qb-triple-grid { grid-template-columns: 1fr; }
  .why-col { order: -1; }
  .qb-faq-layout { grid-template-columns: 1fr; }
  .qb-faq-col .faq-accordion-container { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .qb-hero-grid { grid-template-columns: 1fr; }
  .qb-why-box { position: static; width: 100%; margin-top: 16px; border-radius: 12px; }
  .qb-hero-img { border-radius: 16px; }
  .qb-process-flow { grid-template-columns: repeat(3, 1fr); }
  .qb-bottom-cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 650px) {
  .qb-services-grid { grid-template-columns: repeat(2, 1fr); }
  .qb-process-flow { grid-template-columns: repeat(2, 1fr); }
  .why-features-grid { grid-template-columns: 1fr; }
  .qb-hero-actions { flex-direction: column; }
  .qb-hero-actions .btn { width: 100%; justify-content: center; }
}

/* About Page CSS */
.about-hero-section {
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 55px;
  align-items: center;
}
.pill-gold {
  display: inline-flex;
  align-items: center;
  background: rgba(242,153,74,0.1);
  border: 1px solid rgba(242,153,74,0.3);
  color: var(--accent-orange-hover);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.about-hero-heading {
  font-size: 40px;
  line-height: 1.15;
  color: var(--navy-dark);
  margin-bottom: 18px;
}
.about-hero-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.about-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-light);
}
.badge-icon { font-size: 20px; }
.hero-right-photo-wrap { position: relative; }
.about-hero-photo-frame {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  background-size: cover;
  background-position: center top;
  box-shadow: var(--shadow-xl);
}
.powered-gemini-box {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 18px 20px;
  width: 230px;
  box-shadow: var(--shadow-xl);
}
.gemini-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #a3b8cc;
  margin-bottom: 8px;
}
.gemini-badge {
  background: linear-gradient(135deg,#a5b4fc,#818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 13px;
}
.powered-gemini-box p { font-size: 12px; color: #cbd9f4; line-height: 1.5; margin-bottom: 10px; }
.gemini-link { font-size: 11.5px; font-weight: 800; color: var(--accent-orange); }
.gemini-link:hover { color: var(--white); }

/* Who We Are */
.who-we-are-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 55px;
  align-items: center;
}
.office-photo-card {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.brand-overlay-logo {
  background: rgba(6,29,75,0.85);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.overlay-brand-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.overlay-brand-text b { color: var(--accent-orange); }
.kicker-orange {
  color: var(--accent-orange-hover);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.who-title { font-size: 30px; color: var(--navy-dark); margin-bottom: 15px; }
.who-p { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 14px; }
.about-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.chk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-light);
}
.chk-svg { color: var(--green-dark); flex-shrink: 0; }

/* Mission Vision Values */
.values-section { background: var(--light-bg); }
.values-card-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}
.value-column {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-column:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.col-icon-round {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.blue-bg-circle { background: rgba(11,124,255,0.1); color: var(--blue); }
.green-bg-circle { background: rgba(37,211,102,0.12); color: var(--green-dark); }
.purple-bg-circle { background: rgba(131,58,180,0.1); color: var(--purple); }
.value-column h3 { font-size: 18px; margin-bottom: 12px; color: var(--navy-dark); }
.value-column p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.values-list-bullets { list-style: none; }
.values-list-bullets li {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.values-list-bullets li::before { content: "•"; color: var(--purple); font-weight: 900; font-size: 16px; }

/* Team Section */
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 35px;
}
.team-card-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-photo-card {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center top;
}
.team-details { padding: 16px; }
.team-details h4 { font-size: 14.5px; color: var(--navy-dark); margin-bottom: 4px; }
.team-role { font-size: 11.5px; font-weight: 800; color: var(--blue); display: block; margin-bottom: 10px; }
.team-bio { font-size: 11.5px; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }
.team-socials { display: flex; gap: 8px; }
.soc-link {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-light);
  transition: var(--transition);
}
.soc-link:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* Dark navy stats band for about page */
.dark-navy-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 45px 0;
  border-bottom: 4px solid var(--accent-orange);
}
.dark-navy-band .stats-grid-new { margin-top: 30px; }
.dark-navy-band .stat-box-new b { color: var(--white); }
.dark-navy-band .stat-box-new span { color: #a3b8cc; }
.dark-navy-band .stat-box-new { border-right-color: rgba(255,255,255,0.1); }
.stats-band-title {
  text-align: center;
  color: var(--accent-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
}
.stat-num-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 5px;
}
.stat-gold-icon { color: var(--accent-orange); }

/* About Page CTA */
.cta-left-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta-laptop-wrapper { flex-shrink: 0; }
.cta-laptop-screen {
  width: 70px;
  height: 50px;
  background: var(--navy-light);
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.15);
}
.cta-laptop-base {
  width: 90px;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 0 0 4px 4px;
  margin: 0 auto;
}
.cta-text-content h2 { color: var(--white); font-size: 18px; max-width: 300px; }
.cta-middle-checklist { display: flex; flex-direction: column; gap: 10px; }
.cta-chk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #cbd9f4;
}
.cta-chk svg { color: var(--green); flex-shrink: 0; }

/* About responsive */
@media (max-width: 1100px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .powered-gemini-box { position: static; width: 100%; margin-top: 20px; }
  .who-we-are-grid { grid-template-columns: 1fr; }
  .team-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .values-card-split { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 650px) {
  .about-hero-heading { font-size: 28px; }
  .values-card-split { grid-template-columns: 1fr; }
  .team-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-checklist-grid { grid-template-columns: 1fr; }
  .cta-banner-dark { flex-direction: column; }
  .cta-left-row { flex-direction: column; text-align: center; }
}

/* =============================================
   TAX DISPUTES & APPEALS PAGE STYLES
   ============================================= */

/* Hero */
.td-hero-section {
  background: linear-gradient(135deg, #0b1e45 0%, #061230 100%);
  padding: 55px 0 0 0;
  overflow: hidden;
}
.td-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 45px;
  align-items: center;
}
.td-hero-heading {
  font-size: 38px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 14px;
}
.td-hero-desc {
  font-size: 15px;
  color: #a3b8cc;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 480px;
}
.td-hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.td-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  color: #cbd9f4;
  text-align: center;
  min-width: 68px;
}
.td-badge span { font-size: 22px; }
.td-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Right */
.td-hero-img-wrap { position: relative; }
.td-hero-img {
  width: 100%;
  border-radius: 16px 16px 0 0;
  display: block;
  object-fit: cover;
  max-height: 380px;
}
.td-fight-box {
  position: absolute;
  top: 15px;
  right: -5px;
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 18px;
  width: 220px;
  box-shadow: var(--shadow-xl);
}
.td-fight-title {
  font-size: 11px;
  font-weight: 900;
  color: var(--accent-orange);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Overview Section */
.td-overview-section { background: var(--white); }
.td-overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.td-overview-title { font-size: 28px; color: var(--navy-dark); margin: 8px 0 16px; }
.td-overview-p { font-size: 13.5px; color: var(--text); line-height: 1.65; margin-bottom: 14px; }
.td-goal-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--light-blue-bg);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  padding: 16px 18px;
  margin-top: 18px;
}
.td-goal-icon { font-size: 24px; flex-shrink: 0; }
.td-goal-box b { font-size: 13.5px; color: var(--navy-dark); display: block; margin-bottom: 4px; }
.td-goal-box p { font-size: 13px; color: var(--muted); margin: 0; }

/* Disputes list */
.td-disputes-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.td-disputes-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-light);
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 11px 14px;
  transition: var(--transition);
}
.td-disputes-list li:hover {
  background: var(--blue-light);
  border-color: rgba(11,124,255,0.2);
  transform: translateX(4px);
}
.td-dispute-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.td-dispute-icon.blue-theme { background: rgba(11,124,255,0.1); }
.td-dispute-icon.orange-theme { background: rgba(242,153,74,0.12); }
.td-dispute-icon.purple-theme { background: rgba(131,58,180,0.1); }
.td-dispute-icon.cyan-theme { background: rgba(19,184,255,0.1); }
.td-dispute-icon.red-theme { background: rgba(235,87,87,0.1); }
.td-dispute-icon.gold-theme { background: rgba(255,183,3,0.12); }
.td-dispute-icon.green-theme { background: rgba(37,211,102,0.1); }

/* 6-step process flow */
.td-process-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 35px;
}

/* Triple column — reuse qb-triple-grid with td override */
.td-triple-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.5fr 0.75fr;
  gap: 28px;
  align-items: start;
}
.td-left-col, .td-right-col { display: flex; flex-direction: column; gap: 8px; }
.td-included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}
.td-included-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-light);
}

/* Bottom CTA band */
.td-bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}
.td-cta-left h2 { color: var(--white); font-size: 20px; margin-bottom: 4px; }
.td-cta-left p { color: #cbd9f4; font-size: 13px; }

/* Tax Disputes Responsive */
@media (max-width: 1100px) {
  .td-hero-grid { grid-template-columns: 1fr; }
  .td-fight-box { position: static; width: 100%; margin-top: 16px; }
  .td-overview-grid { grid-template-columns: 1fr; gap: 35px; }
  .td-process-flow { grid-template-columns: repeat(3, 1fr); }
  .td-triple-grid { grid-template-columns: 1fr; }
  .td-bottom-cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 650px) {
  .td-hero-heading { font-size: 28px; }
  .td-process-flow { grid-template-columns: repeat(2, 1fr); }
  .td-hero-actions { flex-direction: column; }
  .td-hero-actions .btn { width: 100%; justify-content: center; }
}

/* =============================================
   TAX COMPLIANCE (PAYE, VAT & WHT) PAGE STYLES
   ============================================= */
.tc-hero-section {
  background: linear-gradient(135deg, #0e2759 0%, #061230 100%);
}
.tc-hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
}
.tc-hero-badges .td-badge {
  min-width: 80px;
}
.tc-process-flow {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 900px) {
  .tc-process-flow {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 650px) {
  .tc-process-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   BOOKKEEPING & ACCOUNTING PAGE STYLES
   ============================================= */
.qb-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.service-card-premium {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.service-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.card-icon-round {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.card-icon-round.blue-theme { background: rgba(40,169,225,0.09); color: var(--blue); }
.card-icon-round.purple-theme { background: rgba(131,58,180,0.1); color: var(--purple); }
.card-icon-round.green-theme { background: rgba(37,211,102,0.1); color: var(--green-dark); }
.card-icon-round.orange-theme { background: rgba(242,153,74,0.12); color: var(--accent-orange); }
.card-icon-round.cyan-theme { background: rgba(40,169,225,0.09); color: var(--blue); }
.card-icon-round.gold-theme { background: rgba(255,183,3,0.12); color: var(--accent-orange); }

.service-card-premium h3 {
  font-size: 15px;
  color: var(--navy-dark);
  font-weight: 700;
  margin: 0;
}
.service-card-premium p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}
.service-card-premium .learn-more-link {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
}

@media (max-width: 1200px) {
  .qb-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .qb-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .qb-services-grid {
    grid-template-columns: 1fr;
  }
}