:root {
  --accent: #1FB6FF;
  --accent-hover: #0EA5E9;
  --text-dark: #111827;
  --text: #374151;
  --muted: #6B7280;
  --bg-light: #F5F7FA;
  --border: #E5E7EB;
}

/* small tweak to match index text color */
body {
  color: #0f172a; /* override var(--text) where necessary */
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text-dark);
}

/* navigation if plain <nav> is used */
.header .nav a,
.header nav a {
  margin-left: 24px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
}

/* smaller spacing on narrow screens */
@media (max-width: 900px) {
  .header .nav a,
  .header nav a {
    margin-left: 16px;
  }
  .menu-toggle {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    padding: 16px;
  }
  .nav.open {
    display: flex;
  }
}

/* navigation if plain <nav> is used */
.header .nav a,
.header nav a {
  margin-left: 24px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
}

/* smaller spacing on narrow screens */
@media (max-width: 900px) {
  .header .nav a,
  .header nav a {
    margin-left: 16px;
  }
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 40px;
}

.nav a {
  margin-left: 24px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
}

.nav-cta {
  color: var(--accent);
}
/* HERO */
.hero {
  padding: 120px 0 96px;
  background: linear-gradient(180deg, rgba(248,250,252,0.8) 0%, rgba(255,255,255,0.8) 100%), url('../images/hero.jpg') center/cover no-repeat;
  color: #0f172a;
}

.hero h1 {
  max-width: 760px;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-subline {
  max-width: 680px;
  font-size: 19px;
  color: #334155;
  margin-bottom: 36px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
  font-weight: 500;
  color: #0f172a;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  content: "– ";
  position: absolute;
  left: 0;
  color: #0284c7;
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #0284c7;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #0369a1;
}

.btn-secondary {
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  color: #0f172a;
  background: #ffffff;
}

.btn-secondary:hover {
  background: #f8fafc;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    padding: 88px 0 72px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subline {
    font-size: 18px;
  }
}

/* SECTIONS */
section {
  padding: 80px 0; /* slightly larger spacing for showcase feel */
}

.section-light {
  background: var(--bg-light);
}

.testimonial p {
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.section-light {
  background: var(--bg-light);
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 20px;
}

.card ul {
  padding-left: 18px;
  margin-bottom: 16px;
}

.card h3 {
  color: var(--text-dark);
}

.card ul {
  padding-left: 18px;
}

.card-text {
  margin-top: 16px;
  color: var(--muted);
}

/* TESTIMONIALS */
.testimonial p {
  font-style: italic;
}

.testimonial span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

/* CONTACT */
.contact,
.contact-box {
  text-align: center;
}

.contact-mail {
  font-size: 22px;
  font-weight: 600;
  margin-top: 16px;
}

.contact-form {
  max-width: 600px;
  margin: 24px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 16px;
}

.contact-form button {
  align-self: flex-start;
}

.socials a {
  margin-left: 8px;
  text-decoration: none;
  color: var(--text-dark);
}

.socials a:hover {
  color: var(--accent);
}
.contact-mail {
  font-size: 22px;
  font-weight: 600;
  margin-top: 16px;
}

.contact-mail a {
  font-size: 20px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

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

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .nav {
    display: none;
  }
}
