/* ============================================
   AS MEDIA HUB — Light Theme (Cream & Green)
   style.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,400&display=swap');

/* ═══════════════════════════════════════════
   CSS VARIABLES — Cream & Green
   ═══════════════════════════════════════════ */
:root {
  --bg-primary:     #faf9f6;
  --bg-secondary:   #f4f2ec;
  --bg-tertiary:    #edeae0;
  --bg-card:        #ffffff;
  --bg-card-hover:  #f8f7f3;

  --border-color:   #e2ddd4;
  --border-hover:   #2d6a4f;

  --green:          #2d6a4f;
  --green-light:    #40916c;
  --green-pale:     #d8f3dc;
  --green-xpale:    #f0faf2;
  --amber:          #b5891a;

  --gradient:       linear-gradient(135deg, #2d6a4f, #40916c);
  --gradient-text:  linear-gradient(135deg, #2d6a4f, #52b788);

  --text-primary:   #1a1a18;
  --text-secondary: #5a5a52;
  --text-muted:     #9a9a8e;

  --font-display:   'Fraunces', Georgia, serif;
  --font-body:      'Plus Jakarta Sans', sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-green: 0 8px 30px rgba(45,106,79,0.2);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-primary);
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   LAYOUT UTILITIES
   ═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-xpale);
  border: 1.5px solid rgba(45,106,79,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(45,106,79,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-color);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-xpale);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.28);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

.btn-lg { padding: 16px 36px; font-size: 0.97rem; }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }

/* ═══════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════ */
.glass-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(45,106,79,0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.badge-popular { background: var(--gradient); color: #fff; }
.badge-new {
  background: var(--green-pale);
  color: var(--green);
  border: 1px solid rgba(45,106,79,0.2);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* dot pattern background */
.hero::before {
  content: '';
  position: absolute;
  top: 80px;
  right: -40px;
  width: 480px;
  height: 480px;
  background-image: radial-gradient(circle, rgba(45,106,79,0.14) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45,106,79,0.07) 0%, transparent 65%);
  top: -150px;
  right: -80px;
  animation: orbFloat1 10s ease-in-out infinite;
}

.hero-bg-orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(181,137,26,0.06) 0%, transparent 65%);
  bottom: -80px;
  left: -60px;
  animation: orbFloat2 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-20px, 25px) scale(1.04); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(18px, -18px) scale(1.06); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-xpale);
  border: 1.5px solid rgba(45,106,79,0.22);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 0.7s 0.1s forwards;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #25D366;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeInUp 0.7s 0.25s forwards;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 38px;
  opacity: 0;
  animation: fadeInUp 0.7s 0.4s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: fadeInUp 0.7s 0.55s forwards;
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 50px;
  opacity: 0;
  animation: fadeInUp 0.7s 0.7s forwards;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.trust-item .t-icon {
  width: 26px;
  height: 26px;
  background: var(--green-xpale);
  border: 1.5px solid rgba(45,106,79,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1.5px solid var(--border-color);
  border-bottom: 1.5px solid var(--border-color);
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.stat-item {
  text-align: center;
  padding: 10px 20px;
  border-right: 1.5px solid var(--border-color);
}
.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card { padding: 36px 30px; text-align: center; }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--green-xpale);
  border: 1.5px solid rgba(45,106,79,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; }

.service-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 5px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing-tab {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
}

.pricing-tab.active { background: var(--gradient); color: #fff; }

.pricing-panel { display: none; }
.pricing-panel.active { display: grid; }

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card { padding: 36px 28px; position: relative; }

.pricing-card.popular {
  border-color: var(--green);
  box-shadow: var(--shadow-green), var(--shadow-md);
}

.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header { margin-bottom: 22px; }

.pricing-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 4px;
}

.pricing-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-period { font-size: 0.8rem; color: var(--text-secondary); }
.pricing-desc { font-size: 0.82rem; color: var(--text-secondary); margin-top: 6px; }

.pricing-divider {
  height: 1.5px;
  background: var(--border-color);
  margin: 18px 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.pricing-feature .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 1px solid rgba(45,106,79,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--green);
  flex-shrink: 0;
}

.pricing-cta { width: 100%; justify-content: center; }
.pricing-loading, .pricing-empty {
  text-align: center;
  color: var(--text-secondary);
  padding: 60px 20px;
  grid-column: 1 / -1;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.why-card { padding: 28px 24px; display: flex; gap: 16px; align-items: flex-start; }

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--green-xpale);
  border: 1.5px solid rgba(45,106,79,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-content h3 { font-size: 0.97rem; margin-bottom: 5px; }
.why-content p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.65; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.testimonial-card { padding: 30px 26px; }

.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--amber); font-size: 0.85rem; }

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 18px;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 300;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.testimonial-name { font-size: 0.9rem; font-weight: 700; }
.testimonial-location { font-size: 0.75rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: rgba(45,106,79,0.35);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 12px;
  cursor: pointer;
  background: none;
  border: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--green);
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.78;
  padding-bottom: 20px;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ═══════════════════════════════════════════
   WHATSAPP CTA
   ═══════════════════════════════════════════ */
