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

:root {
  --bg: #FAFAF7;
  --bg-warm: #F5F3EE;
  --bg-section: #F0EDE5;
  --white: #FFFFFF;
  --sand: #E8E2D8;
  --sand-mid: #D9D2C6;
  --sand-dark: #B8AFA0;
  --accent: #1D6FA4;
  --accent-dark: #155A87;
  --accent-pale: #EAF4FB;
  --accent-mid: #3D8DC4;
  --green: #2D7A4F;
  --green-bg: #EBF5EF;
  --text-dark: #18160F;
  --text-body: #38352C;
  --text-muted: #6B6658;
  --text-light: #9C9588;
  --radius: 18px;
  --radius-sm: 10px;
  --sh-soft: 0 2px 16px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.03);
  --sh-card: 0 4px 32px rgba(0,0,0,0.07), 0 1px 6px rgba(0,0,0,0.03);
  --sh-hover: 0 12px 48px rgba(0,0,0,0.11), 0 2px 10px rgba(0,0,0,0.05);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(250,250,247,0.90);
  backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--sand);
  height: 66px;
  display: flex; align-items: center;
  padding: 0 clamp(1.25rem,4vw,3.5rem);
  gap: 2rem;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px; margin: 0 auto;
}
.nav-logo, .logo {
  font-family: 'Lora', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--text-dark); text-decoration: none;
  letter-spacing: -0.02em; flex-shrink: 0;
}
.nav-logo span, .logo span { color: var(--accent); }
.nav-links {
  display: flex; gap: 1.75rem; list-style: none; margin-left: auto;
}
.nav-links a {
  font-size: .88rem; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent) !important; color: #fff !important;
  padding: .42rem 1.1rem; border-radius: 50px; font-weight: 500 !important;
  transition: background .2s, transform .15s !important; flex-shrink: 0;
}
.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }
.nav-burger, .burger { display: none; cursor: pointer; background: none; border: none; flex-direction: column; gap: 5px; margin-left: auto; }
.nav-burger span, .burger span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: .3s; }

/* ── HERO ── */
.hero {
  min-height: 100svh; padding: 100px clamp(1.25rem,5vw,5rem) 70px;
  background: var(--bg-warm);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -150px; right: -100px;
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(29,111,164,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: 5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,122,79,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 3.5rem; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent-pale); color: var(--accent);
  font-size: .78rem; font-weight: 500;
  padding: .32rem .85rem; border-radius: 50px; margin-bottom: 1.5rem;
  border: 1px solid rgba(29,111,164,.15);
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700; line-height: 1.18;
  color: var(--text-dark); letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}
h1 em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 1.08rem; color: var(--text-muted); font-weight: 300;
  margin-bottom: 2.25rem; max-width: 520px; line-height: 1.75;
}
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--accent); color: #fff;
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 500; font-size: .97rem; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(29,111,164,.28);
  font-family: 'Outfit', sans-serif;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(29,111,164,.35); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: .45rem;
  background: transparent; color: var(--text-body);
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 500; font-size: .97rem; text-decoration: none;
  border: 1.5px solid var(--sand-dark);
  transition: border-color .2s, color .2s, transform .2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--sand);
}
.stat-num {
  font-family: 'Lora', serif;
  font-size: 2rem; font-weight: 700; color: var(--text-dark); line-height: 1; margin-bottom: .2rem;
}
.stat-label { font-size: .78rem; color: var(--text-light); font-weight: 400; }

/* Hero Card Visual */
.hero-visual { position: relative; }
.hero-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--sh-card); border: 1px solid var(--sand);
  padding: 1.75rem; animation: cardFloat 7s ease-in-out infinite;
}
@keyframes cardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

.card-top { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.5rem; }
.card-av {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-mid));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 700;
}
.card-meta h4 { font-size: .95rem; font-weight: 600; color: var(--text-dark); }
.card-meta p { font-size: .78rem; color: var(--text-muted); }
.card-avail {
  margin-left: auto; font-size: .73rem; color: var(--green); font-weight: 500;
  display: flex; align-items: center; gap: .3rem;
}
.card-avail::before { content: ''; width: 7px; height: 7px; background: var(--green); border-radius: 50%; display: block; }

