/* Fonts and theme */
:root {
  --bg: #f6f8ff;
  --text: #1a2a3a;
  --muted: #526273;
  --brand: #ff0066;
  --brand-2: #0099ff;
  --accent: #0099ff;
  --card: #ffffff;
  --shadow: 0 18px 48px rgba(0, 153, 255, 0.12);
  --radius: 16px;
  --font-heading: "Sora", "DM Sans", system-ui, -apple-system, sans-serif;
  --font-body: "DM Sans", "Sora", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading.centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: 2.25rem;
  letter-spacing: -0.03em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 153, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--text);
}

.brand-name {
  display: inline-block;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo {
  width: 72px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  border: none;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(26, 42, 58, 0.1);
  padding: 8px;
  border-radius: 10px;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--text);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 0, 102, 0.88), rgba(0, 153, 255, 0.82)), url("unnamed.jpg") center/cover no-repeat;
  color: #fff;
  padding: 140px 0 120px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.38)),
    radial-gradient(circle at 30% 20%, rgba(255, 0, 102, 0.22), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(0, 153, 255, 0.18), transparent 28%);
}

.hero-content {
  position: relative;
  max-width: 720px;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin: 10px 0;
  letter-spacing: -0.03em;
}

.hero h1,
.hero .hero-subtitle,
.hero .eyebrow {
  color: #fff;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

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

.hero-supporting {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #d60057;
  border-color: #d60057;
}

.btn-secondary {
  background: var(--brand-2);
  color: #fff;
  border-color: var(--brand-2);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #007fd6;
  border-color: #007fd6;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(26, 42, 58, 0.2);
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: var(--brand);
  color: var(--brand);
}

.text-link {
  font-weight: 700;
  color: var(--accent);
}

.text-link:hover,
.text-link:focus {
  color: var(--brand);
}

/* Cards and grids */
.grid {
  display: grid;
  gap: 24px;
}

.two-col {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.three-col {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.four-col {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 153, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--brand);
}

.about {
  background: linear-gradient(180deg, #fff5fb 0%, #f0f7ff 100%);
}

.about-highlight {
  display: grid;
  gap: 16px;
  padding: 16px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
}

.stat-label {
  color: var(--muted);
}

.why-us {
  background: radial-gradient(circle at 20% 20%, rgba(0, 153, 255, 0.1), transparent 35%), #fff;
}

.pill {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 153, 255, 0.12);
}

.testimonials .quote {
  font-style: italic;
}

.testimonial {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--brand-2);
}

.person {
  font-weight: 700;
  margin-top: 12px;
}

.faq {
  background: #f0f6ff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 153, 255, 0.12);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 18px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-weight: 700;
  color: var(--accent);
}

.faq-question[aria-expanded="true"]::after {
  content: "–";
}

.faq-answer {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.faq-answer.open {
  display: block;
}

/* Contact */
.contact {
  background: linear-gradient(135deg, rgba(255, 0, 102, 0.05), rgba(0, 153, 255, 0.06)), #fff;
}

.contact-grid {
  grid-template-columns: minmax(360px, 1.3fr) minmax(280px, 1fr);
  align-items: center;
  gap: 32px;
}

.contact-form {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
textarea,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(26, 42, 58, 0.15);
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.contact-card.subtle {
  background: rgba(0, 153, 255, 0.06);
  box-shadow: none;
  border: 1px solid rgba(0, 153, 255, 0.12);
}

.contact-line {
  margin: 6px 0;
}

.contact-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.social-links a:hover,
.social-links a:focus {
  background: var(--accent);
}

.note {
  color: var(--muted);
  margin-top: 8px;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  max-width: 420px;
  background: #fff;
  color: var(--text);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(7, 18, 41, 0.25);
  border: 1px solid rgba(0, 153, 255, 0.1);
  display: none;
  gap: 10px;
  z-index: 1000;
}

.cookie-banner.show {
  display: grid;
  grid-template-columns: 1fr;
}

.cookie-banner h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.cookie-banner p {
  margin: 0 0 12px;
  color: var(--muted);
}

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

.cookie-actions .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

.cookie-actions .btn-ghost {
  border: 1px solid rgba(0, 153, 255, 0.2);
}

.cookie-preferences {
  background: none;
  border: none;
  color: #c8d5e0;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 700;
  padding: 0;
}

.cookie-preferences:hover,
.cookie-preferences:focus {
  color: #fff;
}

/* Footer */
.site-footer {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 0, 102, 0.08), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(0, 153, 255, 0.12), transparent 30%),
    #0c1326;
  color: #c8d5e0;
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding-bottom: 32px;
}

.footer-heading {
  margin: 0 0 8px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #c8d5e0;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--brand-2);
}

.footer-text {
  margin: 6px 0;
}

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

.footer-logo {
  width: 96px;
  height: auto;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 16px 0 24px;
  color: #98a9b8;
  display: grid;
  gap: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .brand-name {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 5%;
    background: #fff;
    border: 1px solid rgba(0, 153, 255, 0.12);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 12px;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .header-ctas {
    display: none;
  }

  .hero {
    min-height: 70vh;
    padding: 120px 0 100px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .logo {
    width: 56px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 110px 0 80px;
  }

  .section-heading h2 {
    font-size: 1.85rem;
  }

  .cookie-banner {
    left: 5%;
    right: 5%;
    bottom: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
