/* =====================================================================
   شريك (Sharik) — نظام التصميم
   لوحة: كحلي عميق + ذهبي دافئ + خلفيات كريمية نظيفة
   خطوط: Cairo (عناوين) + Tajawal (نص)  |  RTL أصلي
   ===================================================================== */

:root {
  /* Palette */
  --navy-900: #0A2038;   /* أعمق كحلي — خلفيات داكنة */
  --navy-800: #0E2A47;   /* اللون الأساسي */
  --navy-700: #143a5e;   /* درجة أفتح */
  --navy-100: #e9eef4;   /* خلفية كحلية باهتة */

  --gold-600: #B8862E;   /* ذهبي غامق للنصوص على فاتح */
  --gold-500: #C79A3E;   /* الذهبي الأساسي */
  --gold-400: #D9B558;   /* ذهبي فاتح للإضاءة */
  --gold-tint: #f5ecd6;  /* خلفية ذهبية شديدة الباهتة */

  --cream:    #FAF8F3;   /* الخلفية الأساسية */
  --cream-2:  #F3EFE7;   /* خلفية بديلة للأقسام */
  --white:    #ffffff;

  --ink:      #16222E;   /* نص أساسي */
  --slate:    #566374;   /* نص ثانوي */
  --line:     #e3ded3;   /* حدود ناعمة */

  /* Type */
  --f-display: "Cairo", "Tajawal", system-ui, sans-serif;
  --f-body: "Tajawal", system-ui, sans-serif;

  /* Scale */
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
  --step-3:  clamp(2rem, 1.7rem + 1.5vw, 3rem);
  --step-4:  clamp(2.6rem, 2rem + 3vw, 4.4rem);

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -24px rgba(14, 42, 71, 0.35);
  --shadow-sm: 0 8px 24px -14px rgba(14, 42, 71, 0.3);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--f-body);
  font-size: var(--step-0);
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--f-display); line-height: 1.25; font-weight: 800; }

