/* =====================================================
   DermaCure — Premium Dermatology One-Page Site
   Design system: white / medical blue / teal / soft gray
   ===================================================== */

:root {
  --c-bg: #ffffff;
  --c-bg-alt: #f6fafb;
  --c-ink: #0b1320;
  --c-ink-2: #36445a;
  --c-muted: #5f6b80;
  --c-line: #e6eef3;
  --c-blue: #1769ff;        /* medical blue */
  --c-blue-600: #1256d4;
  --c-teal: #0a8ea0;        /* teal accent */
  --c-teal-600: #077485;
  --c-mint: #d6f3f6;
  --c-grad-a: #0a8ea0;
  --c-grad-b: #1769ff;
  --c-soft: #eaf3fb;
  --c-shadow: 0 12px 40px rgba(13, 60, 105, 0.08);
  --c-shadow-lg: 0 24px 60px rgba(13, 60, 105, 0.12);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --max: 1180px;
  --t-fast: 180ms cubic-bezier(.2,.7,.2,1);
  --t-med: 320ms cubic-bezier(.2,.7,.2,1);
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--c-blue); text-decoration: none; }
a:hover { color: var(--c-blue-600); }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.narrow { max-width: 820px; }

/* ============== Typography ============== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--c-ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { color: var(--c-ink-2); margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-teal);
  background: var(--c-mint);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}

.grad-text {
  background: linear-gradient(90deg, var(--c-grad-a), var(--c-grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead { font-size: 1.125rem; color: var(--c-ink-2); max-width: 60ch; }
.muted { color: var(--c-muted); }
.micro { font-size: .8rem; color: var(--c-muted); margin-top: 12px; }

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c-teal), var(--c-blue));
  color: #fff;
  box-shadow: 0 8px 22px rgba(10, 142, 160, 0.28);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(10, 142, 160, 0.36); color: #fff; }
.btn-ghost {
  background: #fff;
  color: var(--c-ink);
  border-color: var(--c-line);
}
.btn-ghost:hover { border-color: var(--c-blue); color: var(--c-blue); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ============== Header ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), background var(--t-med);
}
.site-header.scrolled {
  border-bottom-color: var(--c-line);
  background: rgba(255, 255, 255, 0.95);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--c-ink);
}
.brand-logo { width: 38px; height: 38px; }
.brand-name { letter-spacing: -0.01em; }

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 26px;
}
.primary-nav a {
  color: var(--c-ink-2);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: 6px 0;
  transition: color var(--t-fast);
}
.primary-nav a:hover { color: var(--c-blue); }
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-teal), var(--c-blue));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.primary-nav a:hover::after { transform: scaleX(1); }

.nav-cta { padding: 10px 18px; font-size: .9rem; }

.mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}
.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============== Hero ============== */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(10, 142, 160, 0.10), transparent 70%),
    radial-gradient(50% 50% at 10% 80%, rgba(23, 105, 255, 0.08), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f3f9fb 100%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 { margin-top: 8px; }
.trust-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}
.trust-list li {
  display: flex; align-items: center; gap: 8px;
  color: var(--c-ink-2);
  font-size: .95rem;
}
.check {
  display: inline-flex;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-mint);
  color: var(--c-teal-600);
  align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
  flex-shrink: 0;
}
.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 8px;
}
.hero-meta {
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
}
.avatars { display: flex; }
.av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 3px solid #fff;
  background-size: cover; background-position: center;
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.av:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg, #ffd1dc, #ff8db3); }
.av-2 { background: linear-gradient(135deg, #cfe9ff, #6ab2ff); }
.av-3 { background: linear-gradient(135deg, #d6f3f6, #6cd0d8); }
.av-4 { background: linear-gradient(135deg, #e3e0ff, #8c84ff); }
.stars { color: #f5a524; font-size: .9rem; letter-spacing: 1px; }
.hero-meta small { color: var(--c-muted); }

.hero-visual { position: relative; }
.hero-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--c-shadow-lg);
  border: 1px solid var(--c-line);
}
.hero-card img { width: 100%; height: auto; }
.hero-floating {
  position: absolute;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--c-shadow);
  font-size: .85rem;
}
.hero-floating strong { display: block; color: var(--c-ink); }
.hero-floating small { color: var(--c-muted); }
.hero-floating-1 { top: 22px; left: -16px; }
.hero-floating-2 { bottom: 22px; right: -16px; flex-direction: column; align-items: flex-start; gap: 2px; }
.hero-floating-2 strong { font-size: 1.5rem; color: var(--c-teal); }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-green { background: #2bbf6e; box-shadow: 0 0 0 4px rgba(43, 191, 110, .15); }

/* ============== Sections ============== */
.section { padding: clamp(64px, 8vw, 100px) 0; }
.section-alt { background: var(--c-bg-alt); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-head p { color: var(--c-muted); }

/* ============== Steps ============== */
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 28px 22px;
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--c-shadow);
  border-color: transparent;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--c-blue);
  letter-spacing: .04em;
  margin-bottom: 14px;
  display: inline-block;
  padding: 4px 10px;
  background: var(--c-soft);
  border-radius: var(--r-pill);
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c-mint), #eaf1ff);
  color: var(--c-teal-600);
  margin-bottom: 16px;
}
.step-icon svg { width: 28px; height: 28px; }
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { font-size: .95rem; color: var(--c-muted); margin: 0; }

/* ============== Form ============== */
.consult-form {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: clamp(20px, 4vw, 40px);
  box-shadow: var(--c-shadow);
}
.consult-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 32px;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 28px;
}
.consult-form fieldset:last-of-type { border-bottom: 0; padding-bottom: 0; margin-bottom: 18px; }
.consult-form legend {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-ink);
  margin-bottom: 18px;
  padding: 0;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-ink-2);
}
.req { color: #e25555; }
.field input, .field select, .field textarea {
  font: inherit;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  background: #fff;
  color: var(--c-ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.12);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dropzone {
  position: relative;
  border: 2px dashed var(--c-line);
  border-radius: var(--r-md);
  background: #fafcfe;
  padding: 36px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.dropzone:hover, .dropzone.dragover {
  border-color: var(--c-blue);
  background: #f1f7ff;
}
.dz-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.dz-inner svg { width: 36px; height: 36px; color: var(--c-teal); }
.dz-inner p { margin: 0; color: var(--c-ink-2); }
.dz-link { color: var(--c-blue); font-weight: 600; }
.dz-inner small { color: var(--c-muted); }
.dz-progress {
  position: absolute;
  left: 16px; right: 16px; bottom: 12px;
  height: 4px;
  background: var(--c-line);
  border-radius: 4px;
  overflow: hidden;
}
.dz-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--c-teal), var(--c-blue));
  transition: width var(--t-med);
}

