/* ==========================================================================
   Vihaan Enterprises — Waterproofing Experts
   styles.v1.css  (versioned filename for cache-busting)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --brand: #0f4bb5; /* royal blue (logo) */
  --brand-dark: #08306e;
  --brand-light: #e8f1fb;
  --accent: #ff8a00; /* warm CTA orange */
  --accent-dark: #e67a00;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

  --ink: #1a2230;
  --ink-soft: #4a5568;
  --muted: #6b7280;
  --line: #e4e8ef;
  --bg: #ffffff;
  --bg-alt: #f6f9fc;
  --white: #ffffff;

  --shadow-sm: 0 1px 3px rgba(16, 36, 64, 0.08);
  --shadow: 0 8px 24px rgba(16, 36, 64, 0.1);
  --shadow-lg: 0 18px 50px rgba(16, 36, 64, 0.16);

  --radius: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --header-h: 76px;

  --font:
    "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, Roboto, Arial,
    sans-serif;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.section--alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2rem, 5vw, 3.25rem);
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-sub {
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border: 2px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 138, 0, 0.32);
}
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 138, 0, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}
.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.32);
}
.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}
.btn--brand {
  background: var(--brand);
  color: #fff;
}
.btn--brand:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}
.btn--block {
  width: 100%;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
}

/* ---------- Header / Nav ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition:
    box-shadow var(--transition),
    border-color var(--transition);
}
.header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
}
.brand__mark {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__name {
  font-size: 1.12rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav__links a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink-soft);
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  transition:
    color var(--transition),
    background var(--transition);
}
.nav__links a:hover {
  color: var(--brand);
  background: var(--brand-light);
}
.nav__cta {
  margin-left: 0.4rem;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.nav__toggle span::before {
  transform: translate(-50%, -7px);
}
.nav__toggle span::after {
  transform: translate(-50%, 5px);
}
.nav__toggle.is-open span {
  background: transparent;
}
.nav__toggle.is-open span::before {
  transform: translate(-50%, 0) rotate(45deg);
}
.nav__toggle.is-open span::after {
  transform: translate(-50%, 0) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  color: #fff;
  background:
    linear-gradient(
      115deg,
      rgba(8, 48, 110, 0.92) 0%,
      rgba(15, 75, 181, 0.8) 45%,
      rgba(8, 48, 110, 0.62) 100%
    ),
    url("../assets/img/hero.jpg") center / cover no-repeat;
}
.hero__inner {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  max-width: 760px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(4px);
}
.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.3);
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.7rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}
.hero h1 .accent {
  color: #ffd9a8;
}
.hero p.lead {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 4vw, 2.6rem);
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero__stat .num {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1;
}
.hero__stat .lbl {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.35rem;
}

/* ---------- Trust bar ---------- */
.trustbar {
  background: var(--brand-dark);
  color: #fff;
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.4rem 0;
}
.trustbar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 0.98rem;
  text-align: center;
}
.trustbar__item .icon {
  color: #ffd9a8;
  width: 1.6rem;
  height: 1.6rem;
}

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 14px;
  margin-bottom: 1.2rem;
}
.service-card__icon .icon {
  width: 28px;
  height: 28px;
}
.service-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* ---------- About / Why us ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__media {
  position: relative;
}
.about__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.about__badge {
  position: absolute;
  bottom: -22px;
  right: -10px;
  background: var(--accent);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.about__badge .num {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}
.about__badge .lbl {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.92;
}
.about__content .eyebrow {
  margin-bottom: 1rem;
}
.about__content h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.about__content p {
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-bottom: 1.8rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.97rem;
}
.feature-list .icon {
  color: var(--whatsapp);
  flex: none;
  margin-top: 0.15rem;
}

/* ---------- Process ---------- */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  text-align: center;
  padding: 0 0.5rem;
}
.process-step__num {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 2px solid var(--brand-light);
  color: var(--brand);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
}
.process-step p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.process__grid .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 64px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--brand-light) 0 8px,
    transparent 8px 16px
  );
}

