/* Bright/Clean (Apple-like) theme — FINAL for your index.html */

:root{
  --bg:#ffffff;
  --text:#0b1220;
  --muted: rgba(11,18,32,.70);
  --line: rgba(11,18,32,.10);

  --brand:#ff7a18;
  --brand2:#1d4ed8;

  --shadow: 0 18px 50px rgba(11,18,32,.12);
  --shadow2: 0 10px 25px rgba(11,18,32,.10);

  --radius: 18px;
  --max: 1120px;

  /* keep this in one place so hero offset is always correct */
  --header-h: 76px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(900px 450px at 20% 0%, rgba(29,78,216,.08), transparent 60%),
    radial-gradient(800px 420px at 80% 10%, rgba(255,122,24,.10), transparent 65%),
    linear-gradient(180deg, #ffffff, #f6f7fb 65%, #ffffff);
  line-height: 1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration: underline; text-decoration-color: rgba(29,78,216,.35); text-underline-offset: 4px; }

.container{
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:1rem; top:1rem; width:auto; height:auto;
  background:#000; color:#fff; padding:.75rem 1rem; border-radius:12px; z-index:9999;
}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); border:0;
}

/* Make anchor jumps land below the sticky header */
section{ scroll-margin-top: calc(var(--header-h) + 16px); }

/* Header / Nav */
.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled{ border-bottom-color: var(--line); }

.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: .9rem 0;
  gap: 1rem;
}

/* Brand / Logo */
.brand{
  display:flex;
  align-items:center;
  gap:.75rem;
  min-width: 220px;
}

.brand__logo{
  height: 62px;            /* aligned to your header */
  width: auto;
  display:block;
  transform-origin: left center;
  transition: transform .18s ease, filter .18s ease;
}

.brand:hover .brand__logo{
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 10px 18px rgba(11,18,32,.12));
}

/* Nav */
.nav{
  display:flex; align-items:center; gap:.6rem;
}
.nav a{
  color: rgba(11,18,32,.82);
  font-weight: 700;
  font-size: .98rem;
  padding: .45rem .65rem;
  border-radius: 12px;
}
.nav a:hover{
  background: rgba(11,18,32,.04);
  text-decoration:none;
}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.70);
  cursor:pointer;
}
.nav-toggle__line{
  display:block;
  width:20px; height:2px;
  background: rgba(11,18,32,.75);
  margin:5px auto;
  border-radius: 99px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5rem;
  padding: .88rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,.10);
  background: linear-gradient(135deg, rgba(255,122,24,.95), rgba(255,122,24,.82));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(255,122,24,.18);
}
.btn:hover{ text-decoration:none; filter: brightness(1.02); }

.btn--ghost{
  background: rgba(255,255,255,.75);
  color: rgba(11,18,32,.92);
  box-shadow: var(--shadow2);
}
.btn--small{
  padding: .65rem .9rem;
  border-radius: 14px;
  font-weight: 900;
}
.btn--full{ width:100%; margin-top: .9rem; }

/* Hero (your exact hero HTML) */
.hero{
  position: relative;
  min-height: calc(640px + var(--header-h));
  overflow: hidden;
}

.hero__media{
  position:absolute;
  inset:0;
  z-index: 0;

  background-image:
    linear-gradient(
      180deg,
      rgba(255,255,255,.18) 0%,
      rgba(255,255,255,.38) 55%,
      rgba(255,255,255,.55) 100%
    ),
    url("../img/hero.webp");
    
  background-repeat: no-repeat;
  background-size: cover;

  /* shows desk + still keeps camera */
  background-position: 100% 45%;

  filter: saturate(2.80) contrast(1.00) brightness(1.00);
}

@media (max-width: 700px){
  .hero{ min-height: calc(520px + var(--header-h)); }
}


/* Centered hero content container */
.hero__center{
  position: relative;
  z-index: 1;
  min-height: 420px;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 4rem 1rem;
}

