/* ─── Variables ─────────────────────────────────────────────────────────── */
:root {
  --teal:        #59d4ff;
  --teal-dark:   #2ec3f0;
  --teal-light:  #9debff;
  --teal-muted:  rgba(89, 212, 255, 0.12);
  --navy:        #0F172A;
  --gray-dark:   #1F2937;
  --gray-mid:    #374151;
  --gray-muted:  #9CA3AF;
  --slate:       #475569;
  --slate-light: #94A3B8;
  --bg:          #d0f5fc;
  --border:      #E2E8F0;
  --white:       #FFFFFF;
  --radius:      8px;
  --shadow:      0 4px 20px rgba(15, 23, 42, 0.07);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
ul  { list-style: none; }
a   { color: inherit; text-decoration: none; }

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1, h2 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h3, h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.15rem; }

p {
  color: var(--slate);
  line-height: 1.8;
}

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section        { padding: 3.5rem 0; }
.section--bg    { background: var(--bg); }

.section--cloud {
  background:
    radial-gradient(ellipse at 15% 60%, rgba(89, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(89, 212, 255, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(89, 212, 255, 0.05) 0%, transparent 50%),
    linear-gradient(160deg, #0F172A 0%, #162032 55%, #0F172A 100%);
}

.section--cloud .section-label {
  color: var(--teal);
  border-bottom-color: var(--teal);
  font-size: 1rem;
}

.section--cloud .section-title,
.section--cloud h2,
.section--cloud h3,
.section--cloud h4 {
  color: var(--white);
}

.section--cloud .section-sub,
.section--cloud p {
  color: var(--slate-light);
}

.section--cloud .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.section--cloud .card:hover {
  background: rgba(89, 212, 255, 0.06);
  border-color: var(--teal);
}

.section--cloud .card__title {
  color: var(--white);
}

.section--cloud .card__body {
  color: var(--slate-light);
}

.section--cloud .card__icon {
  background: rgba(89, 212, 255, 0.12);
}

.section--cloud .step__number {
  color: var(--teal);
  opacity: 0.3;
}

.section--cloud .form-group label {
  color: var(--slate-light);
}

.section--cloud .form-group input,
.section--cloud .form-group textarea,
.section--cloud .form-group select {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.section--cloud .form-group select option {
  background: var(--gray-dark);
  color: var(--white);
}

.section--cloud .form-group input::placeholder,
.section--cloud .form-group textarea::placeholder {
  color: var(--slate);
}

.section--cloud .form-group input:focus,
.section--cloud .form-group textarea:focus,
.section--cloud .form-group select:focus {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.1);
}

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.nav {
  background: var(--gray-dark);
  border-bottom: 1px solid var(--gray-mid);
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-muted);
  transition: color 0.15s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--teal);
}

.nav__cta {
  background: var(--teal);
  color: var(--navy) !important;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  transition: background 0.15s !important;
}

.nav__cta:hover {
  background: var(--teal-dark) !important;
  color: var(--navy) !important;
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  line-height: 1;
}

.btn--primary {
  background: var(--teal);
  color: var(--navy);
}

.btn--primary:hover  { background: var(--teal-dark); }

.btn--outline {
  border: 1.5px solid var(--border);
  color: var(--slate);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.25rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--slate-light);
}

.footer__email-label {
  font-size: 0.8rem;
  color: var(--slate-light);
  display: block;
  margin-bottom: 0.15rem;
}

.footer__email a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  transition: opacity 0.15s;
}

.footer__email a:hover { opacity: 0.6; }

.footer__disclaimer {
  font-size: 0.7rem;
  color: var(--slate-light);
  opacity: 0.6;
  text-align: center;
  margin-top: 0.75rem;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(ellipse at 75% 50%, rgba(89, 212, 255, 0.09) 0%, transparent 65%);
}


.hero__title {
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.hero__sub {
  max-width: 500px;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.hero__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.75rem;
  max-width: 500px;
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.5;
}

.hero__bullets li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background-color: var(--teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 0.15rem;
}

.hero__cta {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* ─── Page Header (inner pages) ───────────────────────────────────────────── */
.page-header {
  padding: 3rem 0 2rem;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--teal), rgba(89, 212, 255, 0.08) 50%, var(--teal));
}


.page-header h1 {
  margin-bottom: 0.875rem;
}

.page-header p {
  max-width: 520px;
  font-size: 1.05rem;
}

/* ─── Section Label ───────────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--teal);
}

.section-title {
  margin-bottom: 0.875rem;
}

.section-sub {
  max-width: 520px;
  margin-bottom: 3rem;
}

/* ─── Cards ───────────────────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 32px rgba(89, 212, 255, 0.12), 0 4px 12px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

.card__icon {
  width: 44px;
  height: 44px;
  background: var(--teal-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card__title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.card__body {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── CTA Banner ──────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 3rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--slate-light);
  max-width: 440px;
  margin: 0 auto 2rem;
}

/* ─── Contact Form ────────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3.5rem;
}

.contact-info h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.contact-info p {
  font-size: 0.9rem;
}

.contact-info a {
  color: var(--teal);
}

.contact-info-item {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(89, 212, 255, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.char-counter {
  display: block;
  font-size: 0.78rem;
  color: var(--slate);
  text-align: right;
  margin-top: 0.35rem;
}

.char-counter--near {
  color: #f59e0b;
}

.char-counter--full {
  color: #f87171;
}

.field-error {
  display: block;
  font-size: 0.8rem;
  color: #f87171;
  margin-top: 0.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ─── About ───────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text p + p {
  margin-top: 1rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.value-item p {
  font-size: 0.875rem;
}

/* ─── Process Steps ───────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.step:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 32px rgba(89, 212, 255, 0.12), 0 4px 12px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

.step__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal-muted);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.05em;
  color: var(--teal);
  opacity: 0.2;
}

.step__title {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.step__body { font-size: 0.9rem; }

/* ─── Utilities ──────────────────────────────────────────────────────────── */
.hidden { display: none !important; }

.cf-turnstile {
  margin-top: 1.5rem;
}

.form-success {
  padding: 2rem 0;
}

.form-success h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--slate-light);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.services-cta { margin-top: 2.5rem; }
.values-list  { margin-top: 1.5rem; }

/* ─── Prose (privacy policy) ─────────────────────────────────────────────── */
.prose {
  max-width: 720px;
}
.prose h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 3.5rem;
  margin-bottom: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-mid);
}
.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.prose h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.75;
}
.prose a {
  color: var(--teal);
  text-decoration: underline;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links { gap: 1.25rem; }

  .hero        { padding: 3rem 0 2.5rem; }
  .section     { padding: 2.5rem 0; }

  .about-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout  { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row        { grid-template-columns: 1fr; }

  .cta-banner { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .nav__links .nav__cta { display: none; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