/* ---------- Gallery ---------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  background: var(--bg-alt);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__item:hover img {
  transform: scale(1.06);
}
.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(7, 56, 100, 0.85));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery__item:hover figcaption {
  transform: translateY(0);
}

/* ---------- Clients / Prestigious Projects ---------- */
.clients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.client-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  background: var(--bg-alt);
}
.client-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.client-card:hover img {
  transform: scale(1.06);
}
.client-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(7, 56, 100, 0.88));
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
}
.clients__more {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}
.clients__subhead {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}
.client-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
.client-pills li {
  background: var(--brand-light);
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(15, 75, 181, 0.12);
}

/* ---------- Testimonials ---------- */
.testi__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm);
}
.testi-card__stars {
  color: #ffb400;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
}
.testi-card p {
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 1.4rem;
}
.testi-card__person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.testi-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex: none;
}
.testi-card__name {
  font-weight: 700;
  font-size: 0.98rem;
}
.testi-card__role {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: #fff;
  text-align: center;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto 1.8rem;
  font-size: 1.08rem;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.contact__info h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}
.contact__info > p {
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
}
.contact-list {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1.8rem;
}
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-list .ci-icon {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 12px;
}
.contact-list .ci-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}
.contact-list .ci-value {
  font-weight: 600;
  color: var(--ink);
}
.contact-list a.ci-value:hover {
  color: var(--brand);
}
.contact__map {
  border: 0;
  width: 100%;
  height: 240px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  margin-bottom: 1.1rem;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}
.field label .req {
  color: var(--accent);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg-alt);
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(10, 77, 140, 0.1);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #e23b3b;
  background: #fdf2f2;
}
.field__error {
  display: none;
  color: #d12b2b;
  font-size: 0.82rem;
  margin-top: 0.35rem;
  font-weight: 600;
}
.field.is-invalid .field__error {
  display: block;
}
.form-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.4rem;
}
.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.9rem;
}

.form-status {
  display: none;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.form-status.is-visible {
  display: block;
}
.form-status.is-success {
  background: #e7f8ee;
  color: #137a43;
  border: 1px solid #b6e6c9;
}
.form-status.is-error {
  background: #fdeaea;
  color: #b3261e;
  border: 1px solid #f4c7c4;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition);
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float .icon {
  width: 32px;
  height: 32px;
}
@keyframes wa-pulse {
  0% {
    box-shadow:
      0 10px 30px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow:
      0 10px 30px rgba(37, 211, 102, 0.45),
      0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      0 10px 30px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ---------- Footer ---------- */
.footer {
  background: #0b1622;
  color: #c4ccd8;
  padding: clamp(3rem, 6vw, 4rem) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer__logo img {
  width: 200px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  background: #fff;
}
.footer__about p {
  font-size: 0.92rem;
  color: #93a0b1;
}
.footer__links li {
  margin-bottom: 0.6rem;
}
.footer__links a {
  font-size: 0.94rem;
  color: #c4ccd8;
  transition: color var(--transition);
}
.footer__links a:hover {
  color: #fff;
}
.footer__contact li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  align-items: flex-start;
}
.footer__contact .icon {
  color: var(--accent);
  flex: none;
  margin-top: 0.15rem;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem 0;
  text-align: center;
  font-size: 0.88rem;
  color: #8b97a7;
}
.footer__bottom a {
  color: #c4ccd8;
}
.footer__bottom a:hover {
  color: #fff;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__media {
    max-width: 520px;
    margin: 0 auto;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
  }
  .process__grid .process-step::after {
    display: none;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 66px;
  }
  .nav__toggle {
    display: block;
  }
  .nav__links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: #fff;
    padding: 1rem clamp(1rem, 4vw, 2rem) 1.5rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    visibility: hidden;
  }
  .nav__links.is-open {
    transform: translateY(0);
    visibility: visible;
  }
  .nav__links a {
    padding: 0.85rem 1rem;
    border-radius: 10px;
  }
  .nav__cta {
    margin: 0.5rem 0 0;
  }
  .nav__cta .btn {
    width: 100%;
  }
  .trustbar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
  }
  .trustbar__item {
    justify-content: flex-start;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .hero__actions .btn {
    width: 100%;
  }
  .process__grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .about__badge {
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
