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

:root {
  --orange:        #e8621a;
  --orange-light:  #f07d3a;
  --orange-pale:   #fff4ed;
  --orange-border: #fddcc8;
  --charcoal:      #2a2a2a;
  --ink:           #1e1e1e;
  --warm-bg:       #fdf8f4;
  --cream:         #fffcf9;
  --muted:         #6b6570;
  --border:        #ecddd2;
  --gold-light:    #f5e9c8;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream); color: var(--ink);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 64px; height: 80px;
  background: rgba(255,252,249,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 72px; width: auto; display: block; }

.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.9rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important; color: white !important;
  padding: 10px 22px; border-radius: 8px; font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(232,98,26,0.28);
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all 0.25s;
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 0; right: -100%;
  width: 280px; height: 100vh;
  background: white; z-index: 300;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 40px rgba(0,0,0,0.12);
  transition: right 0.3s ease; flex-direction: column;
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; }
.mobile-menu ul li { border-bottom: 1px solid var(--border); }
.mm-link {
  display: block; padding: 16px 0;
  text-decoration: none; font-size: 1.05rem; font-weight: 500; color: var(--ink);
  transition: color 0.2s;
}
.mm-link:hover { color: var(--orange); }
.mm-cta {
  display: block; margin-top: 24px; text-align: center;
  background: var(--orange); color: white !important;
  padding: 14px 24px; border-radius: 8px; font-weight: 600; text-decoration: none;
  box-shadow: 0 4px 14px rgba(232,98,26,0.3);
}
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; font-size: 1.3rem;
  cursor: pointer; color: var(--muted); padding: 6px;
}
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 250;
  background: rgba(0,0,0,0.4);
}
.mobile-overlay.open { display: block; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 80px; background: var(--cream);
  position: relative; overflow: hidden;
}
.hero-blob { position: absolute; pointer-events: none; }
.hero-blob-1 {
  top: -160px; right: -200px; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,26,0.08) 0%, transparent 68%);
  animation: drift1 10s ease-in-out infinite;
}
.hero-blob-2 {
  bottom: -120px; left: -150px; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,58,0.07) 0%, transparent 68%);
  animation: drift2 13s ease-in-out infinite;
}
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-15px,-20px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(12px,16px)} }

.hero-left {
  padding: 72px 48px 72px 72px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-pale); border: 1px solid var(--orange-border);
  color: var(--orange); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px;
  width: fit-content; margin-bottom: 32px;
  animation: fadeUp 0.5s ease both;
}
.hero-pill-dot {
  width: 6px; height: 6px; background: var(--orange); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.75)} }

.hero-h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.8rem, 4.2vw, 4rem);
  font-weight: 700; line-height: 1.12; color: var(--ink); margin-bottom: 24px;
  animation: fadeUp 0.5s 0.08s ease both;
}
.hero-h1 em { font-style: italic; color: var(--orange); }

.hero-sub {
  font-size: 1.05rem; line-height: 1.85; color: var(--muted);
  max-width: 450px; margin-bottom: 44px;
  animation: fadeUp 0.5s 0.16s ease both;
}
.hero-actions {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  animation: fadeUp 0.5s 0.24s ease both;
}

.btn-primary {
  background: var(--orange); color: white;
  padding: 14px 32px; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  display: inline-block; cursor: pointer;
  box-shadow: 0 6px 20px rgba(232,98,26,0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--orange-light); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,98,26,0.38);
}
.btn-outline {
  color: var(--ink); font-weight: 500; font-size: 0.95rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 24px; border-radius: 8px; border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--orange); background: var(--orange-pale); }

