/* ── Commercial Clean It — Shared Styles ─────────────────────────────────── */

/* Fonts loaded via <link> in each page's <head> for faster performance */

:root {
  --navy:    #0d1f2d;
  --teal:    #0e7c7b;
  --teal-lt: #14a8a6;
  --gold:    #c8a84b;
  --cream:   #f8f5ef;
  --slate:   #4a5568;
  --mist:    #edf2f7;
  --white:   #ffffff;
  --danger:  #c0392b;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(13,31,45,0.10);
  --shadow-lg: 0 12px 48px rgba(13,31,45,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Topbar ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  text-align: center;
  padding: 8px 20px;
  letter-spacing: 0.02em;
}
.topbar strong { color: var(--gold); }

/* ── Site Nav ── */
.sitenav {
  background: var(--white);
  border-bottom: 1px solid rgba(13,31,45,0.08);
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(13,31,45,0.06);
}
.sitenav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sitenav-brand .brand-icon {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.sitenav-tagline {
  font-size: 12px;
  color: var(--slate);
  font-weight: 400;
  margin-top: 1px;
}
.sitenav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sitenav-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  background: rgba(14,124,123,0.08);
  border: 1px solid rgba(14,124,123,0.2);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(14,124,123,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(200,168,75,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: var(--teal-lt);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin: 0 auto 32px;
  font-weight: 300;
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(13,31,45,0.07);
  padding: 18px 20px;
}
.trust-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  white-space: nowrap;
}
.trust-item .ti-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(14,124,123,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.trust-item strong { color: var(--navy); }

/* ── Stars ── */
.stars { color: var(--gold); letter-spacing: -1px; }

/* ── Page container ── */
.page-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* ── Section label ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  border: 1px solid rgba(13,31,45,0.06);
}

/* ── Form ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid .full { grid-column: 1 / -1; }

.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.field-wrap label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
}
.field-wrap input,
.field-wrap select {
  padding: 12px 14px;
  border: 1.5px solid #dde3ea;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.field-wrap select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.field-wrap input:focus,
.field-wrap select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,124,123,0.12);
}
.field-wrap input::placeholder { color: #a0aab4; }

.hp-field { display: none !important; }

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--teal);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  letter-spacing: 0.02em;
  margin-top: 6px;
  box-shadow: 0 4px 16px rgba(14,124,123,0.3);
}
.submit-btn:hover {
  background: var(--teal-lt);
  box-shadow: 0 6px 24px rgba(14,124,123,0.4);
  transform: translateY(-1px);
}
.submit-btn:active { transform: translateY(0); }

.consent-line {
  font-size: 11px;
  color: #8896a4;
  text-align: center;
  line-height: 1.5;
  margin-top: 10px;
}
.consent-line a { color: var(--teal); text-decoration: underline; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(13,31,45,0.07);
  box-shadow: var(--shadow);
}
.testimonial-stars { margin-bottom: 10px; }
.testimonial-body {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}
.testimonial-author { font-size: 13px; font-weight: 600; color: var(--navy); }
.testimonial-role { font-size: 12px; color: #8896a4; }

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--mist);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-title { font-weight: 600; font-size: 15px; color: var(--navy); margin-bottom: 3px; }
.step-desc { font-size: 14px; color: var(--slate); }

/* ── Feature bullets ── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--slate);
}
.feature-item .fi-icon {
  width: 26px;
  height: 26px;
  background: rgba(14,124,123,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-item strong { color: var(--navy); display: block; font-size: 13px; margin-bottom: 1px; }

/* ── Sidebar layout ── */
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}
.sidebar-stack { display: flex; flex-direction: column; gap: 20px; }

/* ── Section heading ── */
.section-heading {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.2;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 32px 20px;
  font-size: 13px;
  line-height: 1.8;
}
.footer a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.footer-brand {
  font-family: 'DM Serif Display', serif;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 8px;
}

/* ── Responsive ── */
@media (max-width: 740px) {
  .sidebar-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
  .features-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 16px; }
  .sitenav-badge { display: none; }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.55s ease both; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
