/* CBM Coaches simple website */

:root {
  --navy: #07172f;
  --navy-2: #10243f;
  --gold: #f2b632;
  --gold-dark: #c88b0d;
  --white: #ffffff;
  --soft: #f4f6f9;
  --cream: #f8f4eb;
  --ink: #111827;
  --muted: #64748b;
  --line: #dfe7f0;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --shadow: 0 20px 55px rgba(7, 23, 47, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.hidden {
  display: none;
}

.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.88);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 9px clamp(18px, 5vw, 72px);
  font-size: 14px;
}

.top-bar a {
  margin-left: 14px;
  font-weight: 700;
}

.top-bar a:hover {
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 14px clamp(18px, 5vw, 72px);
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 62px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 950;
  letter-spacing: 1px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  color: var(--navy);
  font-size: 18px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
  font-weight: 700;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
  font-weight: 800;
  color: #334155;
}

.nav a:hover {
  color: var(--gold-dark);
}

.header-actions {
  display: flex;
  gap: 10px;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(242,182,50,.25);
}

.btn-light {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}

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

.btn-outline-dark {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}

.btn-whatsapp:hover,
.whatsapp-float:hover {
  background: var(--whatsapp-dark);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: var(--navy);
}

.hero {
  background:
    radial-gradient(circle at 84% 10%, rgba(242,182,50,.2), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: clamp(74px, 8vw, 118px) clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 950;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: .96;
  letter-spacing: -3px;
  max-width: 850px;
}

.hero-copy {
  max-width: 710px;
  color: rgba(255,255,255,.78);
  font-size: 20px;
  line-height: 1.65;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quick-info {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.quick-info h2 {
  color: var(--navy);
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: -1px;
}

.quick-info ul {
  margin: 0;
  padding-left: 20px;
  color: #334155;
  line-height: 1.9;
  font-weight: 700;
}

.section {
  padding: clamp(62px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.section-title {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-title h2,
.quote-copy h2,
.simple-band h2 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -2px;
  margin: 0 0 14px;
}

.section-title p,
.quote-copy p,
.simple-band p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
  margin: 0;
}

.services {
  background: var(--soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(7,23,47,.06);
}

.service-grid h3 {
  color: var(--navy);
  font-size: 23px;
  margin: 0 0 10px;
  letter-spacing: -1px;
}

.service-grid p {
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}

.simple-band {
  background: var(--cream);
}

.simple-band > div {
  max-width: 900px;
}

.quote-section {
  background: #fff;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list a {
  display: block;
  padding: 16px;
  border-radius: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
}

.quote-form {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: block;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 13px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 14px 15px;
  font: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(242,182,50,.16);
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.quote-form .btn {
  width: 100%;
}

.form-note {
  text-align: center;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  background: #050f20;
  color: rgba(255,255,255,.75);
  padding: 42px clamp(18px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer strong,
.footer h3 {
  color: #fff;
}

.footer p {
  margin: 10px 0 0;
}

.footer a {
  display: block;
  margin-bottom: 9px;
}

.footer a:hover {
  color: var(--gold);
}

.cookie-settings-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
}

.footer .cookie-settings-button {
  color: #fff;
}

.footer .cookie-settings-button:hover,
.cookie-settings-button:hover {
  color: var(--gold);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(37,211,102,.34);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 500;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow);
}

.cookie-consent strong {
  display: block;
  margin-bottom: 6px;
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent-actions .btn {
  min-width: 104px;
}

@media (max-width: 1120px) {
  .nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.open .nav {
    display: grid;
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    gap: 0;
    overflow: hidden;
  }

  .site-header.open .nav a {
    padding: 17px 20px;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .quick-info {
    max-width: 620px;
  }

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

@media (max-width: 760px) {
  .top-bar {
    display: none;
  }

  h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 56px;
  }

  .cookie-consent {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-consent-actions .btn {
    flex: 1;
  }
}


.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 84% 10%, rgba(242,182,50,.2), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.thank-you-card {
  background: #fff;
  border-radius: 26px;
  padding: clamp(30px, 5vw, 58px);
  box-shadow: var(--shadow);
  max-width: 620px;
}

.thank-you-card h1 {
  color: var(--navy);
  margin-top: 22px;
}

.thank-you-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.thank-you-cookie-settings {
  margin-top: 24px;
  color: var(--muted);
}