.card-pills { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.35rem; }
.pill {
  background: var(--bg-warm); color: var(--text-body);
  font-size: .72rem; padding: .22rem .6rem; border-radius: 50px;
  border: 1px solid var(--sand); font-weight: 500;
}
.pill.blue { background: var(--accent-pale); color: var(--accent); border-color: rgba(29,111,164,.2); }

.card-box {
  background: var(--bg-section); border-radius: var(--radius-sm);
  padding: 1rem; display: flex; align-items: center; justify-content: space-between;
}
.box-label { font-size: .78rem; color: var(--text-muted); }
.box-val { font-family: 'Lora', serif; font-size: 1.45rem; font-weight: 700; color: var(--green); }

.float-a {
  position: absolute; bottom: -18px; left: -28px;
  background: var(--white); border-radius: var(--radius-sm);
  padding: .8rem 1rem; box-shadow: var(--sh-card); border: 1px solid var(--sand);
  display: flex; align-items: center; gap: .6rem;
  animation: cardFloat 5s ease-in-out infinite 1.8s;
}
.float-b {
  position: absolute; top: 16px; right: -22px;
  background: var(--accent); border-radius: var(--radius-sm);
  padding: .7rem .95rem; box-shadow: 0 8px 24px rgba(29,111,164,.3);
  color: #fff; text-align: center;
  animation: cardFloat 4.5s ease-in-out infinite 3s;
}
.float-b-num { font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 700; line-height: 1; }
.float-b-sub { font-size: .68rem; opacity: .75; }

/* ── MARQUEE ── */
.marquee-bar { background: var(--text-dark); padding: .9rem 0; overflow: hidden; }
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.mq-item {
  display: inline-flex; align-items: center; gap: 1rem;
  color: rgba(255,255,255,.55); font-size: .82rem; padding: 0 1.5rem;
}
.mq-item strong { color: rgba(255,255,255,.85); font-weight: 500; }
.mq-sep { color: rgba(255,255,255,.2); }

/* ── SECTIONS COMMON ── */
section { padding: clamp(3.5rem,7vw,6rem) clamp(1.25rem,4vw,3.5rem); }
.container, .s-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
.s-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .6rem;
}
h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 700; color: var(--text-dark);
  letter-spacing: -0.02em; line-height: 1.2; margin-bottom: .9rem;
}
.section-title { text-align: center; margin-bottom: 3rem; }
.s-sub {
  font-size: 1.02rem; color: var(--text-muted); font-weight: 300;
  max-width: 560px; line-height: 1.72; margin-bottom: 2.75rem;
}

/* ── SERVICES ── */
.services-wrap { background: var(--bg-section); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem;
}
.svc-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.85rem; border: 1px solid var(--sand);
  transition: box-shadow .3s, transform .3s; position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-mid));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.svc-card:hover { box-shadow: var(--sh-hover); transform: translateY(-5px); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 50px; height: 50px; border-radius: var(--radius-sm);
  background: var(--accent-pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; margin-bottom: 1.2rem;
}
.svc-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-bottom: .55rem; }
.svc-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.62; margin-bottom: 1.1rem; }
.svc-price { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 600; color: var(--accent); }
.svc-techs { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .75rem; }
.tech-t {
  background: var(--bg-warm); font-size: .7rem; padding: .18rem .52rem;
  border-radius: 50px; color: var(--text-muted); border: 1px solid var(--sand);
}

/* ── PROCESS ── */
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem;
  margin-top: 2.5rem;
}
.proc-step { position: relative; }
.proc-num {
  font-family: 'Lora', serif; font-size: 3.2rem; font-weight: 700;
  color: var(--sand-dark); line-height: 1; margin-bottom: .65rem;
}
.proc-step h3 { font-size: .97rem; font-weight: 600; color: var(--text-dark); margin-bottom: .45rem; }
.proc-step p { font-size: .86rem; color: var(--text-muted); line-height: 1.62; }
.proc-line {
  position: absolute; top: 1.8rem; right: 0; width: 35%; height: 1px;
  background: linear-gradient(90deg, var(--sand), transparent);
}
.proc-step:last-child .proc-line { display: none; }

