/* =============== Base =============== */
:root {
  /* Brand palette (from logo) */
  --brand-aqua: #5FE8E7;   /* light aqua */
  --brand-teal: #22B6B3;   /* teal primary */
  --brand-teal-dk: #159A97;/* teal hover */
  --brand-navy: #3B5C82;   /* navy circle */
  --brand-lime: #CFE87A;   /* lime accent */

  /* New preferred colors */
  --accent-blue: #45B7D1;   /* from "See prices" button */
  --muted-blue: #A1B6C9;    /* from muted blue background */
  --input-grey: #EDEDED;    /* from input field background */
  --lime-green: #B8E986;    /* from bright green sample */

  /* App tokens derived from brand */
  --text-strong: #0F1B2B;
  --text: #102536;
  --text-muted: #4b5c65;
  --border: #e4eef0;
  --bg: #ffffff;
  --bg-soft: #F2FBFB;      /* subtle aqua tint */
  --cta: var(--accent-blue);
  --cta-hover: #369EB7;

  /* UI tokens for mockup vibe */
  --header: #203A52;       /* dark blue header bar */
  --card: #F6FAFD;         /* soft card background */
  --card-border: #E6EDF2;  /* soft border */
  --header-height: 50px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--cta); text-decoration: none; }
h1, h2, h3 { color: var(--text-strong); margin: 0 0 .4em; }
p { margin: 0 0 1em; }

/* =============== Header =============== */
header.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  min-height: var(--header-height);
  padding: 0 16px; /* keeps banner slim */
}
.logo { font-weight: 800; font-size: 1.4rem; letter-spacing: .5px; color: #fff; text-transform: lowercase; }
.logo img {
  height: calc(var(--header-height) - 6px); /* big logo in a small bar */
  max-height: 46px;
  width: auto;
  display: block;
}
.social-icons { display: flex; gap: 12px; align-items: center; }
.social-icons a { color: #fff; opacity: .9; transition: .2s ease; }
.social-icons a:hover, .social-icons a:focus { color: var(--brand-aqua); opacity: 1; transform: translateY(-1px); outline: none; }

.nav nav a { margin-left: 1.5em; color: #fff; opacity: .9; font-weight: 600; transition: color .2s ease, opacity .2s ease, box-shadow .2s ease; font-size: .95rem; }
.nav nav a:hover, .nav nav a:focus { color: var(--brand-aqua); opacity: 1; box-shadow: inset 0 -2px 0 var(--brand-aqua); outline: none; }

/* Accessible focus treatment */
.nav nav a:focus-visible, .cta-button:focus-visible {
  outline: 2px solid var(--brand-aqua);
  outline-offset: 2px;
}
/* Subtle underline animation for nav links */
.nav nav a {
  position: relative;
}
.nav nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px; height: 2px;
  background: currentColor; opacity: 0; transform: scaleX(.3);
  transition: opacity .2s ease, transform .2s ease;
}
.nav nav a:hover::after, .nav nav a:focus-visible::after { opacity: 1; transform: scaleX(1); }

/* =============== Hero =============== */
.hero {
  padding: 4.25em 1.25em 2.75em; /* slightly shorter banner */
  text-align: center;
  background: #ffffff;
}
.hero h1 { font-size: clamp(2.2rem, 4vw, 3rem); }
.hero p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 2em; }

/* Constrain hero content width without extra markup */
.hero h1, .hero p, .hero .cta-button {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 { line-height: 1.18; letter-spacing: -0.015em; }

.cta-button {
  display: inline-block; padding: .75em 1.5em; background: var(--cta); color: #fff; border: 2px solid transparent;
  border-radius: 12px; font-weight: 700; box-shadow: 0 6px 14px rgba(34,182,179,.25);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.cta-button:hover, .cta-button:focus { background: var(--cta-hover); box-shadow: 0 8px 18px rgba(21,154,151,.28); transform: translateY(-1px); outline: none; }
.cta-button:active { transform: translateY(0); box-shadow: 0 4px 10px rgba(21,154,151,.22); }

/* Secondary/outlined option (if needed) */
.cta-button.secondary { background: transparent; color: var(--cta); border: 2px solid var(--cta); }
.cta-button.secondary:hover { background: var(--cta); color: #fff; }

/* Muted CTA (Contact section) */
.cta-button.muted { background: #e5e7eb; color: #1f2937; border-color: transparent; box-shadow: none; }
.cta-button.muted:hover, .cta-button.muted:focus { background: #d1d5db; color: #111827; transform: translateY(-1px); }

/* =============== Sections =============== */
.content { padding: 1.5em 1.25em; max-width: 1100px; margin: 0 auto; }

/* =============== Steps =============== */
.steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;       /* keep them side-by-side */
    gap: 1.25em;
    margin-top: 1em;
  }
  
  .step {
    flex: 1;
    max-width: 340px;
    padding: 1.75em;
    background: linear-gradient(180deg, var(--card) 0%, #ffffff 100%);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
    transition: transform .2s ease, box-shadow .2s ease;
    text-align: center;
  }
  
  .step:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,.08), 0 12px 24px rgba(0,0,0,.06);
  }
  
  /* Mobile responsive: stack them only on smaller screens */
  @media (max-width: 768px) {
    .steps {
      flex-direction: column;
    }
    .step {
      max-width: none;
    }
  }

/* =============== Team =============== */
.team-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 16px; }
.profile img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto 8px; }
.profile p { text-align: center; margin: 0; }

/* =============== Footer =============== */
footer { text-align: center; padding: 1em; font-size: .9em; color: #6b7280; border-top: 1px solid var(--card-border); background: #fff; }

/* =============== Responsive =============== */
@media (max-width: 768px) {
  .steps { flex-direction: column; gap: 16px; }
  .step { min-width: 0; }
  .nav nav a { margin-left: .75em; }
}

/* =============== Dark mode =============== */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #07151A;          /* very dark teal */
    --bg-soft: #0C1F25;     /* dark soft teal */
    --text-strong: #EAF7F7;
    --text: #EAF7F7;
    --text-muted: #CFE7E7;
    --border: #173A44;
    --cta: #45B7D1;         /* accent blue for CTA */
    --cta-hover: #369EB7;   /* slightly darker accent blue */
  }
  header.sticky-header { background: #102336; border-bottom-color: var(--border); box-shadow: none; }
  .logo, .nav nav a, .social-icons a { color: var(--text); opacity: .9; }
  .nav nav a:hover, .social-icons a:hover { color: var(--cta); }
  .hero { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 65%); }
  .social-icons a { color: var(--text-muted); }
  .social-icons svg { filter: brightness(0) invert(1); opacity: .9; }
  .social-icons svg:hover { opacity: 1; }
  .step {
    background: #0b1220;
    color: var(--text-muted);
    border-color: var(--border);
    box-shadow: none;
  }
  footer { background: #0b1220; color: var(--text-muted); border-top-color: var(--border); }
}

/* Subtle header shadow to separate from page */
header.sticky-header { box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 8px 20px rgba(0,0,0,.04); }