.thumbs {
  list-style: none;
  margin: 18px 0 8px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
}
.thumb {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: #eef3f8;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb button {
  position: absolute;
  top: 6px; right: 6px;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: .8rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast);
}
.thumb button:hover { background: #e25555; }
.thumbs-meta { color: var(--c-muted); font-size: .85rem; margin: 0; }

.consent label {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--c-ink-2); font-size: .95rem;
  cursor: pointer;
}
.consent input { margin-top: 4px; accent-color: var(--c-teal); }

.form-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 8px;
}

/* ============== Pricing ============== */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  text-align: center;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--c-shadow); }
.plan-featured {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, var(--c-teal), var(--c-blue)) border-box;
  box-shadow: 0 16px 40px rgba(10, 142, 160, 0.18);
  transform: translateY(-6px);
}
.plan-featured:hover { transform: translateY(-10px); }
.plan .badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--c-teal), var(--c-blue));
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.plan .price { margin: 6px 0 18px; }
.plans-single {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.plan .amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  background: linear-gradient(135deg, var(--c-teal), var(--c-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan .features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  text-align: left;
  display: flex; flex-direction: column; gap: 10px;
  color: var(--c-ink-2);
  font-size: .95rem;
}
.plan .features li {
  position: relative;
  padding-left: 26px;
}
.plan .features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-mint);
  color: var(--c-teal-600);
  font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.pay-info { text-align: center; margin: 30px 0 18px; }
.pay-pills {
  display: inline-flex; flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  border: 1px solid var(--c-line);
  color: var(--c-ink-2);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 500;
}
.pill svg { width: 16px; height: 16px; color: var(--c-teal); }
.paypal-mark {
  font-weight: 800;
  font-style: italic;
  background: linear-gradient(90deg, #003087, #009cde);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.paypal-wrap {
  margin: 30px auto 0;
  max-width: 520px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 26px;
  text-align: center;
  box-shadow: var(--c-shadow);
}
.paypal-wrap h3 { margin-bottom: 4px; }

/* ============== Video consult ============== */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: stretch;
}
.platforms { display: flex; flex-direction: column; gap: 12px; }
.plat {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.plat:hover { transform: translateY(-2px); }
.plat.active { border-color: var(--c-blue); box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.10); }
.plat strong { display: block; color: var(--c-ink); }
.plat small { color: var(--c-muted); }
.plat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.plat-zoom   { background: #2D8CFF; }
.plat-meet   { background: #00897B; }
.plat-teams  { background: #5059C9; }
.vid-features {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex; flex-direction: column; gap: 8px;
  color: var(--c-ink-2);
  font-size: .92rem;
}
.booking {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--c-shadow);
}
.booking h3 { margin-bottom: 18px; }

/* ============== Testimonials ============== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.t-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--c-shadow); }
.t-card .stars { color: #f5a524; margin-bottom: 12px; font-size: 1.05rem; }
.t-card p { font-size: 1rem; color: var(--c-ink-2); margin: 0 0 16px; }
.t-card footer { display: flex; flex-direction: column; gap: 2px; }
.t-card footer strong { color: var(--c-ink); }
.t-card footer span { color: var(--c-muted); font-size: .85rem; }

/* ============== Trust grid ============== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.t-item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 22px 18px;
  text-align: center;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.t-item:hover { transform: translateY(-4px); box-shadow: var(--c-shadow); }
.t-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c-mint), #eaf1ff);
  color: var(--c-teal-600);
}
.t-icon svg { width: 26px; height: 26px; }
.t-item h4 { margin-bottom: 6px; }
.t-item p { margin: 0; color: var(--c-muted); font-size: .9rem; }

.badges {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--c-mint), #eaf1ff);
  color: var(--c-teal-600);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 600;
}

/* ============== FAQ ============== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 0;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq[open] { border-color: var(--c-blue); box-shadow: var(--c-shadow); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--c-ink);
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--c-soft);
  color: var(--c-blue);
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform var(--t-fast), background var(--t-fast);
  flex-shrink: 0;
}
.faq[open] summary::after { content: '−'; background: var(--c-blue); color: #fff; }
.faq p { margin: 0; padding: 0 22px 20px; color: var(--c-ink-2); }

/* ============== Contact ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: start;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--c-shadow);
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 20px;
}
.info-card h4 { margin-bottom: 6px; color: var(--c-ink); }
.info-card p { margin: 0; color: var(--c-ink-2); font-size: .95rem; }

/* ============== Footer ============== */
.site-footer {
  background: linear-gradient(180deg, #0b1a2c 0%, #0a1525 100%);
  color: #c9d6e6;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.f-brand p { color: #9bb0c9; max-width: 36ch; }
.brand-light { color: #fff; }
.brand-light span { color: #fff; }
.f-col h5 {
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.f-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.f-col a { color: #9bb0c9; font-size: .9rem; }
.f-col a:hover { color: #fff; }
.f-col p { color: #9bb0c9; font-size: .9rem; }

.socials { display: flex; gap: 10px; margin-top: 12px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: #c9d6e6;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.socials a:hover { background: linear-gradient(135deg, var(--c-teal), var(--c-blue)); color: #fff; transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

.newsletter { display: flex; gap: 8px; margin-top: 10px; }
.newsletter input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #fff;
  font: inherit;
}
.newsletter input::placeholder { color: #6f83a0; }
.newsletter input:focus { outline: none; border-color: var(--c-blue); }
.newsletter .btn { padding: 10px 16px; }

.f-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #7a8ea8;
}
.f-bottom small { color: #7a8ea8; font-size: .82rem; max-width: 60ch; }

/* ============== Toast ============== */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--c-ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: .9rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med), transform var(--t-med);
  z-index: 100;
  max-width: 90vw;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { background: #0a8ea0; }
.toast.error { background: #d24848; }

/* ============== Reveal animation ============== */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.7,.2,1);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== Responsive ============== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-4px); }
  .testimonials { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .primary-nav, .nav-cta { display: none; }
  .mobile-toggle { display: inline-flex; }
  .primary-nav.open {
    display: block;
    position: absolute;
    top: 100%; left: 16px; right: 16px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 16px;
    padding: 14px;
    box-shadow: var(--c-shadow-lg);
    margin-top: 8px;
  }
  .primary-nav.open ul { flex-direction: column; gap: 4px; }
  .primary-nav.open a { display: block; padding: 12px 14px; border-radius: 10px; }
  .primary-nav.open a:hover { background: var(--c-soft); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-floating-1 { left: 8px; }
  .hero-floating-2 { right: 8px; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-list { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}

/* ============== Accessibility ============== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus-visible {
  outline: 3px solid rgba(23, 105, 255, .4);
  outline-offset: 2px;
  border-radius: 6px;
}
