:root {
  --bg: #F5FCF9;
  --mint: #A7D0CD;
  --peach: #E5C5B4;
  --text: #2F4858;
  --text-light: #5a7a8a;
  --white: #ffffff;
  --card-bg: #EEF8F5;
  --mint-dark: #7fb8b4;
  --peach-dark: #d4a48e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 252, 249, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(167, 208, 205, 0.3);
}

.logo {
  font-family: 'Geologica', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--mint-dark);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--mint-dark);
}

@media (max-width: 700px) {
  .header-nav { display: none; }
  .badge.launched { font-size: 0.6rem; padding: 6px 12px; }
}

@media (max-width: 480px) {
  header { padding: 12px 16px; }
  .logo { font-size: 1.2rem; }
  .badge.launched { font-size: 0.55rem; padding: 5px 10px; letter-spacing: 0.06em; }
}

.badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 6px 16px;
  border: 1.5px solid var(--mint);
  border-radius: 100px;
}

.badge.launched {
  background: linear-gradient(135deg, var(--mint), var(--peach));
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.1em;
  border: none;
  padding: 8px 20px;
  box-shadow: 0 4px 14px rgba(167, 208, 205, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(167, 208, 205, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(229, 197, 180, 0.6); }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.hero-content {
  text-align: left;
}

.hero-mockup {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
}

.hero-mockup img {
  width: 300px;
  height: auto;
  display: block;
  border-radius: 36px;
  transform: perspective(800px) rotateY(-5deg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -180px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167,208,205,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,197,180,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(167, 208, 205, 0.15);
  border-radius: 100px;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--mint-dark);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--text-light);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--peach);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.hero-cta:hover {
  background: var(--peach-dark);
  transform: translateY(-2px);
}

.hero-cta-mint {
  background: var(--mint);
}

.hero-cta-mint:hover {
  background: var(--mint-dark);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUp 1s 0.6s ease both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--mint), transparent);
  animation: scrollPulse 2s infinite;
}

.hero-trust {
  margin-top: 24px;
  animation: fadeUp 0.8s 0.45s ease both;
  position: relative;
  z-index: 1;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(167, 208, 205, 0.5);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  backdrop-filter: blur(8px);
}

.trust-icon {
  font-size: 1rem;
}

/* ── SECTION BASE ── */
section {
  padding: 100px 24px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 560px;
}

/* ── PROBLEM ── */
.problem {
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg);
  border-radius: 16px;
  border-left: 3px solid var(--peach);
  transition: transform 0.2s;
}

.problem-card:hover {
  transform: translateX(4px);
}

.problem-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

/* ── SOLUTION ── */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.sol-card {
  padding: 18px 16px;
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid rgba(167, 208, 205, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.sol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--peach));
}

.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(47, 72, 88, 0.08);
}

.sol-card-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.sol-card h3 {
  font-family: 'Geologica', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.sol-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

.solution-with-mockup {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-main {
  flex: 1;
  min-width: 0;
}

.solution-main .section-label {
  margin-bottom: 10px;
}

.solution-main .section-title {
  margin-bottom: 12px;
}

.solution-section {
  padding: 72px 60px;
}

.solution-mockup {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
}

.solution-mockup img {
  width: 300px;
  height: auto;
  display: block;
  border-radius: 36px;
  transform: perspective(800px) rotateY(-5deg);
}

/* ── AI HIGHLIGHT ── */
.ai-section {
  background: var(--text);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167,208,205,0.12) 0%, transparent 65%);
}

.ai-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,197,180,0.1) 0%, transparent 65%);
}

.ai-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ai-section .section-label {
  color: var(--mint);
}

.ai-section .section-title {
  color: var(--white);
  font-family: 'Geologica', sans-serif;
}

.ai-section .section-desc {
  color: rgba(255,255,255,0.65);
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ai-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ai-feature-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(167, 208, 205, 0.15);
  border: 1px solid rgba(167, 208, 205, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mint);
}

.ai-feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.ai-feature-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── FOR WHOM ── */
.forwhom {
  background: var(--white);
}

