:root {
  --teal: #00C2B2;
  --bg: #1a1f2e;
  --bg2: #141824;
  --bg3: #0f1219;
  --surface: #222838;
  --surface2: #252d40;
  --text: #e0e8f0;
  --text-muted: #6a7a8a;
  --border: #252d40;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}
/*nav*/
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  padding: 0 5%;
  background: rgba(26, 31, 46, 0.97);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  backdrop-filter: blur(6px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-box {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--bg);
}

.nav-logo-text span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 3px;
}

.nav-logo-line {
  width: 100%;
  height: 2px;
  background: var(--teal);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--teal); }

.nav-phone {
  color: var(--teal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--teal);
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-phone:hover {
  background: var(--teal);
  color: var(--bg);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
}
/*hero*/
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}

.hero-left {
  padding: 80px 5% 80px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--teal);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 28px;
  font-weight: 500;
}

h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--text);
}

h1 span {
  color: var(--teal);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-form {
  background: var(--bg2);
  border-left: 1px solid var(--border);
  padding: 80px 5% 80px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-title {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--teal);
  margin-bottom: 28px;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus { border-color: var(--teal); }

.form-group input::placeholder { color: #3a4a5a; }

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.form-submit {
  width: 100%;
  background: var(--teal);
  color: var(--bg);
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover { background: #00d9c7; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px 0 16px;
}

.form-success-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--teal);
}

.form-success h3 {
  color: var(--teal);
  font-size: 20px;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 14px;
}
/*strip*/
.services-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}
.strip-tile{
  padding: 28px 5%;
  display:flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.strip-tile:last-child{
  border-right: none;
}
.strip-tile:hover{
  background: var(--surface2);
}
.strip-icon{
  font-size: 28px;
  flex-shrink: 0;
}
.strip-info h3{
  font-size: 15px;
  font-size: 600;
  color:var(--text);
  margin-bottom:4px;
}
.strip-price{
  font-size: 13px;
  color:var(--teal);
  font-weight: 500;
}
/*pricing*/
#pricing {
  padding: 100px 5%;
  border-top: 1px solid var(--border);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--teal);
  margin-bottom: 16px;
  font-weight: 500;
}

h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
  color: var(--text);
}

.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 56px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}

.pricing-featured {
  border-color: var(--teal);
  position: relative;
  padding-top: 48px;
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s;
  text-align: center;
  display: block;
}

.btn-primary:hover { background: #00d9c7; }

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
  text-align: center;
  display: block;
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.pricing-card .btn-primary,
.pricing-card .btn-ghost {
  text-align: center;
  display: block;
}
/*reviews*/
#reviews {
  padding: 100px 5%;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.3s;
}

.review-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--teal);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: rgba(0, 194, 178, 0.1);
  border: 1px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--teal);
  font-size: 16px;
}

.review-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.review-location {
  font-size: 12px;
  color: var(--text-muted);
}
/*footer*/
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 5% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 20px;
  max-width: 280px;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--teal); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26,31,46,0.98);
    flex-direction: column;
    padding: 24px 5%;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-form {
    border-left: none;
    border-top: 1px solid var(--border);
  }
  h1 { font-size: 42px; }
  .services-strip { grid-template-columns: repeat(2, 1fr); }
  .strip-tile { border-bottom: 1px solid var(--border); }
  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  
  .hero-badge {
    margin-bottom: 24px;
  }
  .hero-left {
    text-align: center;
  }
  .hero-sub {
    margin: 0 auto;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 32px;
    justify-items: center;
    text-align:center;
  }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 11px; }
  .services-strip { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (min-width: 1800px) {
  h1 { font-size: 72px; }
  .footer-grid, .footer-bottom { max-width: 1600px; }
}