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

:root {
  --bg:        #f7faf7;
  --fg:        #1a2e1a;
  --card:      #ffffff;
  --primary:   #3a7d3a;
  --primary2:  #2f652f;
  --primary-fg:#ffffff;
  --secondary: #eef5ee;
  --muted:     #6b7f6b;
  --border:    #d4e4d4;
  --accent:    #8fb840;
  --radius:    14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── UTILS ─── */
.container { max-width: 1440px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.section-alt { background: var(--secondary); }
.section-dark { background: var(--primary); color: var(--primary-fg); }
.label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-dark .label { color: rgba(255,255,255,.7); }
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .section-sub { margin: 12px auto 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 28px;
  height: 48px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  transition: opacity .2s, background .2s, transform .1s;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary2); }
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.38) 60%, rgba(0,0,0,.18) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding: 120px 20px 80px;
}
.hero-content {
  position: relative;
}
.hero-person {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-person-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  border: 3px solid rgba(255,255,255,.15);
}
.hero-person-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(58,125,58,.4);
}
.hero-person-badge .num { font-family: 'Montserrat',sans-serif; font-size: 1.5rem; font-weight: 800; line-height: 1; }
.hero-person-badge .sub { font-size: .78rem; opacity: .9; margin-top: 2px; }
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }
  .hero-person { display: none; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 span { color: rgba(255,255,255,.72); display: block; }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-cta .btn-phone {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,.35);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  backdrop-filter: blur(4px);
  transition: background .2s;
}
.hero-cta .btn-phone:hover { background: rgba(255,255,255,.12); }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 620px;
}
.hero-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 10px 14px;
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  line-height: 1.4;
}
.hero-trust-item svg { flex-shrink: 0; margin-top: 2px; opacity: .85; }
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 99px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  animation: bounce 2s infinite;
}
.hero-scroll::before {
  content: '';
  width: 4px; height: 8px;
  background: rgba(255,255,255,.65);
  border-radius: 99px;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about-text { max-width: 1440px; margin: 0 auto; }
.about-text p {
  font-size: 1.05rem;
  color: rgba(26,46,26,.78);
  margin-bottom: 18px;
  line-height: 1.8;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.stat {
  text-align: center;
  padding: 24px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.stat-label { font-size: .8rem; color: var(--muted); margin-top: 4px; }

/* ─────────────────────────────────────────
   PROBLEMS
───────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s, box-shadow .2s;
}
.problem-card:hover {
  border-color: rgba(58,125,58,.35);
  box-shadow: 0 8px 28px rgba(58,125,58,.07);
}
.icon-box {
  width: 48px; height: 48px;
  background: rgba(58,125,58,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}
.problem-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.problem-card p  { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.service-card:hover {
  border-color: rgba(58,125,58,.35);
  box-shadow: 0 8px 28px rgba(58,125,58,.07);
}
.service-card:hover .icon-box { background: var(--primary); color: #fff; }
.service-card .icon-box { width: 40px; height: 40px; border-radius: 10px; margin-bottom: 12px; }
.service-card h3 { font-size: .9rem; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.service-card p  { font-size: .78rem; color: var(--muted); flex: 1; line-height: 1.55; }
.service-price {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
}

/* ─────────────────────────────────────────
   TURNKEY
───────────────────────────────────────── */
.turnkey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.check-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: rgba(26,46,26,.82);
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 4px;
  width: 18px; height: 18px;
  background: rgba(58,125,58,.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233a7d3a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
  border-radius: 50%;
}
.turnkey-badges { display: flex; gap: 12px; margin: 24px 0; flex-wrap: wrap; }
.turnkey-badge {
  padding: 12px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.turnkey-badge .badge-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.turnkey-badge .badge-val   { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 700; margin-top: 2px; }
.turnkey-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(58,125,58,.12);
}
.turnkey-img-wrap img { width: 100%; }
.turnkey-bubble {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(58,125,58,.3);
}
.turnkey-bubble .num { font-family: 'Montserrat',sans-serif; font-size: 1.6rem; font-weight: 800; }
.turnkey-bubble .sub { font-size: .8rem; opacity: .88; }

/* ─────────────────────────────────────────
   LANDSCAPING
───────────────────────────────────────── */
.land-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.land-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.land-icon { font-size: 1.6rem; margin-bottom: 16px; }
.land-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.dot-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.dot-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(26,46,26,.8);
  line-height: 1.5;
}
.dot-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 7px;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.land-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 24px; }

/* ─────────────────────────────────────────
   ADVANTAGES
───────────────────────────────────────── */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.adv-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 24px;
  transition: background .2s;
}
.adv-card:hover { background: rgba(255,255,255,.16); }
.adv-card svg { opacity: .88; margin-bottom: 14px; }
.adv-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.adv-card p  { font-size: .855rem; opacity: .8; line-height: 1.6; }
.section-dark .section-title { color: #fff; }

/* ─────────────────────────────────────────
   STEPS
───────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  position: relative;
}
.step-num-bg {
  position: absolute;
  top: -14px; left: -6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  opacity: .1;
  line-height: 1;
  pointer-events: none;
}
.step-circle {
  width: 32px; height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 12px;
  position: relative;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: .855rem; color: var(--muted); line-height: 1.6; }

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing-table {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
}
.pricing-table table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  background: var(--secondary);
  font-size: .85rem;
  font-weight: 700;
  padding: 14px 20px;
  text-align: left;
}
.pricing-table td { padding: 13px 20px; font-size: .9rem; border-top: 1px solid var(--border); }
.pricing-table tr:hover td { background: var(--secondary); }
.price-val { font-weight: 700; color: var(--primary); }
.price-note { font-size: .78rem; color: var(--muted); margin-left: 8px; }
.pricing-note {
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 16px;
}

/* ─────────────────────────────────────────
   PORTFOLIO
───────────────────────────────────────── */
.pf-title-accent { color: var(--primary); }
.pf-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 32px;
}
.pf-tabs::-webkit-scrollbar { display: none; }
.pf-tab {
  flex-shrink: 0;
  padding: 14px 28px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
  cursor: pointer;
  white-space: nowrap;
}
.pf-tab:hover { color: var(--primary); }
.pf-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