.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.forwhom-card {
  padding: 28px 20px;
  background: var(--bg);
  border-radius: 16px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.forwhom-card:hover {
  border-color: var(--mint);
  transform: translateY(-4px);
}

.forwhom-card .icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.forwhom-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.forwhom-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ── PRICING ── */
.pricing-section {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.pricing-card {
  padding: 28px 20px;
  background: var(--bg);
  border-radius: 20px;
  border: 1.5px solid rgba(167, 208, 205, 0.4);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--peach));
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(47, 72, 88, 0.08);
}

.pricing-card.popular {
  background: var(--white);
  border-color: var(--peach);
}

.pricing-card.popular::before {
  background: linear-gradient(90deg, var(--peach), var(--peach-dark));
}

.pricing-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--peach);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.pricing-plan {
  font-family: 'Geologica', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.pricing-children {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: 'Geologica', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--mint-dark);
}

.pricing-price span {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-includes {
  background: var(--bg);
  border-radius: 20px;
  border: 1.5px solid rgba(167, 208, 205, 0.3);
  padding: 28px 32px;
  margin-bottom: 20px;
}

.pricing-includes h3 {
  font-family: 'Geologica', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.pricing-includes ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
}

.pricing-includes ul li {
  font-size: 0.92rem;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.pricing-includes ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint-dark);
  font-weight: 700;
}

.pricing-enterprise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--text);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 20px;
}

.pricing-enterprise .pricing-plan {
  color: var(--white);
  margin-bottom: 10px;
}

.pricing-enterprise-left p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.pricing-enterprise-right ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.pricing-enterprise-right ul li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.pricing-enterprise-right ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}

.pricing-enterprise-price {
  font-family: 'Geologica', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--mint);
}

.pricing-onboarding {
  background: rgba(167, 208, 205, 0.08);
  border: 1px solid rgba(167, 208, 205, 0.25);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 20px;
}

.pricing-onboarding h4 {
  font-family: 'Geologica', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.pricing-onboarding-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.pricing-onboarding-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(167, 208, 205, 0.3);
}

.pricing-onboarding-row span {
  font-size: 0.92rem;
  color: var(--text-light);
}

.pricing-onboarding-row strong {
  font-size: 0.92rem;
  color: var(--mint-dark);
  font-weight: 700;
}

.pricing-onboarding-note {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── START INFO ── */
.start-info {
  background: var(--bg);
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.start-card {
  padding: 28px 24px;
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid rgba(167, 208, 205, 0.4);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.start-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(47, 72, 88, 0.08);
}

.start-card-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(167, 208, 205, 0.35);
}

.start-card h4 {
  font-family: 'Geologica', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.start-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.start-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px 32px;
  background: rgba(167, 208, 205, 0.12);
  border-radius: 16px;
  border: 1px solid rgba(167, 208, 205, 0.25);
}

.start-note p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── FAQ ── */
.faq-section {
  background: var(--bg);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid rgba(167, 208, 205, 0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--mint);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: 'Geologica', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--mint-dark);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── LEAD FORM ── */
.lead-section {
  background: var(--white);
  padding: 100px 24px 120px;
}

.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.lead-info .section-desc {
  margin-bottom: 32px;
}

.lead-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-step {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lead-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(167, 208, 205, 0.35);
}

.lead-step span {
  font-size: 0.95rem;
  color: var(--text);
}

.lead-form {
  background: var(--bg);
  padding: 40px 36px;
  border-radius: 20px;
  border: 1.5px solid rgba(167, 208, 205, 0.4);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(47, 72, 88, 0.06);
}

.lead-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--peach));
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-field input {
  padding: 12px 16px;
  border: 1.5px solid rgba(167, 208, 205, 0.5);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-field input::placeholder {
  color: rgba(90, 122, 138, 0.4);
}

.form-field input:focus {
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 3px rgba(167, 208, 205, 0.2);
}

.form-hint {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin: -4px 0;
}

.lead-submit {
  padding: 16px 40px;
  background: var(--peach);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  align-self: center;
}

.lead-submit:hover {
  background: var(--peach-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 197, 180, 0.4);
}

.lead-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.lead-status {
  font-size: 0.88rem;
  text-align: center;
  min-height: 1.4em;
}

.lead-status.success {
  color: var(--mint-dark);
  font-weight: 600;
}

.lead-status.error {
  color: #d45;
  font-weight: 500;
}

/* ── TELEGRAM CTA ── */
.hero-cta-tg {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(47, 72, 88, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
}

.hero-cta-tg:hover {
  background: rgba(47, 72, 88, 0.06);
  border-color: var(--mint-dark);
  transform: translateY(-2px);
}

.tg-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing-tg-link {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.pricing-tg-link a {
  color: var(--mint-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-tg-link a:hover {
  color: var(--text);
}

.tg-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #229ED9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(34, 158, 217, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.tg-float svg {
  width: 28px;
  height: 28px;
}

.tg-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(34, 158, 217, 0.55);
}

.tg-float-tooltip {
  position: absolute;
  right: 66px;
  background: var(--text);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
}

.tg-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--text);
  border-right-width: 0;
}

.tg-float:hover .tg-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .tg-float {
    bottom: 16px;
    right: 16px;
  }
  .tg-float-tooltip { display: none; }
  .hero-cta-tg { padding: 14px 20px; }
}