::selection { background: var(--gold-400); color: var(--navy-900); }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.section { padding-block: clamp(4rem, 3rem + 5vw, 7rem); }
.nav__login { border: 1px solid rgba(199,154,62,.5); border-radius: 8px; padding: 6px 12px !important; white-space: nowrap; font-size: 0.88rem !important; }
.nav__login:hover { background: rgba(199,154,62,.1); }
.svc-card--product { border: 1.5px solid var(--gold-500); background: var(--gold-tint); }
.badge-new { font-size: .62rem; background: var(--gold-500); color: var(--navy-900); padding: 2px 8px; border-radius: 20px; margin-inline-start: 6px; vertical-align: middle; }
.mode--link { color: var(--gold-600); font-weight: 700; text-decoration: none; }
.section--tint { background: var(--cream-2); }
.section--navy { background: var(--navy-800); color: #dfe7f0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-display); font-weight: 700;
  font-size: var(--step--1); letter-spacing: 0.02em;
  color: var(--gold-600); text-transform: none;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.section--navy .eyebrow { color: var(--gold-400); }

.h-lead { font-size: var(--step-3); color: var(--navy-800); letter-spacing: -0.01em; }
.section--navy .h-lead { color: #fff; }
.sub {
  color: var(--slate); font-size: var(--step-1);
  max-width: 62ch; margin-top: 1rem;
}
.section--navy .sub { color: #b7c6d8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.6rem; border-radius: 999px;
  font-family: var(--f-display); font-weight: 700; font-size: var(--step-0);
  border: 2px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--gold {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 12px 26px -12px rgba(199,154,62,0.7);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(199,154,62,0.8); }
.btn--ghost { border-color: rgba(255,255,255,0.35); color: #fff; }
.btn--ghost:hover { border-color: var(--gold-400); color: var(--gold-400); }
.btn--outline { border-color: var(--navy-800); color: var(--navy-800); }
.btn--outline:hover { background: var(--navy-800); color: #fff; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 248, 243, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.is-stuck {
  border-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(14,42,71,0.5);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: 0.85rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__name { font-family: var(--f-display); font-weight: 800; font-size: 1.35rem; color: var(--navy-800); line-height: 1; }
.brand__tag { font-size: 0.72rem; color: var(--slate); font-weight: 500; letter-spacing: 0.06em; }

.nav__links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav__links a {
  padding: 0.5rem 0.65rem; border-radius: 999px;
  font-weight: 500; color: var(--ink); font-size: 0.92rem;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav__links a:hover { background: var(--navy-100); color: var(--navy-800); }
.nav__cta { margin-inline-start: 0.4rem; white-space: nowrap; }

.nav__toggle {
  display: none; background: none; border: 0; padding: 0.4rem;
  color: var(--navy-800);
}
.nav__toggle svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(199,154,62,0.14), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream) 60%, var(--cream-2) 100%);
}
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem;
  align-items: center;
  padding-block: clamp(3.5rem, 2.5rem + 6vw, 6.5rem);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--white); border: 1px solid var(--line);
  padding: 0.4rem 0.9rem; border-radius: 999px;
  font-family: var(--f-display); font-weight: 700; font-size: 0.85rem;
  color: var(--navy-700); box-shadow: var(--shadow-sm);
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 4px rgba(199,154,62,0.2); }
.hero h1 {
  font-size: var(--step-4); color: var(--navy-800);
  margin-top: 1.4rem; letter-spacing: -0.02em; line-height: 1.15;
}
.hero h1 .accent { color: var(--gold-600); position: relative; }
.hero__msg {
  font-size: var(--step-1); color: var(--slate);
  margin-top: 1.3rem; max-width: 52ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__trust { display: flex; gap: 2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero__trust .num { font-family: var(--f-display); font-weight: 800; font-size: 1.7rem; color: var(--navy-800); }
.hero__trust .lbl { font-size: 0.85rem; color: var(--slate); }

/* Hero visual — بطاقة "الملف التشخيصي" مع خط النبض */
.chart-card {
  position: relative; background: var(--white);
  border: 1px solid var(--line); border-radius: 22px;
  box-shadow: var(--shadow); padding: 1.6rem; overflow: hidden;
}
.chart-card__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.chart-card__title { font-family: var(--f-display); font-weight: 800; color: var(--navy-800); font-size: 1.1rem; }
.chart-card__badge { font-size: 0.72rem; font-weight: 700; color: #1c7a4a; background: #e5f4ec; padding: 0.25rem 0.7rem; border-radius: 999px; }
.pulse-box { margin-top: 1.1rem; background: var(--navy-800); border-radius: 14px; padding: 1rem 1.1rem; }
.pulse-box .cap { color: #9fb4cc; font-size: 0.78rem; margin-bottom: 0.2rem; }
.pulse-box .val { color: #fff; font-family: var(--f-display); font-weight: 800; font-size: 1.4rem; }
.pulse-box .val small { color: var(--gold-400); font-size: 0.9rem; font-weight: 700; }
.pulse-line { margin-top: 0.6rem; }
.pulse-line path { stroke: var(--gold-400); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.chart-metrics { margin-top: 1rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.chart-metrics .m { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 0.7rem 0.85rem; }
.chart-metrics .m .k { font-size: 0.72rem; color: var(--slate); }
.chart-metrics .m .v { font-family: var(--f-display); font-weight: 800; color: var(--navy-800); font-size: 1.15rem; }
.chart-metrics .m .v.up { color: #1c7a4a; }

/* هامش خط النبض العلوي في الهيرو */
.hero__pulse { position: absolute; inset-inline: 0; bottom: -1px; height: 60px; opacity: 0.5; pointer-events: none; }
.hero__pulse path { fill: none; stroke: var(--gold-500); stroke-width: 1.5; }

/* ---------- Method (الطبيب المعالج) ---------- */
.method__intro { max-width: 60ch; }
.method-flow {
  margin-top: 3rem; position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.method-flow::before {
  content: ""; position: absolute; top: 34px; inset-inline: 6%;
  height: 2px; background: repeating-linear-gradient(90deg, var(--gold-400) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.method-step { position: relative; z-index: 1; text-align: center; }
.method-step__num {
  width: 68px; height: 68px; margin-inline: auto;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gold-500);
  color: var(--navy-800); font-family: var(--f-display); font-weight: 800; font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.method-step h3 { margin-top: 1rem; font-size: 1.2rem; color: var(--navy-800); }
.method-step p { margin-top: 0.4rem; color: var(--slate); font-size: 0.96rem; }

/* ---------- Services ---------- */
.svc-grid { margin-top: 2.8rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ""; position: absolute; inset-inline-start: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::after { transform: scaleY(1); }
.svc-card__icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--gold-tint); color: var(--gold-600); margin-bottom: 1.1rem;
}
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.25rem; color: var(--navy-800); }
.svc-card p { margin-top: 0.6rem; color: var(--slate); font-size: 0.97rem; }
.svc-card .mode { display: inline-block; margin-top: 1rem; font-size: 0.78rem; font-weight: 700; color: var(--navy-700); background: var(--navy-100); padding: 0.3rem 0.8rem; border-radius: 999px; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.2rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); }
.stat .n { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem); color: var(--gold-400); }
.stat .l { color: #c3d1e2; font-size: 0.92rem; margin-top: 0.3rem; }

/* ---------- Pricing ---------- */
.price-grid { margin-top: 2.8rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card--featured {
  background: var(--navy-800); color: #dbe6f2; border-color: var(--navy-800);
  box-shadow: 0 26px 60px -26px rgba(14,42,71,0.6); position: relative;
}
.price-card--featured .price-card__name,
.price-card--featured .price-card__amount { color: #fff; }
.tag-pop { position: absolute; top: -13px; inset-inline-start: 50%; transform: translateX(50%);
  background: var(--gold-500); color: var(--navy-900); font-family: var(--f-display);
  font-weight: 800; font-size: 0.75rem; padding: 0.3rem 0.9rem; border-radius: 999px; white-space: nowrap; }
.price-card__name { font-family: var(--f-display); font-weight: 800; font-size: 1.1rem; color: var(--navy-800); min-height: 2.7em; }
.price-card__amount { font-family: var(--f-display); font-weight: 800; font-size: 1.55rem; color: var(--navy-800); margin-top: 0.6rem; }
.price-card__amount .cur { font-size: 0.9rem; color: var(--gold-600); font-weight: 700; }
.price-card--featured .price-card__amount .cur { color: var(--gold-400); }
.price-card__dur { font-size: 0.85rem; color: var(--slate); margin-top: 0.2rem; }
.price-card--featured .price-card__dur { color: #a9bcd2; }
.price-card .btn { margin-top: auto; width: 100%; justify-content: center; }

.price-note { margin-top: 1.4rem; font-size: 0.85rem; color: var(--slate); text-align: center; }

/* جدول كامل للأسعار الإضافية */
.price-extra { margin-top: 2rem; overflow: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.price-extra table { width: 100%; border-collapse: collapse; min-width: 480px; }
.price-extra th, .price-extra td { padding: 0.9rem 1.1rem; text-align: right; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.price-extra thead th { background: var(--navy-800); color: #fff; font-family: var(--f-display); font-weight: 700; }
.price-extra tbody tr:last-child td { border-bottom: 0; }
.price-extra tbody tr:hover { background: var(--gold-tint); }
.price-extra td:first-child { font-weight: 600; color: var(--navy-800); }

/* ---------- Industries ---------- */
.ind-grid { margin-top: 2.8rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.ind-card {
  padding: 1.6rem; border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--white); transition: background .3s, color .3s, transform .3s var(--ease);
}
.ind-card:hover { background: var(--navy-800); color: #dbe6f2; transform: translateY(-5px); }
.ind-card__n { font-family: var(--f-display); font-weight: 800; color: var(--gold-600); font-size: 0.95rem; }
.ind-card:hover .ind-card__n { color: var(--gold-400); }
.ind-card h3 { font-size: 1.15rem; color: var(--navy-800); margin-top: 0.5rem; }
.ind-card:hover h3 { color: #fff; }
.ind-card p { font-size: 0.92rem; color: var(--slate); margin-top: 0.5rem; }
.ind-card:hover p { color: #b7c6d8; }

/* ---------- Why us ---------- */
.why-grid { margin-top: 2.6rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.why-item { display: flex; gap: 1rem; padding: 1.4rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.why-item__check { flex: none; width: 40px; height: 40px; border-radius: 12px; background: var(--gold-tint); color: var(--gold-600); display: grid; place-items: center; }
.why-item__check svg { width: 22px; height: 22px; }
.why-item h3 { font-size: 1.08rem; color: var(--navy-800); }
.why-item p { font-size: 0.94rem; color: var(--slate); margin-top: 0.3rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.vm-cards { display: grid; gap: 1rem; margin-top: 1.6rem; }
.vm-card { padding: 1.3rem 1.4rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); border-inline-start: 4px solid var(--gold-500); }
.vm-card h3 { font-size: 1.05rem; color: var(--navy-800); }
.vm-card p { font-size: 0.95rem; color: var(--slate); margin-top: 0.3rem; }

/* ---------- Testimonials ---------- */
.quote-grid { margin-top: 2.6rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.quote {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; position: relative;
}
.quote__mark { font-family: Georgia, serif; font-size: 3rem; color: var(--gold-400); line-height: 0.6; height: 1rem; }
.quote p { color: var(--ink); font-size: 0.98rem; }
.quote__who { display: flex; align-items: center; gap: 0.7rem; margin-top: 1rem; }
.quote__av { width: 40px; height: 40px; border-radius: 50%; background: var(--navy-100); display: grid; place-items: center; color: var(--navy-700); font-family: var(--f-display); font-weight: 800; }
.quote__who .name { font-weight: 700; font-size: 0.9rem; color: var(--navy-800); }
.quote__who .role { font-size: 0.8rem; color: var(--slate); }
.ph-note { font-size: 0.78rem; color: var(--gold-600); background: var(--gold-tint); display: inline-block; padding: 0.25rem 0.7rem; border-radius: 999px; margin-top: 1.4rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(90% 120% at 15% 0%, rgba(199,154,62,0.18), transparent 55%),
    var(--navy-900);
  color: #fff; border-radius: 28px; padding: clamp(2.4rem, 1.6rem + 3vw, 4rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { font-size: var(--step-3); color: #fff; }
.cta-band p { color: #bcccdf; margin-top: 0.8rem; max-width: 55ch; margin-inline: auto; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: start; }
.contact-info li { list-style: none; display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: 1.3rem; }
.contact-info .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--white); border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-600); }
.contact-info .ic svg { width: 22px; height: 22px; }
.contact-info .k { font-size: 0.8rem; color: var(--slate); }
.contact-info .v { font-weight: 700; color: var(--navy-800); }
.socials { display: flex; gap: 0.7rem; margin-top: 0.5rem; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: var(--white); border: 1px solid var(--line); display: grid; place-items: center; color: var(--navy-700); transition: background .2s, color .2s, transform .2s; }
.socials a:hover { background: var(--navy-800); color: #fff; transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--navy-800); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.98rem;
  background: var(--cream); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(199,154,62,0.2); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field .err { color: #c0392b; font-size: 0.82rem; margin-top: 0.3rem; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: 0.8rem; color: var(--slate); margin-top: 0.8rem; }
.form-status { display: none; margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.92rem; }
.form-status.ok { display: block; background: #e5f4ec; color: #1c7a4a; }
.form-status.bad { display: block; background: #fdecec; color: #c0392b; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #a9bcd2; padding-block: 3.5rem 2rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer a { color: #a9bcd2; font-size: 0.93rem; display: block; padding: 0.25rem 0; transition: color .2s; }
.footer a:hover { color: var(--gold-400); }
.footer__brand p { font-size: 0.92rem; margin-top: 0.9rem; max-width: 34ch; }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero__visual { order: -1; }
  .svc-grid, .quote-grid { grid-template-columns: 1fr 1fr; }
  .price-grid, .ind-grid, .stats { grid-template-columns: 1fr 1fr; }
  .method-flow { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .method-flow::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1150px) {
  .nav__links { position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 1rem 1.2rem; gap: 0.2rem;
    box-shadow: var(--shadow); transform: translateY(-120%); transition: transform .35s var(--ease); z-index: 55; }
  .nav__links.open { transform: none; }
  .nav__links a { padding: 0.8rem 1rem; white-space: normal; }
  .nav__cta { margin: 0.6rem 0 0; }
  .nav__login { display: block; text-align: center; margin: 0.3rem 0 0; }
  .nav__toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  .svc-grid, .quote-grid, .price-grid, .ind-grid, .stats, .method-flow, .form-row, .footer__top { grid-template-columns: 1fr; }
  .hero__trust { gap: 1.4rem; }
}