.pf-panel { display: none; }
.pf-panel.active { display: block; }

.pf-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 420px;
}

.pf-slider {
  position: relative;
  overflow: hidden;
  background: #eee;
}
.pf-slides {
  display: flex;
  height: 100%;
  transition: transform .4s ease;
}
.pf-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}
.pf-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pf-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(255,255,255,.85);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--fg);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: background .2s;
  z-index: 2;
}
.pf-arrow:hover { background: #fff; }
.pf-arrow-prev { left: 12px; }
.pf-arrow-next { right: 12px; }

.pf-info {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pf-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}
.pf-meta { margin-bottom: 20px; display: flex; flex-direction: column; gap: 12px; }
.pf-meta-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 2px;
}
.pf-meta-val { font-size: .9rem; color: var(--muted); }
.pf-works {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 28px;
}
.pf-works li {
  font-size: .875rem;
  color: rgba(26,46,26,.78);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}
.pf-works li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 800px) {
  .pf-card { grid-template-columns: 1fr; }
  .pf-slider { min-height: 260px; }
  .pf-info { padding: 24px; }
  .pf-tab { padding: 12px 16px; font-size: .72rem; }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  color: rgba(255,255,255,.8);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color .2s;
}
.lightbox-close:hover { color: #fff; }

/* ─────────────────────────────────────────
   REVIEWS
───────────────────────────────────────── */
.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}
.reviews-header h2 { margin-bottom: 0; text-align: left; }
.reviews-header h2 span { color: var(--primary); }
.reviews-nav { display: flex; gap: 8px; flex-shrink: 0; margin-top: 4px; }
.reviews-nav button {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.reviews-nav button:hover { background: var(--primary2); }

.reviews-viewport { overflow: hidden; }
.reviews-track {
  display: flex;
  gap: 16px;
  transition: transform .4s ease;
}
.review-card {
  flex: 0 0 calc(25% - 12px);
  border-radius: 16px;
  overflow: hidden;
  min-width: 0;
}
.review-card img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
}
.review-card:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .review-card { flex: 0 0 calc(50% - 8px); }
}
@media (max-width: 560px) {
  .review-card { flex: 0 0 calc(100%); }
  .reviews-header { flex-direction: column; }
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 1440px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  font-size: .93rem;
  font-weight: 600;
  text-align: left;
  color: var(--fg);
  background: var(--card);
  transition: background .2s;
}
.faq-q:hover { background: var(--secondary); }
.faq-q .icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
  font-size: 1.1rem;
  font-style: normal;
  transition: transform .3s;
  line-height: 1;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 4px 24px 20px; font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; }
.form-label span { color: #e74c3c; }
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: .9rem;
  background: var(--bg);
  color: var(--fg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(58,125,58,.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-textarea { resize: none; min-height: 90px; }
.form-agree { font-size: .75rem; color: var(--muted); text-align: center; margin-top: 8px; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
}
.form-success.show { display: flex; }
.form-success-icon {
  width: 64px; height: 64px;
  background: rgba(58,125,58,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}
.form-success h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.form-success p  { color: var(--muted); font-size: .95rem; }
.contact-info { display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color .2s;
}
.contact-info-card:hover { border-color: rgba(58,125,58,.35); }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(58,125,58,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  transition: background .2s, color .2s;
}
.contact-info-card:hover .contact-icon { background: var(--primary); color: #fff; }
.contact-info-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.contact-info-val { font-family: 'Montserrat',sans-serif; font-size: 1.05rem; font-weight: 700; margin-top: 2px; }
.contact-info-text { font-size: .875rem; color: var(--fg); margin-top: 3px; line-height: 1.5; }
.contact-info-sub { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.contact-messenger-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-messenger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-weight: 600;
  font-size: .9rem;
  transition: border-color .2s, background .2s;
}
.contact-messenger:hover { border-color: rgba(58,125,58,.4); background: rgba(58,125,58,.04); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .grid-3, .adv-grid, .steps-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .turnkey-grid, .land-grid, .contact-grid { grid-template-columns: 1fr; }
  .turnkey-img-wrap { order: -1; }
  .turnkey-bubble { display: none; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .grid-3, .services-grid, .adv-grid, .steps-grid, .reviews-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { grid-template-columns: 1fr 1fr; }
}