.hero-right {
  display: flex; align-items: center; justify-content: center;
  padding: 60px 72px 60px 20px;
  position: relative; z-index: 1;
  animation: fadeUp 0.5s 0.12s ease both;
}
.hero-card {
  background: white; border-radius: 20px; padding: 36px;
  box-shadow: 0 20px 60px rgba(30,20,10,0.1), 0 2px 8px rgba(30,20,10,0.04);
  width: 100%; max-width: 420px; border: 1px solid var(--border);
}
.hero-card-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.hero-card-quote {
  font-family: 'Lora', serif; font-size: 1.05rem; line-height: 1.7;
  font-style: italic; color: var(--ink);
  padding-bottom: 22px; border-bottom: 1px solid var(--border); margin-bottom: 22px;
}
.cred-list { display: flex; flex-direction: column; gap: 10px; }
.cred-row {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 0.81rem; color: var(--muted); line-height: 1.45;
}
.cred-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--orange-pale); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; margin-top: 1px;
}
.cred-row strong { display: block; color: var(--ink); font-weight: 600; font-size: 0.82rem; }
.gold-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--gold-light); color: #7a5800;
  font-size: 0.7rem; font-weight: 700;
  padding: 2px 9px; border-radius: 100px; margin-top: 2px;
}

/* ─────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────── */
.trust-bar { background: var(--charcoal); padding: 15px 64px; overflow: hidden; }
.trust-scroll {
  display: flex; align-items: center;
  gap: 32px; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.79rem; font-weight: 500;
  color: rgba(255,255,255,0.48); white-space: nowrap;
}
.trust-item strong { color: #f0a060; font-weight: 700; }
.trust-dot { color: rgba(255,255,255,0.15); font-size: 1.1rem; }

/* ─────────────────────────────────────────
   SHARED
───────────────────────────────────────── */
section { padding: 96px 72px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 24px; height: 2px;
  background: var(--orange); border-radius: 2px; flex-shrink: 0;
}
.section-title {
  font-family: 'Lora', serif; font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700; line-height: 1.2; color: var(--ink); margin-bottom: 18px;
}
.section-sub { font-size: 1rem; line-height: 1.85; color: var(--muted); max-width: 580px; }

/* ─────────────────────────────────────────
   PROBLEM / SOLUTION
───────────────────────────────────────── */
.problem-section {
  background: var(--warm-bg);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; max-width: 1140px; margin: 0 auto;
}
.pain-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.pain-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: white; padding: 22px; border-radius: 14px; border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pain-card:hover { transform: translateX(5px); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.pain-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pain-text strong { display: block; font-weight: 600; font-size: 0.93rem; margin-bottom: 4px; }
.pain-text p { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }
.solution-card {
  background: var(--charcoal); border-radius: 22px; padding: 44px;
  color: white; position: relative; overflow: hidden;
}
.solution-card::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,26,0.18) 0%, transparent 68%);
}
.solution-card .section-label { color: #f0a060; position: relative; }
.solution-card .section-label::before { background: #f0a060; }
.solution-card .section-title { color: white; font-size: 1.75rem; position: relative; }
.solution-card p { color: rgba(255,255,255,0.6); line-height: 1.85; font-size: 0.93rem; margin-bottom: 14px; position: relative; }

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services-inner { max-width: 1180px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-label { justify-content: center; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.svc-card {
  background: white; border: 1px solid var(--border); border-radius: 18px; padding: 36px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 14px 48px rgba(30,20,10,0.1); }
.svc-top-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.svc-card:hover .svc-top-bar { transform: scaleX(1); }
.svc-num { font-family: 'Lora', serif; font-size: 3.8rem; font-weight: 700; color: #f5ede6; line-height: 1; margin-bottom: 6px; }
.svc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.svc-card h3 { font-family: 'Lora', serif; font-size: 1.38rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.svc-badge {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--orange); background: var(--orange-pale);
  padding: 5px 11px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; margin-top: 4px;
}
.svc-card > p { font-size: 0.9rem; color: var(--muted); line-height: 1.78; margin-bottom: 20px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.svc-list li { font-size: 0.87rem; color: var(--ink); display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
.svc-list li::before { content: '✦'; color: var(--orange); font-size: 0.65rem; margin-top: 4px; flex-shrink: 0; }
.svc-card.featured { background: linear-gradient(150deg, #fff8f3, #fff4ee); border-color: #f5d4be; }
.svc-cta {
  margin-top: 22px; display: inline-block; text-decoration: none;
  border: 1.5px solid var(--orange-border); color: var(--orange);
  font-size: 0.87rem; font-weight: 700;
  padding: 10px 18px; border-radius: 8px;
  transition: background 0.2s, border-color 0.2s;
}
.svc-cta:hover { background: var(--orange-pale); border-color: var(--orange); }

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about-section {
  background: var(--warm-bg);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: center; max-width: 1140px; margin: 0 auto; }
.about-photo { border-radius: 22px; overflow: hidden; box-shadow: 0 24px 64px rgba(30,20,10,0.14); aspect-ratio: 4/5; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.about-right p { font-size: 0.95rem; line-height: 1.88; color: var(--muted); margin-bottom: 16px; }
.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.cred-tile { background: white; border: 1px solid var(--border); border-radius: 13px; padding: 18px; transition: transform 0.2s, box-shadow 0.2s; }
.cred-tile:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.cred-tile .ti { font-size: 1.25rem; margin-bottom: 8px; }
.cred-tile strong { display: block; font-size: 0.83rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; line-height: 1.3; }
.cred-tile span { font-size: 0.76rem; color: var(--muted); line-height: 1.4; display: block; }

/* ─────────────────────────────────────────
   PROCESS
───────────────────────────────────────── */
.process-inner { max-width: 840px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-label { justify-content: center; }
.steps { display: flex; flex-direction: column; position: relative; }
.steps::before { content: ''; position: absolute; left: 27px; top: 28px; bottom: 28px; width: 2px; background: var(--border); }
.step { display: grid; grid-template-columns: 54px 1fr; gap: 28px; padding: 22px 0; }
.step-num {
  width: 54px; height: 54px; background: var(--orange); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(232,98,26,0.28); position: relative; z-index: 1; flex-shrink: 0;
}
.step-body { padding-top: 10px; }
.step-body h4 { font-family: 'Lora', serif; font-size: 1.22rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.step-body p { font-size: 0.91rem; color: var(--muted); line-height: 1.8; }

/* ─────────────────────────────────────────
   WORKSHOPS
───────────────────────────────────────── */
.workshops-section { background: var(--charcoal); }
.workshops-inner { max-width: 1140px; margin: 0 auto; }
.workshops-header { margin-bottom: 50px; }
.workshops-section .section-label { color: #f0a060; }
.workshops-section .section-label::before { background: #f0a060; }
.workshops-section .section-title { color: white; }
.workshops-section .section-sub { color: rgba(255,255,255,0.5); }
.w-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.w-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px; padding: 32px; display: flex; flex-direction: column;
  transition: background 0.2s, transform 0.2s; position: relative; overflow: hidden;
}
.w-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), #f5a060);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.w-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.w-card:hover::after { transform: scaleX(1); }
.w-icon { font-size: 2rem; margin-bottom: 18px; }
.w-card h4 { font-family: 'Lora', serif; font-size: 1.12rem; font-weight: 700; color: white; margin-bottom: 12px; line-height: 1.35; }
.w-card p { font-size: 0.87rem; color: rgba(255,255,255,0.48); line-height: 1.8; flex: 1; }
.bonus-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(240,160,96,0.18); color: #f5c070;
  font-size: 0.73rem; font-weight: 700;
  padding: 5px 12px; border-radius: 100px; margin-top: 18px; width: fit-content;
}
.w-cta {
  margin-top: 18px; display: inline-block; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7);
  font-size: 0.85rem; font-weight: 700; padding: 9px 16px; border-radius: 8px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.w-cta:hover { background: rgba(232,98,26,0.2); border-color: var(--orange); color: white; }

/* ─────────────────────────────────────────
   BLOG
───────────────────────────────────────── */
.blog-section {
  background: var(--warm-bg);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.blog-inner { max-width: 1140px; margin: 0 auto; }
.blog-header { margin-bottom: 48px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.blog-card {
  background: white; border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(28,28,28,0.09); }
.blog-card-body { padding: 26px 26px 0; flex: 1; }
.blog-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--orange); background: var(--orange-pale);
  padding: 4px 10px; border-radius: 100px; margin-bottom: 12px;
}
.blog-card h3 { font-family: 'Lora', serif; font-size: 1.06rem; font-weight: 700; color: var(--ink); line-height: 1.45; margin-bottom: 10px; }
.blog-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.blog-card-foot { padding: 16px 26px 22px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.blog-date { font-size: 0.76rem; color: var(--muted); font-weight: 500; }
.blog-link { font-size: 0.82rem; font-weight: 700; color: var(--orange); text-decoration: none; transition: opacity 0.2s; }
.blog-link:hover { opacity: 0.75; }
.blog-cta { text-align: center; margin-top: 40px; }
.btn-ghost {
  color: var(--orange); font-weight: 600; font-size: 0.92rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 24px; border-radius: 8px; border: 1.5px solid var(--orange-border);
  transition: background 0.2s;
}
.btn-ghost:hover { background: var(--orange-pale); }

/* ─────────────────────────────────────────
   CONTACT / CTA
───────────────────────────────────────── */
.cta-section {
  text-align: center; padding: 108px 72px;
  background: var(--cream); position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232,98,26,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-inner .section-label { justify-content: center; margin-bottom: 20px; }
.cta-inner .section-title { font-size: clamp(2rem, 3.2vw, 3rem); margin-bottom: 20px; }
.cta-inner .section-sub { margin: 0 auto 48px; }

/* Contact Cards */
.contact-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px;
}
.contact-card {
  display: flex; align-items: center; gap: 20px;
  padding: 28px 28px; border-radius: 18px;
  text-decoration: none; transition: transform 0.22s, box-shadow 0.22s;
  text-align: left;
}
.contact-card:hover { transform: translateY(-4px); }

.contact-card--email {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  box-shadow: 0 8px 32px rgba(232,98,26,0.28);
}
.contact-card--email:hover { box-shadow: 0 14px 44px rgba(232,98,26,0.38); }

.contact-card--sms {
  background: var(--charcoal);
  box-shadow: 0 8px 32px rgba(40,40,40,0.18);
}
.contact-card--sms:hover { box-shadow: 0 14px 44px rgba(40,40,40,0.28); }

.cc-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card--email .cc-icon-wrap { background: rgba(255,255,255,0.2); color: white; }
.contact-card--sms   .cc-icon-wrap { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }

.cc-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cc-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.contact-card--email .cc-label { color: rgba(255,255,255,0.75); }
.contact-card--sms   .cc-label { color: rgba(255,255,255,0.45); }

.cc-value {
  font-size: 1rem; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.contact-card--email .cc-value { color: white; }
.contact-card--sms   .cc-value { color: white; }

.cc-hint { font-size: 0.76rem; }
.contact-card--email .cc-hint { color: rgba(255,255,255,0.65); }
.contact-card--sms   .cc-hint { color: rgba(255,255,255,0.35); }

.cta-note { font-size: 0.84rem; color: var(--muted); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--charcoal); color: rgba(255,255,255,0.5);
  padding: 60px 72px 0;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 52px;
}
.footer-logo img { height: 52px; width: auto; margin-bottom: 16px; display: block; }
footer > div > p { font-size: 0.86rem; line-height: 1.82; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.footer-contact-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45); font-size: 0.85rem;
  text-decoration: none; transition: color 0.2s;
}
.footer-contact-link:hover { color: white; }
footer h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 20px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
footer ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
footer ul a:hover { color: white; }
.footer-rule { grid-column: 1/-1; border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 48px; }
.footer-bottom {
  background: var(--charcoal); padding: 20px 72px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.22); }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────
   MOBILE
───────────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 10px 24px; height: 72px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  section { padding: 64px 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 72px; }
  .hero-left { padding: 48px 24px 24px; }
  .hero-right { padding: 0 24px 52px; }
  .hero-card { max-width: 100%; }

  .problem-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .w-grid, .blog-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }

  .contact-cards { grid-template-columns: 1fr; gap: 14px; }
  .cc-value { font-size: 0.9rem; }

  footer { grid-template-columns: 1fr; padding: 48px 24px 0; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 18px 24px; }
  .trust-bar { padding: 14px 24px; }
  .cta-section { padding: 80px 24px; }
}
