:root {
  --green: #358b62;
  --green-dark: #1f6b48;
  --green-light: #eaf7f0;
  --lime-soft: #f1fae9;
  --black: #02040a;
  --slate: #566274;
  --border: #d7efe2;
  --white: #ffffff;
  --gray: #f7faf8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: #111827;
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo { height: 54px; width: auto; }
.main-nav { display: flex; gap: 28px; color: var(--slate); font-weight: 600; font-size: 14px; }
.main-nav a:hover { color: var(--green); }
.menu-toggle { display: none; background: transparent; border: 0; font-size: 28px; color: var(--green); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .2s ease;
}
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline { border-color: var(--border); color: var(--green-dark); background: white; }
.btn-outline:hover { background: var(--green-light); }
.btn-white { background: white; color: var(--green-dark); }
.full-btn { width: 100%; }

.section { padding: 88px 0; }
.section-light { background: linear-gradient(135deg, #fff 0%, #effaf3 50%, #fff 100%); }
.green-section { background: rgba(234,247,240,.75); }
.gray-section { background: var(--gray); }
.white-section { background: white; }
.section-label {
  display: block;
  color: var(--green);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .16em;
  font-weight: 900;
  margin-bottom: 12px;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(40px, 6vw, 68px); line-height: .98; letter-spacing: -0.05em; margin-bottom: 24px; color: var(--black); }
h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.08; letter-spacing: -0.035em; margin-bottom: 20px; color: var(--black); }
h3 { font-size: 21px; line-height: 1.2; margin-bottom: 12px; color: var(--black); }
p { color: var(--slate); line-height: 1.75; font-size: 17px; }
.center { text-align: center; margin: 0 auto; }
.section-heading { max-width: 720px; margin-bottom: 46px; }
.section-heading.center { margin-bottom: 46px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 120px 0;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.86) 32%, rgba(255,255,255,.38) 58%, rgba(255,255,255,.12) 100%),
    url("../images/hero-futurista-ganur-hero.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(234,247,240,.18));
  pointer-events: none;
}
.hero-grid {
  display: block;
  position: relative;
  z-index: 2;
}
.hero-shape { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .65; }
.hero-shape-one { right: -80px; top: -80px; width: 360px; height: 360px; background: #9ee0bd; }
.hero-shape-two { left: -80px; bottom: -80px; width: 320px; height: 320px; background: #dff5c9; }
.eyebrow {
  display: inline-flex;
  background: white;
  border: 1px solid var(--border);
  color: var(--green-dark);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 26px;
  box-shadow: 0 10px 30px rgba(31,107,72,.08);
}
.hero-content {
  max-width: 660px;
}
.hero-content > p { max-width: 590px; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; max-width: 520px; }
.stats-grid div { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 18px; text-align: center; box-shadow: 0 10px 28px rgba(31,107,72,.06); }
.stats-grid strong { display: block; color: var(--green); font-size: 28px; }
.stats-grid span { color: var(--slate); font-size: 13px; }


.hero-badge {
  display: inline-block;
  margin-top: 24px;
  max-width: 420px;
  background: rgba(2,4,10,.76);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 16px 40px rgba(2,4,10,.16);
}
.hero-badge span {
  display: block;
  color: #a5f3c8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 8px;
}
.hero-badge strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}


.hero-card { background: white; border: 1px solid var(--border); border-radius: 34px; padding: 16px; box-shadow: 0 30px 70px rgba(31,107,72,.16); }
.dashboard-card { background: var(--black); color: white; border-radius: 26px; padding: 30px; }
.dashboard-top { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; margin-bottom: 26px; }
.dashboard-top span { color: #a5f3c8; font-size: 14px; }
.dashboard-top h2 { color: white; font-size: 28px; margin: 4px 0 0; }
.dashboard-top small { background: rgba(53,139,98,.25); color: #c7f9dc; border-radius: 999px; padding: 8px 12px; }
.dashboard-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.dashboard-grid div { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 18px; }
.dashboard-grid span { display: block; color: #cbd5e1; margin-bottom: 8px; }
.dashboard-grid strong { font-size: 20px; }
.recommendation { margin-top: 22px; background: var(--green); color: #03130c; border-radius: 20px; padding: 22px; }
.recommendation p { color: rgba(2,4,10,.8); font-size: 14px; margin-bottom: 0; }

.problem-grid, .benefits-grid, .products-grid, .contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.problem-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.problem-cards article, .benefits-list div, .process-grid article, .service-card, .contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(31,107,72,.06);
}
.problem-cards article { padding: 24px; color: #344054; font-weight: 700; line-height: 1.5; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { padding: 30px; transition: .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(31,107,72,.12); }
.icon { width: 52px; height: 52px; border-radius: 18px; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.service-card p { font-size: 16px; margin-bottom: 0; }

.dark-card { background: var(--black); border-radius: 34px; padding: 34px; box-shadow: 0 24px 60px rgba(2,4,10,.16); }
.dark-inner { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.08); border-radius: 26px; padding: 30px; }
.dark-inner h3 { color: white; font-size: 29px; }
.dark-inner p { color: #cbd5e1; }
.large-icon { font-size: 42px; margin-bottom: 20px; }
.benefits-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.benefits-list div { padding: 16px; font-weight: 700; color: #344054; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-grid article { padding: 30px; }
.process-grid strong { display: block; color: #b6e5cb; font-size: 42px; font-weight: 900; margin-bottom: 20px; }
.process-grid p { font-size: 15px; margin-bottom: 0; }

.products-grid { align-items: start; }
.product-tags { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.product-tags span { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 14px 16px; font-weight: 700; color: #344054; box-shadow: 0 8px 22px rgba(31,107,72,.05); }

.cta-section { padding: 0 0 88px; }
.cta-box { background: linear-gradient(135deg, var(--green), var(--green-dark)); color: white; border-radius: 34px; padding: 48px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; box-shadow: 0 24px 60px rgba(31,107,72,.18); }
.cta-box h2 { color: white; }
.cta-box p { color: #eafff2; margin-bottom: 0; }

.contact-info { margin-top: 28px; }
.contact-info p { margin: 0 0 12px; font-weight: 700; }
.contact-form { padding: 32px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
input, select, textarea { width: 100%; border: 1px solid #d6dde5; border-radius: 18px; padding: 15px 16px; font: inherit; margin-bottom: 14px; outline: none; background: white; }
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(53,139,98,.12); }
textarea { min-height: 130px; resize: vertical; }

.site-footer { border-top: 1px solid var(--border); padding: 30px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; align-items: center; color: var(--slate); font-size: 14px; }
.footer-inner p { margin: 0; font-size: 14px; }
.footer-inner div { display: flex; gap: 22px; }
.footer-inner a:hover { color: var(--green); }

.fade-in { animation: fadeInUp .75s ease both; }
.delay { animation-delay: .12s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 920px) {
  .main-nav, .header-btn { display: none; }
  .menu-toggle { display: block; }
  .main-nav.open { display: flex; position: absolute; left: 20px; right: 20px; top: 82px; flex-direction: column; background: white; border: 1px solid var(--border); border-radius: 20px; padding: 20px; box-shadow: 0 20px 50px rgba(0,0,0,.08); }
  .hero {
    min-height: 700px;
    padding: 96px 0;
    background-position: 62% center;
    background-image:
      linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.90) 48%, rgba(255,255,255,.55) 100%),
      url("../images/hero-futurista-ganur-hero.png");
  }
  .hero-grid, .problem-grid, .benefits-grid, .products-grid, .contact-grid, .cta-box { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .product-tags { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero {
    min-height: 760px;
    padding: 74px 0;
    background-position: 70% center;
    background-image:
      linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.88) 48%, rgba(255,255,255,.58) 100%),
      url("../images/hero-futurista-ganur-hero.png");
  }
  .section { padding: 64px 0; }
  .logo { height: 42px; }
  .hero-actions, .stats-grid, .problem-cards, .services-grid, .benefits-list, .process-grid, .product-tags, .form-row { grid-template-columns: 1fr; }
  .services-grid, .process-grid, .problem-cards, .benefits-list, .product-tags { display: grid; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .hero-image { min-height: 360px; }
  .cta-box { padding: 32px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