.whatsapp-cta {
  background: var(--bg-secondary);
  border-top: 1.5px solid var(--border-color);
  border-bottom: 1.5px solid var(--border-color);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.whatsapp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45,106,79,0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.whatsapp-cta h2 { font-size: clamp(1.8rem,3.5vw,2.5rem); margin-bottom: 14px; position: relative; }
.whatsapp-cta p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 32px; position: relative; }

/* ═══════════════════════════════════════════
   FLOAT BUTTON
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: var(--transition);
  animation: floatBounce 3s ease-in-out infinite;
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════════
   CHANNEL CATEGORIES
   ═══════════════════════════════════════════ */
.channels-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.channel-card { padding: 28px 22px; text-align: center; }
.channel-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.channel-card h3 { font-size: 1rem; margin-bottom: 6px; }
.channel-card p { font-size: 0.82rem; color: var(--text-secondary); }

/* ═══════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════ */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.comparison-table { width: 100%; border-collapse: collapse; background: var(--bg-card); }

.comparison-table th,
.comparison-table td {
  padding: 15px 22px;
  text-align: center;
  border-bottom: 1.5px solid var(--border-color);
  font-size: 0.87rem;
}

.comparison-table th {
  background: var(--bg-secondary);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.82rem;
}

.comparison-table td:first-child,
.comparison-table th:first-child { text-align: left; color: var(--text-secondary); }

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--bg-secondary); }
.comparison-table .check-yes { color: var(--green); font-size: 1rem; font-weight: 700; }
.comparison-table .check-no  { color: var(--text-muted); }

/* ═══════════════════════════════════════════
   STEPS / HOW IT WORKS
   ═══════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; position: relative; }

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-pale), var(--green), var(--green-pale));
  opacity: 0.5;
}

.step-card { padding: 32px 26px; text-align: center; }

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 16px rgba(45,106,79,0.25);
}

.step-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.68; }

/* ═══════════════════════════════════════════
   BENEFITS / USE CASES / SPECS
   ═══════════════════════════════════════════ */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.benefit-card { padding: 30px 24px; }
.benefit-icon { font-size: 2rem; margin-bottom: 14px; }
.benefit-card h3 { font-size: 0.98rem; margin-bottom: 7px; }
.benefit-card p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.68; }

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

.usecase-card { padding: 30px 26px; display: flex; gap: 18px; align-items: flex-start; }
.usecase-icon { font-size: 2rem; flex-shrink: 0; }
.usecase-content h3 { font-size: 1.02rem; margin-bottom: 7px; }
.usecase-content p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.68; }

.specs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.spec-card { padding: 28px 24px; text-align: center; }
.spec-value { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--green); margin-bottom: 6px; }
.spec-label { font-size: 0.84rem; color: var(--text-secondary); font-weight: 500; }

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }

.contact-channels { display: flex; flex-direction: column; gap: 14px; }

.contact-channel-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.contact-channel-btn.whatsapp {
  background: #f0faf5;
  border: 1.5px solid rgba(37,211,102,0.25);
  color: #128C7E;
}
.contact-channel-btn.whatsapp:hover {
  background: #e2f8ee;
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.contact-channel-btn.telegram {
  background: #f0f7fd;
  border: 1.5px solid rgba(0,136,204,0.2);
  color: #0088cc;
}
.contact-channel-btn.telegram:hover {
  background: #e2f1fb;
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.contact-channel-icon { font-size: 1.5rem; }

.contact-form-card { padding: 40px; box-shadow: var(--shadow-md); }

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  display: none;
  text-align: center;
  padding: 18px;
  background: var(--green-xpale);
  border: 1.5px solid rgba(45,106,79,0.2);
  border-radius: var(--radius-md);
  color: var(--green);
  font-size: 0.9rem;
  margin-top: 16px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   PAGE HERO (sub-pages)
   ═══════════════════════════════════════════ */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: var(--bg-secondary);
  border-bottom: 1.5px solid var(--border-color);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(45,106,79,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background-image: radial-gradient(circle, rgba(45,106,79,0.1) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.45;
}

.page-hero h1 { font-size: clamp(2rem,5vw,3.2rem); margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 30px;
  line-height: 1.78;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid, .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .channels-grid { grid-template-columns: repeat(3,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1.5px solid var(--border-color); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1.5px solid var(--border-color); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .services-grid, .why-grid, .benefits-grid, .specs-grid,
  .pricing-grid, .testimonials-grid, .channels-grid,
  .steps-grid, .usecases-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .pricing-tabs { flex-wrap: wrap; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.2rem; }
  .hero-trust { gap: 14px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 1.7rem; }
  .stat-value { font-size: 1.6rem; }
}
