/* ============================================================
   Creative Kiwiz — global styles
   ============================================================ */

:root {
  --navy: #10214a;
  --navy-deep: #0b1733;
  --orange: #fe4c1c;
  --orange-dark: #ef3d0c;
  --blue: #1f7ae0;
  --blue-tile: #e9f1fd;
  --body: #7a869f;
  --lavender: #f2f5fc;
  --font-head: 'Oswald', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --container: 1200px;
  --gutter: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.55em;
}

h2 {
  font-size: clamp(28px, 4.2vw, 55px);
  font-weight: 500;
}

p { margin: 0 0 1.1em; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Decorative blobs ---------- */
.blob {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  width: 420px;
  opacity: 0.85;
}
.blob-right { right: -90px; top: 8%; }
.blob-low { top: 30%; }

/* ---------- Sub-heading (orange eyebrow with spark) ---------- */
.sub-heading {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.sub-heading span { position: relative; display: inline-block; }
.sub-heading span::before,
.sub-heading span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}
.sub-heading span::before { left: -16px; }
.sub-heading span::after { right: -16px; display: none; }
.center .sub-heading span::after { display: block; }

/* ---------- Section headings ---------- */
.heading { margin-bottom: 54px; }
.heading.center { text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }
.heading h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 22px 0 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 34px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-icon { padding-right: 7px; }
.btn-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  flex: none;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 26px rgba(254, 76, 28, 0.32);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--orange); }
.btn-sm { height: 48px; padding: 0 28px; font-size: 14px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 2px 20px rgba(16, 33, 74, 0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 10px 44px;
}
.site-logo { flex: none; }
.site-logo img { width: 126px; }

.main-nav { display: none; margin: 0 auto; }
.main-nav .menu { display: flex; gap: 34px; list-style: none; margin: 0; padding: 0; }
.main-nav .menu > li { position: relative; }
.main-nav .menu > li > a {
  display: block;
  padding: 28px 0;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s ease;
}
.main-nav .menu > li > a:hover { color: var(--orange); }
.main-nav .menu > li.current::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 22px;
  height: 5px;
  border-radius: 5px 0 0 5px;
  background: #00c3ff;
}

.main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -22px;
  min-width: 250px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 33, 74, 0.14);
  list-style: none;
  margin: 0;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.main-nav .has-children:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .sub-menu a {
  display: block;
  padding: 9px 24px;
  font-size: 15px;
  color: var(--navy);
  white-space: nowrap;
}
.main-nav .sub-menu a:hover { color: var(--orange); background: var(--lavender); }