/* ── FOOTER ── */
footer {
  padding: 32px 48px;
  border-top: 1px solid rgba(167, 208, 205, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content { text-align: center; }
  .hero-sub { max-width: 560px; margin-left: auto; margin-right: auto; }
  .hero-mockup { display: flex; justify-content: center; }
  .hero-mockup img {
    width: 220px;
    transform: none;
  }
}

@media (max-width: 900px) {
  header { padding: 16px 24px; }

  .solution-with-mockup { flex-direction: column; gap: 40px; }
  .solution-mockup { padding-right: 0; }
  .solution-mockup img { width: 220px; transform: none; }

  .problem-grid,
  .ai-inner { grid-template-columns: 1fr; gap: 40px; }

  .solution-grid { grid-template-columns: 1fr 1fr; }

  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-enterprise { grid-template-columns: 1fr; gap: 24px; }
  .pricing-includes ul { grid-template-columns: 1fr; }

  .forwhom-grid { grid-template-columns: 1fr 1fr; }

  .lead-inner { grid-template-columns: 1fr; gap: 40px; }

  .start-grid { grid-template-columns: 1fr 1fr; }
}


@media (max-width: 600px) {
  section { padding: 72px 20px; }
  .hero { padding: 100px 24px 60px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-cta { text-align: center; padding: 14px 24px; font-size: 0.85rem; }
  .hero-trust { margin-top: 20px; }
  .trust-badge { font-size: 0.72rem; padding: 8px 14px; }
  .solution-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .forwhom-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .start-grid { grid-template-columns: 1fr; }
  .lead-form { padding: 28px 20px; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
  .hero-mockup img { width: 65vw; max-width: 220px; }
}

/* ── BLOG ── */

/* Logo as link */
.logo-link { text-decoration: none; }

/* Active nav item */
.nav-active { color: var(--mint-dark) !important; }

/* Footer with links — mirrors header layout */
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(167, 208, 205, 0.2);
}

.footer-row .logo { font-size: 1.1rem; }
.footer-spacer { width: 120px; } /* balances logo width so nav stays centered */

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--mint-dark);
}

/* Blog listing */
.blog-listing {
  padding: 140px 48px 80px;
  min-height: 60vh;
}

.blog-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Blog label pill (not caps-lock, matches card tags style) */
.blog-label-pill {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mint-dark);
  background: rgba(167, 208, 205, 0.15);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* Blog page title — matches landing section titles */
.blog-page-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

/* Blog page description — higher contrast than before */
.blog-page-desc {
  font-size: 1.05rem;
  color: var(--text);
  opacity: 0.7;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* Single card centering */
.blog-grid-single {
  display: flex;
  justify-content: center;
}

.blog-grid-single .blog-card {
  max-width: 400px;
  width: 100%;
}

.blog-card {
  display: block;
  text-decoration: none;
  padding: 32px 28px;
  background: var(--white);
  border-radius: 24px;
  border: 1.5px solid rgba(167, 208, 205, 0.4);
  box-shadow: 0 4px 24px rgba(47, 72, 88, 0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mint), var(--peach));
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(47, 72, 88, 0.12);
  border-color: var(--mint);
}

