:root {
  --navy: #1f3a63;
  --navy-deep: #14263f;
  --cream: #faf7f2;
  --green: #00bf63;
  --green-dark: #00a656;
  --ink: #1c2536;
  --muted: #5d6b7e;
  --line: #e8e2d8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
h1, h2, h3 { font-family: "Bricolage Grotesque", "Poppins", sans-serif; }

/* ---------- Header / Nav ---------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(20px, 5vw, 56px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.logo {
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.3px;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
}
nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 6px 2px;
  border-bottom: 2.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
nav a:hover { color: var(--navy); }
nav a.active { color: var(--navy); border-bottom-color: var(--green); }
.call-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 26px;
  border: 1.5px solid var(--navy);
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.call-link:hover { background: var(--navy); color: #ffffff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: auto;
  box-shadow: none;
  margin: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 859px) {
  .nav-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 18px;
  }
  header.nav-open nav { display: flex; }
  nav a {
    padding: 13px 6px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  nav a.active { border-bottom-color: var(--green); }
  nav .call-link {
    margin-top: 14px;
    text-align: center;
    border-radius: 50px;
    border-bottom: 1.5px solid var(--navy);
  }
  header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 80px) clamp(20px, 5vw, 56px) 64px;
}
.wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
h1 {
  font-size: clamp(34px, 6.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--navy);
}
.sub {
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 500;
  line-height: 1.6;
}

.side-photo {
  position: absolute;
  top: 50%;
  width: clamp(160px, 16vw, 230px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 200px 200px 28px 28px;
  box-shadow: 0 24px 50px rgba(20, 38, 63, 0.22);
  display: none;
  z-index: 1;
}
.side-photo.left  { left: clamp(8px, 3vw, 60px);  transform: translateY(-54%) rotate(-4deg); }
.side-photo.right { right: clamp(8px, 3vw, 60px); transform: translateY(-46%) rotate(4deg); }
@media (min-width: 1100px) { .side-photo { display: block; } }

/* ---------- Dial card ---------- */
.card {
  margin-top: 36px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(26px, 4.5vw, 44px);
  box-shadow: 0 24px 60px rgba(31, 58, 99, 0.10);
}
.dial-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}
.amount {
  margin-top: 6px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--green);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.slider-row { margin-top: 22px; }
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--green) 0%, var(--green) var(--fill, 50%), #e5e9ef var(--fill, 50%), #e5e9ef 100%);
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 8px solid var(--green);
  box-shadow: 0 4px 12px rgba(0, 191, 99, 0.35);
  cursor: grab;
}
input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; }
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 7px solid var(--green);
  box-shadow: 0 4px 12px rgba(0, 191, 99, 0.35);
  cursor: grab;
}
.slider-ends {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Forms ---------- */
form { margin-top: 30px; text-align: left; }
.field { margin-bottom: 14px; }
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}
label em { font-style: normal; font-weight: 400; color: #94a0ae; }
input[type="text"], input[type="tel"], input[type="email"], textarea {
  width: 100%;
  padding: 15px 18px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
textarea { resize: vertical; min-height: 110px; }
input:focus, textarea:focus {
  background: #ffffff;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 191, 99, 0.14);
}
input::placeholder, textarea::placeholder { color: #a9b2bd; }

button, .btn {
  width: 100%;
  margin-top: 10px;
  padding: 18px;
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  color: #ffffff;
  background: var(--green);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 191, 99, 0.32);
  transition: transform 0.1s, filter 0.2s;
}
button:hover, .btn:hover { filter: brightness(1.06); }
button:active { transform: scale(0.985); }
button:disabled { opacity: 0.6; cursor: wait; }

.fine {
  margin-top: 14px;
  font-size: 12.5px;
  color: #939caa;
  text-align: center;
  line-height: 1.5;
}

.success { display: none; padding: 36px 10px; text-align: center; }
.success.show { display: block; }
.success .check {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(0, 191, 99, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--green);
}
.success h2 { font-size: 26px; font-weight: 700; color: var(--navy); }
.success p { margin-top: 10px; color: var(--muted); font-weight: 500; line-height: 1.6; }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
}
.marquee-track { display: inline-block; animation: scroll 30s linear infinite; }
.marquee span {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 18px;
}
.marquee b { color: var(--green); font-weight: 700; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- How it works ---------- */
.steps {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 56px);
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.steps h2, .section-title {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--navy);
}
.steps-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  text-align: left;
}
.step {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; font-weight: 700; color: var(--navy); }
.step p { margin-top: 8px; font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ---------- Split section ---------- */
.split {
  background: var(--navy-deep);
  color: #ffffff;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 56px);
}
.split-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
@media (min-width: 860px) { .split-inner { grid-template-columns: 1fr 1fr; } }
.split-photos { position: relative; display: flex; justify-content: center; gap: 20px; }
.split-photos img {
  width: clamp(140px, 20vw, 220px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 180px 180px 24px 24px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
}
.split-photos img:first-child { transform: rotate(-3deg) translateY(14px); }
.split-photos img:last-child  { transform: rotate(3deg); }
.split h2 {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.split p { margin-top: 16px; color: #aebacc; font-size: 16px; line-height: 1.7; }
.split ul { margin-top: 22px; list-style: none; }
.split li { padding: 8px 0; font-weight: 600; font-size: 15.5px; }
.split li::before { content: "✓  "; color: var(--green); font-weight: 700; }
.split .cta, .cta {
  display: inline-block;
  margin-top: 28px;
  padding: 16px 42px;
  background: var(--green);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 10px 24px rgba(0, 191, 99, 0.3);
  transition: filter 0.2s;
}
.split .cta:hover, .cta:hover { filter: brightness(1.08); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  text-align: center;
  padding: clamp(44px, 7vw, 80px) clamp(20px, 5vw, 56px) clamp(28px, 4vw, 44px);
  max-width: 760px;
  margin: 0 auto;
}
.page-hero .kicker {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--green-dark);
}
.page-hero h1 { margin-top: 10px; font-size: clamp(32px, 5.5vw, 50px); }

/* ---------- Products ---------- */
.products-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px clamp(20px, 5vw, 56px) clamp(56px, 8vw, 88px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.product {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(31, 58, 99, 0.12);
}
.product .icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(0, 191, 99, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.product .icon svg { width: 26px; height: 26px; stroke: var(--navy); }
.product h3 { font-size: 20px; font-weight: 700; color: var(--navy); }
.product p { margin-top: 10px; font-size: 15px; color: var(--muted); line-height: 1.65; flex: 1; }
.product a {
  margin-top: 18px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}
.product a:hover { text-decoration: underline; }

.note-band {
  max-width: 1080px;
  margin: 0 auto clamp(56px, 8vw, 88px);
  padding: 0 clamp(20px, 5vw, 56px);
}
.note-band .inner {
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 18px;
  padding: 24px 28px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.7;
}
.note-band b { color: var(--navy); }

/* ---------- About ---------- */
.about-body {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px clamp(20px, 5vw, 56px) clamp(56px, 8vw, 88px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
@media (min-width: 860px) { .about-body { grid-template-columns: 1.1fr 1fr; } }
.about-body .text h2 { font-size: clamp(24px, 3.5vw, 32px); color: var(--navy); margin-top: 28px; }
.about-body .text h2:first-child { margin-top: 0; }
.about-body .text p { margin-top: 12px; font-size: 16px; color: var(--muted); line-height: 1.75; }
.about-photos { display: flex; justify-content: center; gap: 20px; }
.about-photos img {
  width: clamp(140px, 20vw, 220px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 180px 180px 24px 24px;
  box-shadow: 0 20px 44px rgba(20, 38, 63, 0.2);
}
.about-photos img:first-child { transform: rotate(-3deg) translateY(14px); }
.about-photos img:last-child  { transform: rotate(3deg); }

.values {
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: clamp(56px, 8vw, 88px) clamp(20px, 5vw, 56px);
}
.values-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.values-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  text-align: left;
}
.value { padding: 4px; }
.value h3 { font-size: 19px; font-weight: 700; color: var(--navy); }
.value h3::before { content: "✓ "; color: var(--green); }
.value p { margin-top: 8px; font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ---------- Contact ---------- */
.contact-body {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px clamp(20px, 5vw, 56px) clamp(56px, 8vw, 88px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 900px) { .contact-body { grid-template-columns: 1fr 1.2fr; } }
.contact-info {
  background: var(--navy-deep);
  color: #ffffff;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 44px);
}
.contact-info h2 { font-size: 26px; font-weight: 800; }
.contact-info p { margin-top: 12px; color: #aebacc; font-size: 15.5px; line-height: 1.7; }
.phone-big {
  display: inline-block;
  margin-top: 24px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.phone-big:hover { color: var(--green); }
.contact-info .abn {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  color: #7e8da3;
}
.contact-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(26px, 4vw, 40px);
}
.contact-card h2 { font-size: 24px; color: var(--navy); }
.contact-card form { margin-top: 20px; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-deep);
  color: #7e8da3;
  padding: clamp(40px, 6vw, 60px) clamp(20px, 5vw, 56px) 0;
}
.footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
footer .logo { color: #ffffff; font-size: 20px; }
.footer-tag { margin-top: 12px; font-size: 14px; line-height: 1.7; max-width: 300px; }
footer h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a { color: #aebacc; text-decoration: none; font-size: 14.5px; font-weight: 500; }
footer a:hover { color: #ffffff; }
.footer-phone {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff !important;
}
.footer-abn { margin-top: 14px; font-size: 13.5px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 22px;
  font-size: 13px;
  font-weight: 500;
}