.mobile-menu-toggle {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.mobile-menu-toggle span { width: 24px; height: 2px; background: var(--navy); }

.mobile-nav { display: none; border-top: 1px solid #eef1f7; }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 12px 24px; }
.mobile-nav ul ul { padding: 0 0 0 18px; }
.mobile-nav a { display: block; padding: 9px 0; font-weight: 600; color: var(--navy); }

@media (min-width: 1100px) {
  .main-nav { display: flex; }
  .mobile-menu-toggle { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 150px 0 186px;
  background:
    linear-gradient(rgba(14, 28, 60, 0.5), rgba(14, 28, 60, 0.5)),
    url('/images/Home-Page-Banner-2-scaled.jpg') center / cover no-repeat;
}
.hero h1 {
  color: #fff;
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-shadow: 0 2px 18px rgba(6, 14, 33, 0.35);
}
.hero-tagline {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 32px;
  text-shadow: 0 1px 12px rgba(6, 14, 33, 0.4);
}

/* ============================================================
   TRUST CARDS
   ============================================================ */
.trust { position: relative; z-index: 5; margin-top: -58px; padding-bottom: 40px; }
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: start; }
.trust-card {
  background: #fff;
  border-radius: 12px;
  padding: 38px 28px 34px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(16, 33, 74, 0.11);
}
.trust-card .tile {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0039e4, #04dbf1);
  color: #fff;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
}
.trust-card h5 { font-size: 17px; margin-bottom: 10px; }
.trust-card p { font-size: 14.5px; line-height: 1.7; margin: 0; }

@media (min-width: 700px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-card.low { margin-top: 44px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { position: relative; overflow: hidden; padding: 70px 0 90px; }
.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
.about-media img { margin: 0 auto; max-width: min(505px, 100%); }
.about-copy p { font-size: 15.5px; }
.about-copy .btn { margin-top: 12px; }

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 70px; }
  .about-grid-reverse .about-media { order: 2; }
  .about-grid-reverse .about-copy { order: 1; }
}

/* ---------- Value cards (about page) ---------- */
.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 50px;
}
.value-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(42, 67, 113, 0.15);
  padding: 30px 30px 28px;
}
.value-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 16px;
}
.value-cyan { background: rgba(0, 195, 255, 0.15); color: #00c3ff; }
.value-blue { background: rgba(1, 96, 231, 0.15); color: #0160e7; }
.value-orange { background: rgba(254, 76, 28, 0.15); color: var(--orange); }
.value-card h5 { font-size: 17px; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; line-height: 1.7; margin: 0; }

@media (min-width: 700px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Dedicated agency / progress bar ---------- */
.dedicated { padding: 40px 0 100px; }
.progress { margin-top: 30px; }
.progress-label {
  display: block;
  text-align: right;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.progress-track {
  height: 10px;
  border-radius: 5px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #eef1f7;
  overflow: hidden;
}
.progress-fill { height: 100%; background: #ff9719; border-radius: 5px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background: #f8fafe;
}
.services .container { position: relative; z-index: 1; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px 40px;
}
.service { text-align: center; }
.service-ico { display: inline-flex; color: var(--blue); margin-bottom: 20px; }
.service h5 { font-size: 18px; margin-bottom: 10px; }
.service p { font-size: 14.5px; line-height: 1.75; margin: 0; max-width: 34ch; margin-inline: auto; }

@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   COUNTERS + INVEST
   ============================================================ */
.invest {
  background: var(--lavender);
  padding: 0 0 100px;
}
.counters { background: var(--lavender); }
.counter-card {
  position: relative;
  top: -55px;
  margin-bottom: -20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 40px 30px;
  border-radius: 12px;
  background: url('/images/bg-counter-1.jpg') center / cover no-repeat, var(--orange);
  box-shadow: 0 22px 50px rgba(254, 76, 28, 0.28);
  text-align: center;
}
.counter .sub-heading { color: #fff; margin-bottom: 6px; }
.counter .sub-heading span::before,
.counter .sub-heading span::after { background: #fff; display: block; }
.counter p { margin: 0; }
.counter .num,
.counter .plus {
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
}
.counter .num { font-size: 44px; }
.counter .plus { font-size: 30px; }

@media (min-width: 700px) {
  .counter-card { grid-template-columns: repeat(3, 1fr); padding: 44px 40px; }
}

.invest .heading.invest-heading { margin-top: 42px; max-width: 940px; }

.invest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.invest-step { display: flex; gap: 18px; align-items: flex-start; }
.invest-step img { width: 44px; height: 44px; flex: none; }
.invest-step h5 { font-size: 17px; margin-bottom: 8px; }
.invest-step p { font-size: 14.5px; line-height: 1.75; margin: 0; }

@media (min-width: 800px) { .invest-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }

/* ============================================================
   FREE AUDIT
   ============================================================ */
.audit { padding: 96px 0 100px; }
.audit .heading { margin-bottom: 44px; }
.audit-card {
  max-width: 940px;
  margin: 0 auto;
  padding: 44px;
  border-radius: 16px;
  background: linear-gradient(100deg, var(--navy-deep) 0%, #14418f 45%, #1e86ea 100%);
  box-shadow: 0 26px 60px rgba(31, 122, 224, 0.28);
}
.audit-card form { display: grid; gap: 16px; }
.audit-card input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: none;
  border-radius: 6px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--navy);
  outline: none;
}
.audit-card input::placeholder { color: #a9b3c7; }
.audit-card .btn { justify-self: start; margin-top: 6px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--lavender); padding: 90px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; }
.contact-media img { margin: 0 auto; max-width: min(500px, 100%); }
.contact-copy h2 { max-width: 10ch; }
.contact-form { display: grid; gap: 14px; max-width: 480px; margin-top: 26px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #e4e9f4;
  border-radius: 6px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s ease;
}
.contact-form input { height: 50px; padding-block: 0; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--orange); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #a9b3c7; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { justify-self: start; margin-top: 6px; }

@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  padding: 90px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  background: linear-gradient(122deg, var(--navy-deep) 0%, #16357f 48%, #1f6fe0 100%);
}
.footer-wave { position: absolute; top: 0; left: 0; width: 100%; line-height: 0; }
.footer-wave svg { width: 100%; height: 80px; display: block; fill: var(--lavender); }

.footer-top {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-brand img { width: 150px; margin-bottom: 20px; }
.footer-brand p { font-size: 14.5px; line-height: 1.8; margin: 0; }
.footer-col h5 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: var(--orange); }
.footer-col p { margin-bottom: 12px; }
.footer-col strong { color: #fff; font-weight: 600; }

@media (min-width: 820px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 0.9fr 1.1fr; gap: 30px; }
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}
.footer-bottom p { margin: 0; }
.legal-links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.legal-links a:hover { color: var(--orange); }

/* ---------- Back to top ---------- */
#back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 150;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 26px rgba(254, 76, 28, 0.4);
}
#back-to-top .icon-svg { transform: rotate(-90deg); }

/* ============================================================
   INNER PAGE HEADER
   ============================================================ */
.page-header {
  padding: 110px 0 50px;
  background: #fff;
}
.page-header h1 {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 500;
  color: var(--navy);
  margin: 0;
}

/* ============================================================
   SPLIT SECTIONS (image + copy)
   ============================================================ */
.split-section { padding: 70px 0; background: #fff; }
.split-tint { background: #f0f6ff; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.split-media img { margin: 0 auto; max-width: min(460px, 100%); }
.split-copy p { font-size: 15.5px; }
.split-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.split-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  color: var(--body);
  margin-bottom: 8px;
}
.split-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.split-highlight {
  color: #0692cd;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.split-highlight-orange { color: #ff9719; }
.split-highlight-navy { color: var(--navy); }

@media (min-width: 900px) {
  .split-grid { grid-template-columns: 1fr 1fr; gap: 70px; }
  .split-reverse .split-media { order: 1; }
  .split-reverse .split-copy { order: 2; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(120deg, var(--navy-deep), var(--blue));
}
.cta-banner h2 {
  color: #fff;
  max-width: 16ch;
  margin: 0 auto 30px;
}

/* ============================================================
   PRICING PACKAGES
   ============================================================ */
.packages { padding: 90px 0 100px; background: #fff; }
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 800px) { .packages-grid { grid-template-columns: 1fr 1fr; } }

.pricing-card {
  position: relative;
  border-radius: 15px;
  padding: 30px 40px 0;
  box-shadow: 0 8px 30px rgba(42, 67, 113, 0.1);
  display: flex;
  flex-direction: column;
}
.pricing-badge {
  position: absolute;
  top: 24px;
  left: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 0 17px 17px 0;
}
.pricing-cyan .pricing-badge { background: #00c3ff; }
.pricing-blue .pricing-badge { background: #0160e7; }

.pricing-body { text-align: center; padding-top: 30px; }
.pricing-body img { margin: 0 auto 10px; height: 90px; width: auto; }
.pricing-subtitle { color: #a5b7d2; font-size: 15px; margin-bottom: 20px; }
.pricing-features {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid #eef1f7;
  text-align: center;
}
.pricing-features li {
  color: var(--navy);
  font-size: 15px;
  padding: 9px 0;
}
.pricing-btn-wrap { text-align: center; padding: 24px 0 30px; }

.btn-cyan { background: #00c3ff; color: #fff; }
.btn-cyan:hover { background: #00a8dd; }
.btn-blue { background: #0160e7; color: #fff; }
.btn-blue:hover { background: #014fc0; }
.btn-pink { background: #ff4d6f; color: #fff; }
.btn-pink:hover { background: #e8395a; }

/* ============================================================
   WHAT WE OFFER
   ============================================================ */
.offer { padding: 90px 0 100px; background: #f8fafe; }
.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  text-align: center;
}
.offer-item img { margin: 0 auto 18px; }
.offer-item h5 { font-size: 18px; margin-bottom: 10px; }
.offer-item p { font-size: 14.5px; line-height: 1.75; margin: 0 0 12px; max-width: 32ch; margin-inline: auto; }
.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
}
.offer-link:hover { color: var(--orange-dark); }

@media (min-width: 700px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .offer-grid { grid-template-columns: repeat(4, 1fr); } }

.offer-grid-3 { max-width: 980px; margin: 0 auto; }
@media (min-width: 1100px) { .offer-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.split-intro { padding-bottom: 30px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { padding: 40px 0 110px; }
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: linear-gradient(145deg, #0039e4, #04dbf1);
  border-radius: 15px;
  padding: 40px;
  color: #fff;
}
.contact-card .sub-heading,
.contact-card h2 { color: #fff; }
.contact-card .sub-heading span::before,
.contact-card .sub-heading span::after { background: #fff; }

.contact-mailbox {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.contact-mailbox .icon-svg { flex: none; margin-top: 4px; }
.contact-mailbox > div { min-width: 0; }
.contact-mailbox h6 { font-size: 14px; color: rgba(255, 255, 255, 0.85); margin-bottom: 4px; }
.contact-mailbox p { margin: 0; font-weight: 600; overflow-wrap: anywhere; }
.contact-mailbox a { color: #fff; }

.labelled-form { display: grid; gap: 18px; margin-top: 30px; }
.labelled-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.labelled-form input,
.labelled-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px 18px;
  border: 1px solid #e4e9f4;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s ease;
}
.labelled-form input:focus,
.labelled-form textarea:focus { border-color: var(--orange); }
.labelled-form textarea { resize: vertical; }
.labelled-form .btn { justify-self: start; margin-top: 6px; }

@media (min-width: 900px) {
  .contact-hero-grid { grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
}

/* ============================================================
   SEO BENEFITS
   ============================================================ */
.benefits { padding: 90px 0 100px; }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}
.benefit-num { color: #00c3ff; font-size: 20px; margin-bottom: 4px; }
.benefit-item h5:not(.benefit-num) { font-size: 17px; margin-bottom: 8px; }
.benefit-item p { font-size: 14.5px; line-height: 1.7; margin: 0; }

@media (min-width: 600px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

/* ============================================================
   LEGAL PAGES (Terms & Conditions / Privacy Policy)
   ============================================================ */
.legal-content { padding: 20px 0 100px; }
.legal-content .container { max-width: 900px; }
.legal-content h4 {
  font-size: clamp(22px, 3vw, 30px);
  margin-top: 52px;
  margin-bottom: 18px;
}
.legal-content h4:first-child { margin-top: 0; }
.legal-content h5 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 10px;
}
.legal-content p { font-size: 15.5px; }
.legal-content ul {
  margin: 0 0 1.1em;
  padding-left: 20px;
}
.legal-content li {
  font-size: 15.5px;
  margin-bottom: 6px;
}
.legal-content .legal-updated {
  font-size: 14px;
  color: var(--body);
  margin-bottom: 40px;
}

/* ---------- Form submit status ---------- */
.form-status {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 600;
  min-height: 1.4em;
}
.form-status.is-pending { color: var(--body); }
.form-status.is-success { color: #0a9d5c; }
.form-status.is-error { color: var(--orange); }
.audit-card .form-status { color: #fff; }
.audit-card .form-status.is-success { color: #baffdf; }
.audit-card .form-status.is-error { color: #ffd7c9; }