/* ── PORTFOLIO ── */
.portfolio-wrap { background: var(--bg-section); }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.25rem;
}
.port-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--sand);
  transition: box-shadow .3s, transform .3s;
}
.port-card:hover { box-shadow: var(--sh-hover); transform: translateY(-5px); }
.port-thumb {
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
}
.t1 { background: linear-gradient(135deg,#EAF4FB,#CCE9F5); }
.t2 { background: linear-gradient(135deg,#EBF5EF,#C8EDD6); }
.t3 { background: linear-gradient(135deg,#FFF8EC,#FDECC4); }
.t4 { background: linear-gradient(135deg,#F2F0FF,#DDD8FF); }
.t5 { background: linear-gradient(135deg,#FFF0F0,#FFD6D6); }
.t6 { background: linear-gradient(135deg,#F0FAF5,#CCEDD8); }
.port-body { padding: 1.4rem; }
.port-body h3 { font-size: .97rem; font-weight: 600; color: var(--text-dark); margin-bottom: .35rem; }
.port-body p { font-size: .83rem; color: var(--text-muted); margin-bottom: .75rem; line-height: 1.55; }

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem; margin-top: 2.75rem; align-items: start;
}
.price-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border: 1.5px solid var(--sand);
  transition: box-shadow .3s; position: relative;
}
.price-card.feat {
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 10px 44px rgba(29,111,164,.28);
  transform: scale(1.035);
  color: rgba(255,255,255,.92);
}
.price-card.feat h3, 
.price-card.feat .price-val, 
.price-card.feat .price-from, 
.price-card.feat .price-suf, 
.price-card.feat .price-desc,
.price-card.feat .price-list li { 
  color: rgba(255,255,255,.92); 
}
.feat-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #F59E0B; color: #1A1200;
  font-size: .7rem; font-weight: 700; padding: .28rem .8rem; border-radius: 50px;
}
.price-card h3 { font-size: .97rem; font-weight: 600; margin-bottom: 1.1rem; }
.price-row { display: flex; align-items: baseline; gap: .25rem; margin-bottom: .25rem; }
.price-from { font-size: 1rem; }
.price-val { font-family: 'Lora', serif; font-size: 2.4rem; font-weight: 700; color: var(--text-dark); line-height: 1; }
.price-suf { font-size: .82rem; }
.price-desc { font-size: .8rem; color: var(--text-muted); margin-bottom: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--sand); }
.price-card.feat .price-desc { border-color: rgba(255,255,255,.2); }
.price-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.65rem; }
.price-list li { font-size: .86rem; display: flex; gap: .5rem; align-items: flex-start; }
.price-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.price-card.feat .price-list li::before { color: #86efac; }
.btn-price {
  display: block; text-align: center; padding: .78rem;
  border-radius: 50px; font-weight: 500; font-size: .93rem;
  text-decoration: none; transition: .2s; font-family: 'Outfit', sans-serif;
}
.btn-price-outline { border: 1.5px solid var(--sand-dark); color: var(--text-dark); }
.btn-price-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-price-solid { background: #fff; color: var(--accent); font-weight: 600; }
.btn-price-solid:hover { background: rgba(255,255,255,.9); }

.hourly-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  background: var(--bg-section); border-radius: var(--radius);
  padding: 1.75rem 2rem; margin-top: 2rem; border: 1px solid var(--sand);
}
.hourly-left h3 { font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: .25rem; }
.hourly-left p { font-size: .87rem; color: var(--text-muted); }
.hourly-rate { font-family: 'Lora', serif; font-size: 1.9rem; font-weight: 700; color: var(--accent); white-space: nowrap; }
.hourly-rate span { font-size: .88rem; color: var(--text-muted); font-family: 'Outfit', sans-serif; font-weight: 400; }

/* ── TECH STACK ── */
.tech-wrap { background: var(--bg-section); }
.tech-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: .9rem;
}
.tech-item {
  background: var(--white); border-radius: var(--radius-sm);
  padding: 1.2rem .9rem; text-align: center;
  border: 1px solid var(--sand);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.tech-item:hover { box-shadow: var(--sh-soft); transform: translateY(-3px); border-color: var(--accent); }
.tech-em { font-size: 1.75rem; display: block; margin-bottom: .35rem; }
.tech-name { font-size: .78rem; font-weight: 500; color: var(--text-body); }
.tech-role { font-size: .68rem; color: var(--text-light); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--white); }
.test-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem;
}
.test-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.7rem; border: 1px solid var(--sand); box-shadow: var(--sh-soft);
}
.stars { color: #F59E0B; font-size: .95rem; letter-spacing: .08em; margin-bottom: .85rem; }
.test-card blockquote {
  font-size: .9rem; color: var(--text-body); line-height: 1.68;
  margin-bottom: 1.2rem; font-style: italic; font-weight: 300;
}
.test-author { display: flex; align-items: center; gap: .7rem; }
.test-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-section); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .88rem; color: var(--accent); border: 1px solid var(--sand); flex-shrink: 0;
}
.test-name { font-size: .88rem; font-weight: 600; color: var(--text-dark); }
.test-role { font-size: .76rem; color: var(--text-light); }

/* ── PROJECTS ── */
.proj-wrap { background: var(--bg-section); }
.proj-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .85rem;
}
.proj-item {
  background: var(--white); border-radius: var(--radius-sm);
  border: 1px solid var(--sand); padding: .9rem 1.1rem;
  transition: border-color .2s, box-shadow .2s;
}
.proj-item:hover { border-color: var(--accent); box-shadow: var(--sh-soft); }
.proj-item a {
  font-size: .87rem; color: var(--accent); text-decoration: none; font-weight: 500;
}
.proj-item a:hover { text-decoration: underline; }

/* ── FAQ ── */
.faq-col { max-width: 720px; display: flex; flex-direction: column; gap: .85rem; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--sand); overflow: hidden; }
.faq-q {
  width: 100%; padding: 1.05rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; cursor: pointer;
  font-size: .92rem; font-weight: 500; color: var(--text-dark);
  text-align: left; transition: background .2s; font-family: 'Outfit', sans-serif;
}
.faq-q:hover { background: var(--bg-warm); }
.faq-ic { font-size: 1.1rem; color: var(--accent); transition: transform .3s; flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; padding: 0 1.4rem; }
.faq-a p { padding-bottom: 1.05rem; font-size: .87rem; color: var(--text-muted); line-height: 1.65; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-item.open .faq-ic { transform: rotate(45deg); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.ci-item { display: flex; align-items: flex-start; gap: .9rem; margin-bottom: 1.35rem; }
.ci-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--accent-pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.ci-detail h4 { font-size: .88rem; font-weight: 600; color: var(--text-dark); margin-bottom: .18rem; }
.ci-detail a, .ci-detail p { font-size: .86rem; color: var(--text-muted); text-decoration: none; }
.ci-detail a:hover { color: var(--accent); }

.cform { display: flex; flex-direction: column; gap: .9rem; }
.fg label { display: block; font-size: .8rem; font-weight: 500; color: var(--text-body); margin-bottom: .38rem; }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: .78rem 1rem;
  border: 1.5px solid var(--sand); border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-size: .9rem; color: var(--text-dark);
  background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(29,111,164,.1);
}
.fg textarea { resize: vertical; min-height: 115px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.btn-sub {
  background: var(--accent); color: #fff;
  padding: .88rem; border-radius: 50px;
  font-weight: 500; font-size: .97rem; border: none; cursor: pointer;
  transition: background .2s, transform .2s; font-family: 'Outfit', sans-serif;
}
.btn-sub:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* ── CTA BANNER ── */
.cta-bar, .cta-section {
  background: var(--text-dark); color: #fff;
  padding: clamp(3.5rem,6vw,5.5rem) clamp(1.25rem,4vw,3.5rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta-bar::before, .cta-section::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(circle, rgba(29,111,164,.22) 0%, transparent 60%);
}
.cta-bar .s-inner, .cta-section .container { position: relative; z-index: 1; }
.cta-bar h2, .cta-section h2 { color: #fff; margin: 0 auto .9rem; max-width: 680px; }
.cta-bar p, .cta-section p { color: rgba(255,255,255,.6); max-width: 480px; margin: 0 auto 2.25rem; font-size: 1.02rem; }
.cta-acts { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff; color: var(--accent);
  padding: .88rem 2.1rem; border-radius: 50px;
  font-weight: 600; font-size: .97rem; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(0,0,0,.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.28); }
.btn-ghost {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.88);
  padding: .88rem 2.1rem; border-radius: 50px;
  font-weight: 500; font-size: .97rem; text-decoration: none;
  border: 1px solid rgba(255,255,255,.18); transition: background .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.16); }

/* ── FOOTER ── */
footer {
  background: var(--bg-section); border-top: 1px solid var(--sand);
  padding: 2.75rem clamp(1.25rem,4vw,3.5rem) 1.75rem;
}
.foot-inner { max-width: 1200px; margin: 0 auto; }
.foot-top, .foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.25rem; }
.foot-brand .nav-logo { display: block; margin-bottom: .7rem; }
.foot-brand p { font-size: .83rem; color: var(--text-muted); line-height: 1.65; max-width: 250px; }
.foot-col h4 { font-size: .82rem; font-weight: 600; color: var(--text-dark); margin-bottom: .9rem; letter-spacing: .04em; }
.foot-col a { display: block; font-size: .83rem; color: var(--text-muted); text-decoration: none; margin-bottom: .48rem; transition: color .2s; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom {
  border-top: 1px solid var(--sand); padding-top: 1.4rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  font-size: .78rem; color: var(--text-light);
}

/* ── SEO CONTENT ── */
.seo-content { padding-top: 100px; padding-bottom: 60px; }
.seo-content h1 { margin-bottom: 1.5rem; }
.seo-content h2 { margin-top: 2.5rem; margin-bottom: 1.2rem; font-size: 1.85rem; }
.seo-content h3 { margin-top: 2rem; margin-bottom: 1rem; font-size: 1.4rem; color: var(--text-dark); }
.seo-content p { margin-bottom: 1.2rem; color: var(--text-body); font-size: 1.05rem; }
.seo-content ul, .seo-content ol { margin-bottom: 1.5rem; margin-left: 1.5rem; color: var(--text-body); }
.seo-content li { margin-bottom: .6rem; }
.regions-list, .cities-list, .related-services {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .75rem; list-style: none !important; margin-left: 0 !important;
}
.regions-list li, .cities-list li, .related-services li {
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-sm);
  padding: .6rem 1rem; transition: border-color .2s, box-shadow .2s;
}
.regions-list li:hover, .cities-list li:hover, .related-services li:hover {
  border-color: var(--accent); box-shadow: var(--sh-soft);
}
.regions-list a, .cities-list a, .related-services a {
  text-decoration: none; color: var(--accent); font-weight: 500; font-size: .92rem;
}

/* ── BREADCRUMBS ── */
.breadcrumbs { margin-bottom: 2rem; }
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; list-style: none !important; margin: 0 !important; padding: 0 !important;
  gap: .5rem; align-items: center; font-size: .88rem;
}
.breadcrumbs li { display: flex; align-items: center; gap: .5rem; color: var(--text-light); }
.breadcrumbs li:not(:last-child)::after { content: '/'; opacity: .4; }
.breadcrumbs a { text-decoration: none; color: var(--accent); }
.breadcrumbs a:hover { text-decoration: underline; }

/* ── SCROLL ANIM ── */
.fade { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fade.on { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-top, .foot-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-burger, .burger { display: flex; }
  .foot-top, .foot-grid { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .price-card.feat { transform: none; }
  .hero-stats { gap: 1.5rem; }
  .regions-list, .cities-list, .related-services { grid-template-columns: 1fr; }
}
.nav-links.mobile-open {
  display: flex !important; flex-direction: column;
  position: fixed; top: 66px; left: 0; right: 0;
  background: var(--bg); border-bottom: 1px solid var(--sand);
  padding: 1.25rem 1.5rem 1.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  gap: 1.1rem; z-index: 199;
}
