/* ============================================================
   IRIDIUM COMPANY — Stylesheet
   Paleta: #CDF27E / #BBED50 / #586276 / #2C323C
   Tipografia: Montserrat
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-light: #CDF27E;
  --green-mid:   #BBED50;
  --slate:       #586276;
  --dark:        #2C323C;
  --dark-alt:    #1E232B;
  --white:       #FFFFFF;
  --gray-100:    #F7F8F5;
  --gray-200:    #EAECEB;
  --gray-400:    #9BA3A0;
  --text:        #2C323C;
  --radius:      6px;
  --shadow:      0 4px 24px rgba(44,50,60,.10);
  --transition:  .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--slate);
  margin-top: 14px;
  max-width: 640px;
}

.section-subtitle.light { color: rgba(255,255,255,.75); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-light);
  color: var(--dark);
  border-color: var(--green-light);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { width: 38px; height: 38px; flex-shrink: 0; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .03em;
}
.nav-logo-name span { color: var(--green-light); }
.nav-logo-tagline {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-light);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 8px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  background: var(--dark-alt);
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(205,242,126,.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  opacity: .06;
  background-image: radial-gradient(circle, var(--green-light) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--green-light);
}

.hero-desc {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,.72);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-badge {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--green-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(8px);
}

.hero-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(205,242,126,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-light);
}

.hero-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.hero-badge-text span {
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

/* ---- CLIENTS STRIP ---- */
.clients-strip {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}

.clients-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.clients-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  white-space: nowrap;
}

.clients-divider {
  width: 1px;
  height: 20px;
  background: var(--gray-200);
}

.clients-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.clients-logos span {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: .06em;
}

/* ---- PROBLEMS ---- */
.section-problems {
  padding: 96px 0;
  background: var(--white);
}

.problems-header { text-align: center; margin-bottom: 60px; }
.problems-header .section-subtitle { margin: 14px auto 0; }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 22px;
  border-top: 3px solid var(--gray-200);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.problem-card:hover {
  border-top-color: var(--green-mid);
  box-shadow: var(--shadow);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--slate);
}

.problem-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.35;
}
.problem-card p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.55;
}

/* ---- METHODOLOGY ---- */
.section-method {
  padding: 96px 0;
  background: var(--dark);
}

.method-header { margin-bottom: 60px; }

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.method-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: rgba(255,255,255,.1);
  z-index: 0;
}

.method-step {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}

.step-number-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(205,242,126,.12);
  border: 2px solid rgba(205,242,126,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--green-light);
}

.method-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 12px;
}
.method-step p {
  font-size: 13px;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
}

/* ---- PRODUTOS ---- */
.section-products {
  padding: 96px 0;
  background: var(--gray-100);
}

.products-header { text-align: center; margin-bottom: 60px; }
.products-header .section-subtitle { margin: 14px auto 0; }

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.product-header {
  background: var(--dark);
  padding: 32px 36px 28px;
}

.product-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(205,242,126,.15);
  color: var(--green-light);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.product-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 10px;
}
.product-header p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
}

.product-body {
  padding: 32px 36px;
  flex: 1;
}
.product-body p {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 24px;
  line-height: 1.65;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.product-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
.product-feature::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 5' stroke='%232C323C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.product-channels {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.product-channels-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.product-channels-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.channel-chip {
  font-size: 12px;
  font-weight: 600;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--slate);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ---- RESULTS ---- */
.section-results {
  padding: 96px 0;
  background: var(--dark);
}

.results-header { text-align: center; margin-bottom: 60px; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  overflow: hidden;
}

.result-item {
  background: var(--dark);
  padding: 40px 28px;
  text-align: center;
  transition: background var(--transition);
}
.result-item:hover { background: rgba(205,242,126,.07); }

.result-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(205,242,126,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--green-light);
}

.result-number {
  font-size: 30px;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 8px;
}
.result-desc {
  font-size: 13px;
  color: rgba(255,255,255,.62);
  line-height: 1.5;
}

/* ---- WHY IRIDIUM ---- */
.section-why {
  padding: 96px 0;
  background: var(--white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left {}

.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.why-pillar {
  border-left: 3px solid var(--green-light);
  padding-left: 16px;
}
.why-pillar h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.why-pillar p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.55;
}

.why-cta-box {
  background: var(--dark);
  border-radius: 10px;
  padding: 48px 40px;
  text-align: center;
}
.why-cta-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}
.why-cta-box p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
}
.why-cta-box .btn { width: 100%; justify-content: center; }

/* ---- PARTNERS ---- */
.section-partners {
  padding: 80px 0;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
}

.partners-header { text-align: center; margin-bottom: 48px; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.partner-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--green-mid);
}

.partner-card.featured {
  border-color: var(--green-mid);
  background: var(--dark);
}

.partner-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.partner-card.featured .partner-name { color: var(--green-light); }

.partner-desc {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.5;
}
.partner-card.featured .partner-desc { color: rgba(255,255,255,.6); }

.partner-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--green-light);
  color: var(--dark);
  padding: 3px 8px;
  border-radius: 3px;
}

/* ---- CTA BANNER ---- */
.section-cta {
  padding: 80px 0;
  background: var(--green-light);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.cta-text p {
  font-size: 16px;
  color: rgba(44,50,60,.72);
}

.cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark-alt);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand {}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand-logo svg { width: 34px; height: 34px; }
.footer-brand-logo span {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
}
.footer-brand-logo span em { color: var(--green-light); font-style: normal; }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 22px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--green-light);
  color: var(--green-light);
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green-light); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a,
.footer-contact span {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a:hover { color: var(--green-light); }
.footer-contact svg { flex-shrink: 0; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

/* ---- INNER PAGE HERO ---- */
.page-hero {
  background: var(--dark);
  padding: 72px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.page-hero-inner { max-width: 680px; }
.page-hero .section-tag { color: var(--green-light); }
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.68);
}

/* ---- SOBRE ---- */
.section-about {
  padding: 96px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text p {
  font-size: 16px;
  color: var(--slate);
  margin-bottom: 18px;
  line-height: 1.7;
}
.about-text strong { color: var(--dark); }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-mid);
}
.about-value h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.about-value p { font-size: 13px; color: var(--slate); line-height: 1.55; }

.about-stats {
  background: var(--dark);
  border-radius: 10px;
  padding: 40px;
}
.about-stats h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
}
.stat-list { display: flex; flex-direction: column; gap: 20px; }
.stat-item {}
.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.6); }
.stat-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-top: 20px;
}

/* ---- SERVIÇOS ---- */
.section-services-detail {
  padding: 96px 0;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.service-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}
.service-item:last-child { border-bottom: none; }

.service-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
}
.service-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}
.service-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}
.service-desc {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.service-bullet::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}

/* ---- CONTATO ---- */
.section-contact {
  padding: 96px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-info {}
.contact-info h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}
.contact-info p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-mid);
}
.contact-detail-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.contact-detail-text a, .contact-detail-text span { font-size: 14px; color: var(--slate); }
.contact-detail-text a:hover { color: var(--green-mid); }

.contact-form-wrap {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 40px;
}
.contact-form-wrap h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-mid); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 12px; }

/* ---- MOBILE NAV ---- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--dark);
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--green-light); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1060px) {
  .problems-grid { grid-template-columns: repeat(3, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-badges { flex-direction: row; flex-wrap: wrap; }
  .hero-badge { flex: 1; min-width: 200px; }
  .method-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .method-steps::before { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .service-item { grid-template-columns: 1fr; gap: 16px; }
  .service-num { font-size: 32px; }
}

@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .problems-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .why-pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .problems-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .method-steps { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}