.hero__title{
  margin: 0 0 .9rem;
  font-size: clamp(2.1rem, 3.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(11,18,32,.62);
}

.hero__subtitle{
  margin: 0 0 1.6rem;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: rgba(11,18,32,.55);
  font-weight: 700;
}

.hero__cta{
  display:flex;
  gap:.85rem;
  flex-wrap:wrap;
  justify-content:center;
}

/* Sections */
.section{ padding: 4rem 0; }

.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,0));
  border-top: 1px solid rgba(11,18,32,.08);
  border-bottom: 1px solid rgba(11,18,32,.08);
}

.section__head{
  margin-bottom: 1.6rem;
  max-width: 72ch;
}
.section__head h2{
  margin: 0 0 .5rem;
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  letter-spacing: -.02em;
}
.section__head p{ margin:0; color: var(--muted); }

/* Layout grids */
.grid{ display:grid; gap: 1rem; }
.grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

.bullets{
  margin:.2rem 0 0;
  padding-left: 1.1rem;
  color: rgba(11,18,32,.78);
}
.bullets li{ margin: .35rem 0; }

/* Cards / Panels */
.card{
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.82);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow2);
}
.card--soft{ background: rgba(255,255,255,.70); }

.panel{
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.72);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow2);
}

.card__img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,.08);
  margin-bottom: .85rem;
  background: #fff;
}

/* Callout */
.callout{
  margin-top: 1.2rem;
  display:flex; justify-content:space-between; align-items:center; gap:1rem;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.70);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow2);
}
.callout__title{ margin:0 0 .25rem; }
.callout__text{ margin:0; color: var(--muted); }

/* Steps */
.steps{
  list-style:none;
  padding:0; margin:0;
  display:grid; gap:.9rem;
}
.steps__item{
  display:flex; gap:1rem; align-items:flex-start;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.78);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow2);
}
.steps__num{
  width: 40px; height:40px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(29,78,216,.08);
  border: 1px solid rgba(29,78,216,.14);
  font-weight: 950;
}
.steps__title{ margin:0 0 .2rem; }
.steps__item p{ margin:0; color: var(--muted); }

/* Stats */
.stat{
  border: 1px solid rgba(11,18,32,.10);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow2);
}
.stat__value{ font-weight: 950; font-size: 1.25rem; letter-spacing: -.01em; }
.stat__label{ color: var(--muted); margin-top:.2rem; }

.muted{ color: var(--muted); }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1rem;
  align-items:start;
}

.form label{ display:block; font-weight: 800; }
.form input, .form textarea, .form select{
  width:100%;
  margin-top: .4rem;
  padding: .85rem .9rem;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.92);
  color: rgba(11,18,32,.90);
  outline: none;
}
.form input:focus, .form textarea:focus, .form select:focus{
  border-color: rgba(29,78,216,.45);
  box-shadow: 0 0 0 4px rgba(29,78,216,.12);
}

.form__row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}
.form__actions{
  display:flex; align-items:center; gap:1rem; flex-wrap:wrap;
  margin-top: 1rem;
}

/* Footer */
.footer{
  border-top: 1px solid rgba(11,18,32,.08);
  padding: 2.2rem 0 1.4rem;
  background: rgba(255,255,255,.65);
}
.footer__inner{
  display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap;
  align-items:flex-start;
}
.footer__right{ display:flex; gap:.9rem; flex-wrap:wrap; justify-content:flex-end; }
.footer__bottom{ margin-top: 1.2rem; }

/* Responsive */
@media (max-width: 960px){
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  :root{ --header-h: 88px; }

  .nav-toggle{ display:inline-block; }

  .nav{
    position: absolute;
    right: 1rem;
    top: calc(100% + .6rem);
    display:none;
    flex-direction: column;
    min-width: 220px;
    padding: .7rem;
    border-radius: 18px;
    border: 1px solid rgba(11,18,32,.10);
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow);
  }
  .nav.is-open{ display:flex; }
  .nav a{ width:100%; }

  .hero__center{ min-height: 460px; padding: 3.2rem 1rem; }
}
