/* ==============================
   SOLIS SOFTWARE — STYLESHEET
   ============================== */

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

:root {
  --bg:        #0b0a08;
  --bg2:       #111009;
  --bg3:       #16140f;
  --surface:   #1c1a14;
  --surface2:  #242118;
  --accent:    #f5a623;
  --accent2:   #e07b1f;
  --accent3:   #ffd166;
  --green:     #4ecb71;
  --text:      #f0ece0;
  --text2:     #a09880;
  --text3:     #5c5644;
  --border:    rgba(245,166,35,0.1);
  --border2:   rgba(245,166,35,0.25);
  --radius:    18px;
  --font-h:    'Outfit', sans-serif;
  --font-b:    'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

.hl {
  background: linear-gradient(120deg, var(--accent), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.s-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid var(--border2);
  border-radius: 50px;
  background: rgba(245,166,35,0.06);
}

.section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text2); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* BUTTONS */
.btn-sol {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #0b0a08;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .95rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn-sol:hover { background: var(--accent3); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,0.35); color: #0b0a08; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text2);
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s;
}
.btn-link:hover { color: var(--accent); }

.btn-pr-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  border: 1.5px solid var(--border2);
  color: var(--accent);
  font-family: var(--font-h);
  font-weight: 600;
  border-radius: 10px;
  transition: all .2s;
}
.btn-pr-outline:hover { background: rgba(245,166,35,0.08); }

/* NAVBAR */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: all .3s;
}
#navbar.scrolled {
  background: rgba(11,10,8,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
}
.logo strong { font-weight: 800; color: var(--accent); }
.logo-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg path, .logo-icon svg circle { stroke: #0b0a08 !important; }
.logo-icon svg circle:last-child { fill: #0b0a08 !important; stroke: none !important; }

.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links a { padding: 8px 14px; font-size: .9rem; font-weight: 500; color: var(--text2); border-radius: 8px; transition: all .2s; }
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-cta {
  background: var(--accent) !important;
  color: #0b0a08 !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--accent3) !important; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 101; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 110px 0 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.s1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(245,166,35,0.18), transparent); top: -80px; right: -100px; }
.s2 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(224,123,31,0.12), transparent); bottom: 60px; left: -80px; }
.s3 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(255,209,102,0.1), transparent); top: 50%; left: 40%; }

.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(245,166,35,0.1);
  border: 1px solid var(--border2);
  border-radius: 50px;
  font-size: .82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeUp .6s ease both;
}
.tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

h1 { animation: fadeUp .6s .1s ease both; }
.hero-lead {
  color: var(--text2);
  font-size: 1.08rem;
  margin: 20px 0 34px;
  max-width: 520px;
  animation: fadeUp .6s .2s ease both;
}

.hero-cta-row {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
}

.hero-trust {
  display: flex; align-items: center; gap: 20px;
  margin-top: 44px;
  animation: fadeUp .6s .4s ease both;
}
.trust-item { display: flex; flex-direction: column; }
.tn { font-family: var(--font-h); font-size: 1.7rem; font-weight: 800; color: var(--accent); line-height: 1; }
.tl { font-size: .78rem; color: var(--text3); margin-top: 3px; }
.trust-sep { width: 1px; height: 40px; background: var(--border); }

/* Phone device */
.hero-visual { display: flex; justify-content: center; animation: fadeUp .8s .3s ease both; }
.device-wrap {
  position: relative;
  width: 240px;
  animation: floatDev 5s ease-in-out infinite;
}
@keyframes floatDev { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

.device {
  width: 240px;
  height: 480px;
  background: var(--surface);
  border-radius: 38px;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 0 1px rgba(245,166,35,0.12), 0 40px 80px rgba(0,0,0,0.7);
  overflow: hidden;
  position: relative;
}
.device-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px; z-index: 3;
}
.device-screen {
  position: absolute; inset: 0;
  background: linear-gradient(165deg, #191610, #221f15);
  border-radius: 36px;
  padding: 40px 14px 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.device-home {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}

.ds-header { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.ds-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); opacity: .8; flex-shrink: 0; }
.ds-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.ds-bell { width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid var(--border); flex-shrink: 0; }
.ds-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.1); }
.ds-line.w80 { width: 80%; }
.ds-line.w70 { width: 70%; }
.ds-line.w60 { width: 60%; }
.ds-line.w45 { width: 45%; }
.ds-line.w40 { width: 40%; }
.ds-line.sm { height: 4px; }
.ds-line.mt8 { margin-top: 8px; }
.ds-line.mt4 { margin-top: 4px; }

