/* ===== Design tokens ===== */
:root {
  --accent: #0366d6;
  --accent-dark: #005bf7;
  --ink: #1f2733;
  --muted: #5a6678;
  --bg: #ffffff;
  --bg-alt: #f5f8fc;
  --line: #e4eaf2;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 40, 80, 0.08);
  --shadow-lg: 0 18px 50px rgba(15, 40, 80, 0.14);
  --maxw: 1140px;
  --font: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ===== Reset ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(3, 102, 214, .3); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--accent); border-color: currentColor; }
.btn-ghost:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 70px; }
.brand { display: flex; flex-direction: column; line-height: 1.1; color: var(--ink); }
.brand-name { font-weight: 800; font-size: 1.15rem; }
.brand-tag { font-size: .72rem; color: var(--muted); font-weight: 500; }
.dot { color: var(--accent); }

.primary-nav { display: flex; align-items: center; gap: 6px; }
.primary-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: .92rem;
  padding: 8px 12px;
  border-radius: 8px;
}
.primary-nav a:hover { color: var(--accent); }
.primary-nav .nav-cta {
  background: var(--accent);
  color: #fff;
  margin-left: 6px;
}
.primary-nav .nav-cta:hover { background: var(--accent-dark); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .5em;
}
.section h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  padding: 116px 0 64px;
  text-align: center;
  color: #fff;
  background-image:
    linear-gradient(180deg,
      rgba(18, 23, 36, .72) 0%,
      rgba(18, 23, 36, .42) 26%,
      rgba(18, 23, 36, .12) 46%,
      rgba(18, 23, 36, .30) 70%,
      rgba(18, 23, 36, .78) 100%),
    url("images/IMG_7666_opt-2.jpg");
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
.hero-inner { display: flex; flex-direction: column; justify-content: space-between; flex: 1; gap: 40px; }
.hero-top { display: flex; flex-direction: column; align-items: center; }
.hero-bottom { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; letter-spacing: -.02em; color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.hero-sub { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: rgba(255,255,255,.92); max-width: 560px; margin: 0 auto 1.8em; text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-badges {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  margin-top: 0;
}
.hero-badges li {
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  color: var(--ink);
  padding: 14px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 600;
}
.hero-badges img { width: 38px; height: 38px; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.8); }
.hero .btn-ghost:hover { background: #fff; color: var(--accent); border-color: #fff; }

/* ===== Parallax bands (scroll-by backgrounds) ===== */
.parallax {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ===== Card grids ===== */
.card-grid { display: grid; gap: 26px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ===== Explore (video band) ===== */
.explore {
  padding: 120px 0 140px;
  text-align: center;
  color: #fff;
  background-image:
    linear-gradient(rgba(38, 39, 50, .7), rgba(38, 39, 50, .7)),
    url("images/IMG_5854_opt.jpg");
}
.explore h2 { color: #fff; font-size: clamp(1.8rem, 4.5vw, 2.8rem); margin-bottom: .8em; }
.play-link {
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  color: #fff; font-weight: 600; letter-spacing: .02em;
}
.play-icon { width: 76px; height: 76px; transition: transform .2s ease, filter .2s ease; }
.play-link:hover .play-icon { transform: scale(1.08); }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: center; }
.about-photo img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.about-copy h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
.about-copy p { color: var(--muted); }

/* ===== Focus ===== */
.focus-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.focus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.focus-card img { width: 52px; height: 52px; margin: 0 auto 16px; }
.focus-card h3 { font-size: 1.1rem; }
.focus-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ===== Team ===== */
.team-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top center; }
.team-card h3 { margin: 18px 0 2px; font-size: 1.15rem; }
.team-card .role { color: var(--accent); font-weight: 600; font-size: .85rem; margin: 0 0 .6em; }
.team-card p:not(.role) { color: var(--muted); font-size: .85rem; padding: 0 18px 22px; margin: 0; }

.stats-band {
  padding: 70px 0;
  background-image:
    linear-gradient(rgba(3, 102, 214, .85), rgba(0, 91, 247, .85)),
    url("images/nv-1.jpg");
  color: #fff;
}
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.stat img { width: 46px; height: 46px; margin: 0 auto 10px; filter: brightness(0) invert(1); }
.stat strong { display: block; font-size: 1.9rem; font-weight: 800; color: #fff; }
.stat span { color: rgba(255,255,255,.85); font-size: .9rem; }

/* ===== Features ===== */
.feature-card {
  display: flex;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card img { width: 42%; object-fit: cover; }
.feature-body { padding: 26px; }
.feature-body h3 { font-size: 1.25rem; }
.feature-body p { color: var(--muted); margin: 0; font-size: .92rem; }

/* ===== Pricing ===== */
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.price-card .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  padding: 5px 14px; border-radius: 999px;
}
.price-card h3 { font-size: 1.2rem; }
.price { font-size: 2.6rem; font-weight: 800; color: var(--accent); margin: .1em 0 .4em; }
.price .per { font-size: 1rem; color: var(--muted); font-weight: 500; }
.price-card ul { margin: 0 0 26px; }
.price-card li { padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .92rem; }
.price-card li:last-child { border-bottom: 0; }

/* ===== Testimonial ===== */
.testimonial {
  max-width: 760px; margin: 0 auto;
  display: flex; gap: 34px; align-items: center;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 40px;
}
.testimonial-photo { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial blockquote { margin: 0; }
.testimonial blockquote p { font-size: 1.1rem; font-style: italic; color: var(--ink); }
.testimonial .signature { height: 42px; width: auto; margin: 6px 0 10px; }
.testimonial figcaption strong { display: block; }
.testimonial figcaption span { color: var(--muted); font-size: .88rem; }

/* ===== Why select us ===== */
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.why-card img { width: 50px; height: 50px; margin: 0 auto 14px; }
.why-card h3 { font-size: 1.08rem; }
.why-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ===== CTA ===== */
.cta {
  background-image:
    linear-gradient(135deg, rgba(3, 102, 214, .92) 0%, rgba(0, 91, 247, .92) 100%),
    url("images/alexis-blockquote6.jpg");
  color: #fff;
  text-align: center;
  padding: 90px 0;
}
.cta h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.3rem); margin-bottom: .8em; }
.cta .btn-primary { background: #fff; color: var(--accent); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.cta .btn-primary:hover { background: #f0f4fb; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
.info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.info-item img { width: 38px; height: 38px; flex-shrink: 0; }
.info-item h3 { font-size: 1.05rem; margin: 0 0 .2em; }
.info-item p { color: var(--muted); margin: 0; font-size: .92rem; }
.socials { display: flex; gap: 14px; margin-top: 10px; }
.socials img { width: 34px; height: 34px; transition: transform .2s ease; }
.socials a:hover img { transform: translateY(-3px); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: .9rem; }
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(3, 102, 214, .15);
}
.contact-form .btn { align-self: flex-start; }
.form-note { color: #1a7f37; font-weight: 600; margin: 0; }

/* ===== Footer ===== */
.site-footer { background: #0d1622; color: #c4cedd; padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
.footer-brand { font-weight: 800; font-size: 1.2rem; color: #fff; margin: 0; }
.site-footer p { margin: 0; font-size: .9rem; }
.footer-socials { display: flex; gap: 14px; margin: 4px 0; }
.footer-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  transition: transform .2s ease, background .2s ease;
}
.footer-socials a:hover { background: rgba(255, 255, 255, .16); transform: translateY(-3px); }
.footer-socials img { width: 22px; height: 22px; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 340px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 10px 16px 20px;
    transform: translateY(-130%);
    transition: transform .3s ease;
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .primary-nav .nav-cta { margin: 12px 0 0; text-align: center; border-radius: 999px; }
  .cols-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 60px 0; }
}

@media (max-width: 560px) {
  .cols-2, .cols-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .feature-card { flex-direction: column; }
  .feature-card img { width: 100%; aspect-ratio: 16 / 10; }
  .testimonial { flex-direction: column; text-align: center; padding: 30px 24px; }
  .price-card.featured { transform: none; }
}

/* Fixed/parallax backgrounds are unreliable on mobile (esp. iOS) — fall back to scroll */
@media (max-width: 768px) {
  .hero, .parallax { background-attachment: scroll; }
  .hero { padding: 100px 0 80px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .btn:hover, .focus-card:hover, .team-card:hover, .feature-card:hover, .price-card:hover { transform: none; }
}
