:root {
  --bg: #070b14;
  --bg-raised: #0d1322;
  --bg-card: #101828;
  --line: #1c2740;
  --green: #4caf3f;
  --green-bright: #7dc855;
  --green-deep: #2e8b2b;
  --text: #f2f5fa;
  --text-dim: #9aa7bd;
  --radius: 14px;
  font-size: 17px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Poppins', system-ui, sans-serif; line-height: 1.2; }

a { color: var(--green-bright); text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { width: 34px; height: 34px; flex-shrink: 0; }
.brand-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.25rem; color: var(--text); }
.brand-name span { background: linear-gradient(135deg, var(--green-deep), var(--green-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--text-dim); font-weight: 500; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }

.call-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: #fff; font-weight: 600; font-size: 1.05rem;
  padding: 12px 22px; border-radius: 999px;
  box-shadow: 0 4px 20px rgba(76, 175, 63, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.call-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 26px rgba(76, 175, 63, 0.5); }
.call-btn svg { width: 20px; height: 20px; }

.hero { position: relative; padding: 90px 0 70px; overflow: hidden; text-align: center; }
.hero-leaf {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  width: 520px; max-width: 90vw; opacity: 0.07; pointer-events: none;
}
.hero .wrap { position: relative; }
.hero .eyebrow {
  display: inline-block; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-bright); margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 700; max-width: 780px; margin: 0 auto 20px; }
.hero p { font-size: 1.2rem; color: var(--text-dim); max-width: 620px; margin: 0 auto 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.hero-cta .call-btn { font-size: 1.2rem; padding: 16px 30px; }
.ghost-btn {
  display: inline-flex; align-items: center;
  color: var(--text); font-weight: 600; font-size: 1.05rem;
  padding: 15px 28px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--bg-raised);
  transition: border-color 0.15s ease;
}
.ghost-btn:hover { border-color: var(--green); }
.hero-note { margin-top: 22px; font-size: 0.95rem; color: var(--text-dim); }

.steps { padding: 30px 0 70px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-bright));
  color: #fff; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.1rem;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 1rem; }

.section { padding: 70px 0; }
.section.alt { background: var(--bg-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.section-head p { color: var(--text-dim); font-size: 1.1rem; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.service-card:hover { border-color: var(--green); transform: translateY(-3px); }
.service-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(76, 175, 63, 0.12);
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--green-bright); }
.service-card h3 { font-size: 1.25rem; }
.service-card p { color: var(--text-dim); flex-grow: 1; }
.service-price { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--green-bright); font-size: 1.05rem; }
.service-card .more { font-weight: 600; font-size: 0.95rem; }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 36px; }
.tech-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 28px; text-align: center;
}
.tech-avatar {
  width: 150px; height: 150px; margin: 0 auto 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card), var(--line));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: 0.9rem; padding: 12px;
}
.tech-name { font-size: 1.4rem; margin-bottom: 4px; }
.tech-base { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--green-bright); margin-bottom: 6px; }
.tech-area { color: var(--text-dim); font-size: 1rem; }
.team-checks { list-style: none; max-width: 620px; margin: 0 auto; }
.team-checks li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; font-size: 1.05rem; }
.team-checks svg { width: 22px; height: 22px; flex-shrink: 0; stroke: var(--green-bright); margin-top: 3px; }

.cta-band { text-align: center; padding: 80px 0; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta-band p { color: var(--text-dim); font-size: 1.15rem; margin-bottom: 30px; }

.site-footer { border-top: 1px solid var(--line); padding: 44px 0; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; align-items: flex-start; }
.footer-grid p, .footer-grid a { color: var(--text-dim); font-size: 0.95rem; }
.footer-grid h4 { font-family: 'Poppins', sans-serif; font-size: 1rem; margin-bottom: 10px; color: var(--text); }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.copyright { margin-top: 34px; text-align: center; color: var(--text-dim); font-size: 0.85rem; }

.page-hero { padding: 70px 0 40px; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 14px; }
.page-hero p { color: var(--text-dim); font-size: 1.15rem; max-width: 640px; margin: 0 auto; }

.menu-section { padding: 40px 0; }
.menu-section h2 {
  font-size: 1.5rem; margin-bottom: 8px;
  display: flex; align-items: center; gap: 12px;
}
.menu-section h2 svg { width: 26px; height: 26px; stroke: var(--green-bright); }
.menu-price { color: var(--green-bright); font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 24px; }
.menu-table { width: 100%; border-collapse: collapse; }
.menu-table th, .menu-table td {
  text-align: left; padding: 16px 18px; vertical-align: top;
  border-bottom: 1px solid var(--line); font-size: 1rem;
}
.menu-table th { width: 34%; font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--text); }
.menu-table td { color: var(--text-dim); }
.menu-table tr:last-child th, .menu-table tr:last-child td { border-bottom: none; }
.menu-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }

.fineprint {
  background: var(--bg-raised); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 30px; margin-top: 20px;
}
.fineprint h3 { font-size: 1.15rem; margin-bottom: 14px; }
.fineprint ul { list-style: none; }
.fineprint li { display: flex; gap: 12px; margin-bottom: 10px; color: var(--text-dim); }
.fineprint svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--green-bright); margin-top: 4px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; padding-bottom: 70px; }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
}
.contact-card h2 { font-size: 1.4rem; margin-bottom: 20px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-row svg { width: 24px; height: 24px; stroke: var(--green-bright); flex-shrink: 0; margin-top: 3px; }
.contact-row strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1.05rem; margin-bottom: 2px; }
.contact-row p, .contact-row a { color: var(--text-dim); font-size: 1rem; }
.contact-row a.big { font-size: 1.3rem; font-weight: 600; color: var(--green-bright); }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.98rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 15px; border-radius: 10px;
  background: var(--bg); border: 1px solid var(--line);
  color: var(--text); font-family: inherit; font-size: 1rem;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--green); border-color: var(--green);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.submit-btn {
  width: 100%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: #fff; font-weight: 600; font-size: 1.1rem; font-family: 'Poppins', sans-serif;
  padding: 15px; border-radius: 999px;
  transition: transform 0.15s ease;
}
.submit-btn:hover { transform: translateY(-2px); }
.form-note { margin-top: 12px; font-size: 0.88rem; color: var(--text-dim); text-align: center; }

@media (max-width: 860px) {
  .nav { display: none; }
  .steps-grid, .services-grid, .team-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
  .menu-table th { width: 42%; }
}

@media (max-width: 520px) {
  .call-btn span.hide-sm { display: none; }
  .menu-table th, .menu-table td { display: block; width: 100%; padding: 12px 16px; }
  .menu-table th { padding-bottom: 2px; border-bottom: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