.blog-card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.blog-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: rgba(167, 208, 205, 0.15);
  padding: 4px 10px;
  border-radius: 100px;
}

.blog-card-title {
  font-family: 'Geologica', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-light);
  opacity: 0.7;
}

/* Blog article */
.blog-article {
  padding: 120px 48px 80px;
}

.breadcrumbs {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.breadcrumbs a {
  color: var(--mint-dark);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.bc-sep {
  margin: 0 8px;
  opacity: 0.5;
}

.article-meta {
  max-width: 720px;
  margin: 0 auto 40px;
}

.article-title {
  font-family: 'Geologica', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 16px;
}

.article-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-light);
}

.article-dot {
  opacity: 0.4;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.article-body h1 { display: none; }

.article-body h2 {
  font-family: 'Geologica', sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  margin: 48px 0 16px;
}

.article-body h3 {
  font-family: 'Geologica', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 32px 0 12px;
}

.article-body h4 {
  font-family: 'Geologica', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 8px;
}

.article-body p {
  margin-bottom: 16px;
}

.article-body ul, .article-body ol {
  margin: 0 0 16px 24px;
}

.article-body li {
  margin-bottom: 6px;
  line-height: 1.7;
}

.article-body blockquote {
  margin: 20px 0;
  padding: 16px 24px;
  background: rgba(167, 208, 205, 0.1);
  border-left: 4px solid var(--mint);
  border-radius: 0 12px 12px 0;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.article-body blockquote p {
  margin-bottom: 8px;
}

.article-body blockquote p:last-child {
  margin-bottom: 0;
}

.article-body strong {
  font-weight: 700;
  color: var(--text);
}

.article-body hr {
  border: none;
  border-top: 1px solid rgba(167, 208, 205, 0.3);
  margin: 40px 0;
}

.article-body a {
  color: var(--mint-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: var(--text);
}

/* Article tables */
.table-scroll {
  overflow-x: auto;
  margin: 20px 0;
  -webkit-overflow-scrolling: touch;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 20px 0;
}

.article-body thead th {
  background: var(--text);
  color: var(--white);
  font-family: 'Geologica', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
}

.article-body thead th:first-child {
  border-radius: 12px 0 0 0;
}

.article-body thead th:last-child {
  border-radius: 0 12px 0 0;
}

.article-body tbody td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(167, 208, 205, 0.2);
  color: var(--text);
  vertical-align: top;
}

.article-body tbody tr:last-child td:first-child {
  border-radius: 0 0 0 12px;
}

.article-body tbody tr:last-child td:last-child {
  border-radius: 0 0 12px 0;
}

.article-body tbody tr:nth-child(even) {
  background: rgba(167, 208, 205, 0.06);
}

.article-body tbody tr:hover {
  background: rgba(167, 208, 205, 0.12);
}

/* Article CTA block */
.article-cta {
  max-width: 720px;
  margin: 48px auto 32px;
  padding: 36px 40px;
  background: var(--card-bg);
  border-radius: 20px;
  border: 1.5px solid rgba(167, 208, 205, 0.3);
  text-align: center;
}

.article-cta h3 {
  font-family: 'Geologica', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.article-cta p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.article-back {
  max-width: 720px;
  margin: 0 auto;
}

.article-back a {
  font-size: 0.9rem;
  color: var(--mint-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.article-back a:hover {
  color: var(--text);
}

/* Blog responsive */
@media (max-width: 700px) {
  .blog-listing { padding: 120px 20px 60px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid-single .blog-card { max-width: 100%; }
  .blog-article { padding: 100px 20px 60px; }
  .article-title { font-size: 1.5rem; }
  .article-cta { padding: 28px 20px; }
  .footer-row { flex-direction: column; gap: 16px; }
  .footer-spacer { display: none; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .article-body { font-size: 0.92rem; }
  .article-body h2 { font-size: 1.25rem; }
  .article-body h3 { font-size: 1.05rem; }
}