.ds-card { background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.15); border-radius: 12px; padding: 12px; }
.main-card { padding: 14px; }
.ds-chart { display: flex; align-items: flex-end; gap: 5px; height: 50px; margin-bottom: 6px; }
.bar { flex: 1; border-radius: 3px 3px 0 0; background: rgba(245,166,35,0.3); }
.b1 { height: 40%; }
.b2 { height: 65%; }
.b3 { height: 55%; background: var(--accent); opacity: .7; }
.b4 { height: 80%; }
.b5 { height: 60%; }

.ds-row2 { display: flex; gap: 8px; }
.ds-mini-card { flex: 1; height: 52px; border-radius: 10px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); }
.mc2 { background: rgba(245,166,35,0.06); border-color: rgba(245,166,35,0.12); }
.ds-list { display: flex; flex-direction: column; gap: 7px; }
.ds-list-item { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.03); border-radius: 8px; padding: 6px 8px; }
.dli-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.d2 { background: var(--green); }
.d3 { background: var(--accent3); opacity: .6; }

.device-glow {
  position: absolute;
  bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 160px; height: 40px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(30px);
  opacity: .2;
}

.float-badge {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 7px 12px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.fb1 { top: 50px; right: -70px; animation: floatBadge 3s ease-in-out infinite; }
.fb2 { top: 180px; left: -80px; animation: floatBadge 3s .8s ease-in-out infinite; }
.fb3 { bottom: 130px; right: -65px; animation: floatBadge 3s 1.6s ease-in-out infinite; }
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* SERVICES */
.services-section { background: var(--bg2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.sv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.sv-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

.sv-card.sv-large { grid-column: span 1; grid-row: span 2; }
.sv-card.sv-highlight {
  background: linear-gradient(135deg, rgba(245,166,35,0.08), rgba(224,123,31,0.04));
  border-color: rgba(245,166,35,0.2);
}

.sv-num { font-family: var(--font-h); font-size: .72rem; font-weight: 700; letter-spacing: .1em; color: var(--text3); margin-bottom: 20px; }
.sv-ico { font-size: 2rem; margin-bottom: 14px; display: block; }
.sv-card h3 { margin-bottom: 10px; }
.sv-card p { color: var(--text2); font-size: .92rem; line-height: 1.65; margin-bottom: 16px; }
.sv-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sv-tags span {
  padding: 4px 10px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
}

/* WHY US */
.why-section { background: var(--bg); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.why-lead { color: var(--text2); font-size: 1.02rem; margin: 14px 0 36px; line-height: 1.7; }

.why-graphic { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.wg-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(245,166,35,0.05);
}
.wg-inner { text-align: center; }
.wg-num { font-family: var(--font-h); font-size: 1.5rem; font-weight: 800; color: var(--accent); display: block; }
.wg-lbl { font-size: .7rem; color: var(--text3); }

.wg-lines { display: flex; flex-direction: column; gap: 10px; flex: 1; min-width: 140px; }
.wg-line { display: flex; flex-direction: column; gap: 4px; }
.wg-line > div { height: 6px; background: var(--accent); border-radius: 3px; opacity: .7; }
.wg-line span { font-size: .72rem; color: var(--text3); }

.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.adv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: transform .25s, border-color .25s;
}
.adv-card:hover { transform: translateY(-3px); border-color: var(--border2); }
.adv-icon { font-size: 1.5rem; margin-bottom: 10px; }
.adv-card h4 { margin-bottom: 7px; font-size: .95rem; }
.adv-card p { color: var(--text2); font-size: .86rem; line-height: 1.6; }

/* TEAM */
.team-section { background: var(--bg2); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.tm-card:hover { transform: translateY(-4px); border-color: var(--border2); }

.tm-card.featured-card {
  background: linear-gradient(135deg, rgba(245,166,35,0.07), rgba(224,123,31,0.04));
  border-color: rgba(245,166,35,0.2);
}
.tm-bg {
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.12), transparent);
  pointer-events: none;
}

.tm-ava {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-weight: 800; font-size: 1.1rem;
  color: #0b0a08;
  margin: 0 auto 14px;
}
.av-a { background: linear-gradient(135deg, var(--accent), var(--accent2)); }
.av-b { background: linear-gradient(135deg, #f7931e, #f5c518); }
.av-c { background: linear-gradient(135deg, #4ecb71, #38a169); }
.av-d { background: linear-gradient(135deg, #f472b6, #e879f9); color: #fff; }
.av-e { background: linear-gradient(135deg, #60a5fa, #818cf8); color: #fff; }
.av-f { background: linear-gradient(135deg, #fb923c, #f97316); }

.tm-card h4 { font-size: 1rem; margin-bottom: 4px; }
.tm-role { font-size: .78rem; color: var(--accent); font-weight: 600; display: block; margin-bottom: 12px; }
.tm-card p { color: var(--text2); font-size: .87rem; line-height: 1.6; margin-bottom: 14px; }
.tm-skills { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; }
.tm-skills span {
  padding: 3px 9px;
  background: rgba(245,166,35,0.07);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--accent);
}

/* PRICING */
.pricing-section { background: var(--bg); }

.pricing-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pr-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: transform .25s;
}
.pr-card:hover { transform: translateY(-4px); }

.pr-card.pr-popular {
  background: var(--surface2);
  border-color: var(--border2);
  box-shadow: 0 0 0 1px rgba(245,166,35,0.15), 0 20px 60px rgba(245,166,35,0.08);
  transform: scale(1.04);
}
.pr-card.pr-popular:hover { transform: scale(1.04) translateY(-4px); }

.pr-pop-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--accent);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  color: #0b0a08;
  margin-bottom: 16px;
}

.pr-label { font-family: var(--font-h); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); margin-bottom: 10px; }
.pr-price { font-family: var(--font-h); font-size: 2.5rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.pr-price small { font-size: 1rem; font-weight: 400; color: var(--text2); }
.pr-desc { color: var(--text2); font-size: .9rem; margin-bottom: 22px; line-height: 1.55; }

.pr-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.pr-card li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text2); }
.pr-card li svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--green); }

/* REVIEWS */
.reviews-section { background: var(--bg2); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.rv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s, border-color .25s;
}
.rv-card:hover { transform: translateY(-3px); border-color: var(--border2); }

.rv-stars { color: var(--accent); font-size: .95rem; letter-spacing: 2px; margin-bottom: 14px; }
.rv-card p { color: var(--text2); font-size: .92rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.rv-author { display: flex; align-items: center; gap: 12px; }
.rv-ava {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-weight: 700; font-size: .78rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.ra1 { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #0b0a08; }
.ra2 { background: linear-gradient(135deg, #4ecb71, #38a169); color: #0b0a08; }
.ra3 { background: linear-gradient(135deg, #60a5fa, #3b82f6); color: #fff; }
.ra4 { background: linear-gradient(135deg, #f472b6, #e879f9); color: #fff; }
.ra5 { background: linear-gradient(135deg, #fb923c, #f97316); color: #0b0a08; }
.ra6 { background: linear-gradient(135deg, #a78bfa, #7c3aed); color: #fff; }

.rv-author strong { display: block; font-size: .9rem; color: var(--text); margin-bottom: 2px; }
.rv-author span { font-size: .76rem; color: var(--text3); }

/* CONTACT */
.contact-section { background: var(--bg); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.ct-left p { color: var(--text2); font-size: 1.02rem; margin: 14px 0 36px; line-height: 1.7; }

.ct-details { display: flex; flex-direction: column; gap: 20px; }
.ctd-item { display: flex; align-items: flex-start; gap: 14px; }
.ctd-icon { font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }
.ctd-item strong { display: block; font-size: .8rem; color: var(--text3); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.ctd-item span { color: var(--text2); font-size: .93rem; }
.ctd-item a { color: var(--text2); }
.ctd-item a:hover { color: var(--accent); }

/* LEAD FORM */
.lead-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}
.lf-title { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; color: var(--text); }

.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lf-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.lf-group label { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--text2); }

.lf-group input,
.lf-group select,
.lf-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font-b);
  font-size: .94rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.lf-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a09880' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
.lf-group input:focus,
.lf-group select:focus,
.lf-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,166,35,0.12); }
.lf-group input::placeholder,
.lf-group textarea::placeholder { color: var(--text3); }

.lf-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.lf-check input[type="checkbox"] { width: 17px; height: 17px; flex-shrink: 0; accent-color: var(--accent); margin-top: 2px; cursor: pointer; }
.lf-check label { font-size: .86rem; color: var(--text2); line-height: 1.55; }
.lf-check a { color: var(--accent); }

.lf-submit { width: 100%; justify-content: center; border-radius: 10px; padding: 15px; font-size: .98rem; }

.form-success {
  background: rgba(78,203,113,0.1);
  border: 1px solid rgba(78,203,113,0.25);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--green);
  font-weight: 600;
  text-align: center;
  margin-top: 14px;
}

/* FOOTER */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
}
.ft-brand p { color: var(--text2); font-size: .9rem; margin-top: 14px; line-height: 1.7; }
.ft-links { display: flex; gap: 48px; }
.ftl-col { display: flex; flex-direction: column; gap: 12px; }
.ftl-col strong { font-family: var(--font-h); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); margin-bottom: 4px; }
.ftl-col a { color: var(--text2); font-size: .9rem; transition: color .2s; }
.ftl-col a:hover { color: var(--accent); }

.footer-bar { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bar-inner span { color: var(--text3); font-size: .8rem; }
.footer-bar-inner a { color: var(--text3); transition: color .2s; }
.footer-bar-inner a:hover { color: var(--accent); }

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 20px; right: 20px;
  max-width: 380px;
  z-index: 9999;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: opacity .4s, transform .4s;
}
.ck-icon { font-size: 1.8rem; }
.ck-text strong { display: block; font-family: var(--font-h); font-size: .95rem; margin-bottom: 5px; color: var(--text); }
.ck-text p { color: var(--text2); font-size: .84rem; line-height: 1.55; }
.ck-text a { color: var(--accent); }
.ck-actions { display: flex; gap: 10px; }
.ck-accept {
  flex: 1; padding: 10px 16px;
  background: var(--accent);
  color: #0b0a08;
  border: none;
  border-radius: 8px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: background .2s;
}
.ck-accept:hover { background: var(--accent3); }
.ck-decline {
  padding: 10px 14px;
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .86rem;
  cursor: pointer;
  transition: all .2s;
}
.ck-decline:hover { border-color: var(--text2); color: var(--text); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* LEGAL PAGES */
.legal-wrap { padding: 120px 0 80px; max-width: 760px; margin: 0 auto; }
.legal-wrap h1 { margin-bottom: 8px; }
.legal-date { color: var(--text3); font-size: .85rem; margin-bottom: 40px; }
.legal-wrap h2 { font-size: 1.2rem; margin: 34px 0 12px; color: var(--accent); }
.legal-wrap p, .legal-wrap li { color: var(--text2); font-size: .96rem; line-height: 1.8; margin-bottom: 12px; }
.legal-wrap ul { padding-left: 22px; margin-bottom: 12px; }
.legal-wrap a { color: var(--accent); }
.legal-wrap strong { color: var(--text); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .sv-card.sv-large { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 860px) {
  .services-grid,
  .team-grid,
  .pricing-wrap,
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .ft-links { flex-wrap: wrap; gap: 28px; }
  .pr-card.pr-popular { transform: none; }
  .pr-card.pr-popular:hover { transform: translateY(-4px); }
  .adv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: var(--bg);
    padding: 100px 24px 48px;
    gap: 4px; z-index: 100;
  }
  .nav-links.open a { font-size: 1.2rem; padding: 12px 16px; }
  .burger { display: flex; }

  .hero-trust { gap: 14px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .services-grid,
  .team-grid,
  .pricing-wrap,
  .reviews-grid { grid-template-columns: 1fr; }
  .lf-row { grid-template-columns: 1fr; }
  .lead-form { padding: 24px 18px; }
  #cookie-banner { left: 12px; right: 12px; max-width: none; bottom: 12px; }
  .footer-bar-inner { flex-direction: column; align-items: flex-start; }
}
