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

body {
  font-family: 'Inter', sans-serif;
  background: white;
  color: #1a1a1a;
}

/* Hero Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 25vh);
  gap: 12px;
  padding: 12px;
  min-height: 100vh;
  background: linear-gradient(135deg, #f0fdf4 0%, #f0f9ff 100%);
}

.hero-cell {
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.cell-1 {
  grid-column: span 2;
  grid-row: span 2;
  background: #10b981;
  color: white;
}

.cell-1 h1 {
  font-family: 'Rubik', sans-serif;
  font-size: 72px;
}

.cell-2 {
  grid-column: span 2;
  background: #06b6d4;
  color: white;
}

.hero-tagline {
  font-family: 'Rubik', sans-serif;
  font-size: 28px;
}

.cell-3 {
  grid-column: span 2;
  background: #f59e0b;
  color: white;
}

.cell-4 {
  grid-column: span 2;
  grid-row: span 2;
  background: #ec4899;
  color: white;
  flex-direction: column;
}

.hero-stat {
  text-align: center;
}

.stat-label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 10px;
}

.stat-value {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  font-weight: 900;
}

.btn-cta-big {
  background: white;
  color: #10b981;
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cta-big:hover {
  transform: scale(1.05);
}

.btn-secondary {
  background: #10b981;
  color: white;
}

/* Services Blocks */
.services-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-block {
  border-radius: 20px;
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.service-block:hover {
  transform: translateY(-10px);
}

.block-1 { background: linear-gradient(135deg, #10b981, #059669); }
.block-2 { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.block-3 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.block-4 { background: linear-gradient(135deg, #ec4899, #db2777); }
.block-5 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.block-6 { background: linear-gradient(135deg, #14b8a6, #0d9488); }

.block-emoji {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

.service-block h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 800;
}

.service-block p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.95;
}

.price-tag {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 800;
}

/* Data Section */
.data-section {
  padding: 80px 40px;
  background: #f9fafb;
}

.data-section h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  text-align: center;
  margin-bottom: 60px;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.data-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  border: 3px solid transparent;
  transition: all 0.3s;
}

.data-card:hover {
  border-color: currentColor;
  transform: scale(1.05);
}

.card-eco { color: #10b981; }
.card-team { color: #06b6d4; }
.card-price { color: #f59e0b; }
.card-fast { color: #ec4899; }

.card-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.data-card h4 {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 800;
}

.data-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Process Flow */
.process-flow {
  padding: 80px 40px;
  background: white;
}

.process-flow h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  text-align: center;
  margin-bottom: 60px;
}

.flow-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.step {
  text-align: center;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rubik', sans-serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 15px;
}

.step h4 {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 800;
}

.step p {
  font-size: 12px;
  color: #666;
}

.flow-arrow {
  font-size: 32px;
  color: #10b981;
}

/* Pricing */
.pricing-section {
  padding: 80px 40px;
  background: #f9fafb;
}

.pricing-section h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  text-align: center;
  margin-bottom: 60px;
}

.pricing-cards-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.price-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  border-left: 4px solid #10b981;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-label {
  font-size: 12px;
  color: #666;
  font-weight: 600;
}

.price-value {
  font-family: 'Rubik', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #10b981;
}

.price-time {
  font-size: 11px;
  color: #999;
}

/* Contact */
.contact-section {
  padding: 80px 40px;
  background: white;
  text-align: center;
}

.contact-section h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  margin-bottom: 60px;
}

.contact-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.contact-block-item {
  text-align: center;
}

.contact-block-item h4 {
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 800;
}

.contact-block-item p {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
}

.contact-block-item a {
  color: #10b981;
  text-decoration: none;
  font-weight: 700;
}

/* Modal */
.modal-geometric {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-geo-box {
  background: white;
  padding: 50px;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  position: relative;
}

.geo-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #10b981;
}

.modal-geo-box h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 800;
}

.modal-geo-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-geo-box input,
.modal-geo-box select,
.modal-geo-box textarea {
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
}

.modal-geo-box input:focus,
.modal-geo-box select:focus,
.modal-geo-box textarea:focus {
  outline: none;
  border-color: #10b981;
  background: #f0fdf4;
}

.modal-geo-box button {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  cursor: pointer;
  margin-top: 10px;
}

.modal-geo-box button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .hero-cell { grid-column: span 1; grid-row: span 1; }
  .cell-1 h1 { font-size: 36px; }
  .services-blocks { grid-template-columns: repeat(2, 1fr); }
  .data-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { gap: 15px; }
  .pricing-cards-compact { grid-template-columns: repeat(2, 1fr); }
  .contact-blocks { grid-template-columns: 1fr; gap: 30px; }
}
