/* ============================================================
   INDEX.CSS — Growth Lab · Trang chủ
   ============================================================ */

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-lift);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 70% 40%,
      rgba(56, 239, 125, 0.2),
      transparent 32%
    ),
    linear-gradient(135deg, #13262c 0%, #17643d 44%, #172832 100%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: blob 8s infinite ease-in-out;
}
.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--green1);
  top: -100px;
  right: 10%;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: var(--green2);
  bottom: -50px;
  right: 30%;
  animation-delay: 3s;
  opacity: 0.15;
}
.hero-blob-3 {
  width: 250px;
  height: 250px;
  background: #155d27;
  top: 40%;
  left: 5%;
  animation-delay: 5s;
  opacity: 0.12;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 239, 125, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 239, 125, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 239, 125, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  color: var(--green2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeIn 0.8s ease forwards;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.08),
    0 10px 28px rgba(21, 93, 39, 0.18);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
  animation: slideLeft 0.9s ease 0.2s both;
}
.hero-title span {
  background: linear-gradient(90deg, #d9ffe5 0%, #90ee90 42%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 8px 24px rgba(56, 239, 125, 0.3));
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.75;
  animation: slideLeft 0.9s ease 0.4s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: slideLeft 0.9s ease 0.6s both;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: slideLeft 0.9s ease 0.8s both;
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #d9ffe5 0%, #90ee90 42%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 6px 18px rgba(56, 239, 125, 0.28));
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 2px;
}
.hero-visual {
  position: relative;
  animation: slideRight 0.9s ease 0.4s both;
}
.hero-card-main {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--gradient-r) border-box;
  border: 1.5px solid transparent;
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: none;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 18px 50px rgba(21, 93, 39, 0.22);
}
.hero-card-label {
  font-size: 0.75rem;
  color: var(--green1);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #101820;
  margin-bottom: 20px;
}
.service-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(21, 93, 39, 0.12);
  color: #425466;
  font-size: 0.9rem;
}
.service-list-item:last-child {
  border-bottom: none;
}
.service-icon-sm {
  width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    rgba(21, 93, 39, 0.12),
    rgba(255, 255, 255, 0.2)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.hero-floating-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  z-index: 2;
}
.hero-floating-badge.top {
  top: -20px;
  right: -20px;
  animation: float 4s ease-in-out infinite 1s;
}
.hero-floating-badge.bottom {
  bottom: -20px;
  left: -20px;
  animation: float 5s ease-in-out infinite 0.5s;
}
.badge-dot-green {
  width: 10px;
  height: 10px;
  background: var(--green1);
  border-radius: 50%;
}
.badge-dot-blue {
  width: 10px;
  height: 10px;
  background: #3b82f6;
  border-radius: 50%;
}

.hero .hero-badge,
.hero .hero-title,
.hero .hero-desc,
.hero .hero-actions,
.hero .hero-stats,
.hero .hero-visual {
  animation: none !important;
  opacity: 1;
  transform: none;
}

/* ===== MARQUEE / CLIENTS ===== */
.marquee-section {
  background: var(--light);
  padding: 28px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 18s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray);
  white-space: nowrap;
  padding: 6px 20px;
  background: #fff;
  border-radius: 50px;
  border: 1px solid #e8e8e8;
}

/* ===== SERVICES ===== */
.services-section {
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: #fff;
  --card-bg: #fff;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient-r) border-box;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.35s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-r);
  opacity: 0;
  transition: opacity 0.35s;
  border-radius: var(--radius-lg);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card-inner {
  position: relative;
  z-index: 1;
}
.service-card:hover .service-card-inner * {
  color: #fff !important;
}
.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.2) !important;
}
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: background 0.35s;
}
.service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green1);
  padding: 8px 14px;
  border: 1.5px solid rgba(21, 93, 39, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 20px rgba(21, 93, 39, 0.08);
  transition: all 0.2s;
}
.service-card:hover .service-card-link {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
  gap: 10px;
}
.service-card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-r);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  z-index: 2;
  border: 1.5px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 22px rgba(21, 93, 39, 0.2);
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--dark-lift);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(21, 93, 39, 0.1) 0%,
    rgba(56, 239, 125, 0.05) 100%
  );
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}
.stat-box {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.stat-box:last-child {
  border-right: none;
}
.stat-num {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  background: linear-gradient(90deg, #d9ffe5 0%, #90ee90 42%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 8px 24px rgba(56, 239, 125, 0.3));
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

/* ===== WHY US ===== */
.whyus-section {
  background: var(--light);
}
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.whyus-visual {
  position: relative;
}
.whyus-main-card {
  background: var(--gradient-r);
  border: 1.5px solid rgba(56, 239, 125, 0.55);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: #fff;
}
.whyus-main-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.whyus-main-card p {
  opacity: 0.85;
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.whyus-stat-row {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}
.whyus-stat {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  flex: 1;
}
.whyus-stat-n {
  font-size: 2rem;
  font-weight: 800;
}
.whyus-stat-l {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 2px;
}
.whyus-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient-r) border-box;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.check-icon {
  width: 36px;
  height: 36px;
  background: rgba(21, 93, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green1);
  font-size: 1rem;
}
.whyus-reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reason-card {
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient-r) border-box;
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1.5px solid transparent;
  transition: all 0.3s;
}
.reason-card:hover {
  border-color: var(--green1);
  box-shadow: 0 4px 20px rgba(21, 93, 39, 0.12);
  transform: translateX(6px);
}
.reason-num {
  width: 50px;
  height: 50px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #139b1a; /* Màu chữ số bên trong */
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;

  /* --- THÊM CÁC DÒNG DƯỚI ĐÂY ĐỂ TẠO BORDER GRADIENT --- */
  border: 2px solid transparent; /* Định dạng độ dày viền là 2px */
  background-image:
    linear-gradient(#fff, #fff), var(--gradient-r); /* Dùng lại biến gradient của bạn */
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.reason-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.reason-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== AUTOMATION SECTION ===== */
.automation-section {
  background: var(--dark-lift-2);
  padding: 90px 0;
  overflow: hidden;
}
.automation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.automation-section .section-title {
  color: #fff;
}
.automation-section .section-badge {
  border-color: rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.08),
    0 10px 28px rgba(21, 93, 39, 0.18);
}
.automation-section .section-desc {
  color: rgba(255, 255, 255, 0.6);
}
.tool-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.tool-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(56, 239, 125, 0.1);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.tool-feat:hover {
  border-color: rgba(56, 239, 125, 0.3);
  background: rgba(56, 239, 125, 0.05);
}
.tool-feat-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.tool-feat-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.tool-feat-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
.auto-terminal {
  background: #0d1117;
  border: 1px solid rgba(56, 239, 125, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.auto-terminal-bar {
  background: #161b22;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.term-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.term-dot-r {
  background: #ff5f57;
}
.term-dot-y {
  background: #ffbd2e;
}
.term-dot-g {
  background: #28c940;
}
.term-title {
  color: rgb(255, 255, 255);
  font-size: 0.8rem;
  margin-left: auto;
  margin-right: auto;
}
.auto-terminal-body {
  padding: 24px;
  font-family: "Courier New", monospace;
  font-size: 0.82rem;
  line-height: 1.9;
}
.term-line {
  color: rgba(255, 255, 255, 0.7);
}
.term-green {
  color: var(--green2);
}
.term-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--green2);
  animation: pulse 1s infinite;
  vertical-align: middle;
  margin-left: 2px;
}
.auto-flow-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.flow-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(56, 239, 125, 0.45);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
}
.flow-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.flow-status.running {
  background: var(--green2);
  animation: pulse 1.5s infinite;
}
.flow-status.done {
  background: #3b82f6;
}
.flow-status.queue {
  background: rgba(255, 255, 255, 0.2);
}
.flow-name {
  color: #fff;
  font-weight: 500;
  flex: 1;
}
.flow-time {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

/* ===== PROCESS ===== */
.process-section {
  background: var(--light);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
  list-style: none;
  padding-left: 0;
  counter-reset: none;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--green1), var(--green2));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
  list-style: none;
}
.process-step::marker {
  content: "";
}
.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgb(229, 227, 227);
  color: var(--gradient-r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(21, 93, 39, 0.3);
  border: 2px solid transparent; /* Định dạng độ dày viền là 2px */
  background-image:
    linear-gradient(#fff, #fff), var(--gradient-r); /* Dùng lại biến gradient của bạn */
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.step-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== FOUNDER ===== */
.founder-section {
  background: var(--white);
}
.founder-quote-wrap {
  background: var(--gradient-r);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.founder-quote-wrap::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 30px;
  font-size: 18rem;
  color: rgba(255, 255, 255, 0.06);
  font-family: Georgia, serif;
  line-height: 1;
}
.founder-quote-text {
  font-size: 1.25rem;
  color: #fff;
  font-style: italic;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.founder-name {
  margin-top: 24px;
}
.founder-name strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: block;
}
.founder-name span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.87rem;
}
.founder-profile {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.founder-photo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.founder-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.founder-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--green1);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 8px;
  transition: all 0.3s;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.12),
    0 10px 26px rgba(0, 0, 0, 0.16);
}
.founder-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.18),
    0 14px 34px rgba(0, 0, 0, 0.24);
}

/* ===== BLOG ===== */
.blog-section {
  background: #fff;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient-r) border-box;
  border: 1.5px solid transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 93, 39, 0.2);
}
.blog-img {
  height: 200px;
  background: linear-gradient(135deg, #144334, #217246);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-img-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-r);
  opacity: 0.15;
}
.blog-cat {
  position: absolute;
  bottom: 12px;
  left: 16px;
  background: var(--gradient-r);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.blog-body {
  padding: 22px 20px;
}
.blog-date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.blog-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 10px;
}
.blog-title:hover {
  color: var(--green1);
}
.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}
.blog-read {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green1);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border: 1.5px solid rgba(21, 93, 39, 0.22);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(21, 93, 39, 0.08);
  transition: all 0.2s;
}
.blog-read:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 93, 39, 0.36);
  box-shadow: 0 12px 26px rgba(21, 93, 39, 0.16);
}

/* ===== CTA BANNER ===== */
.cta-section {
  background: var(--dark-lift);
  padding: 80px 0;
}
.cta-inner {
  background: var(--gradient-r);
  border: 1.5px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.08),
    0 22px 60px rgba(21, 93, 39, 0.24);
}
.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ===== RESPONSIVE — INDEX ===== */
@media (max-width: 1024px) {
  .hero-container,
  .whyus-grid,
  .automation-grid,
  .founder-quote-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-steps::before {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hero-container {
    width: 100%;
    max-width: 100%;
    padding: 72px 16px 56px;
    overflow: hidden;
  }
  .hero-content,
  .hero-visual,
  .hero-card-main {
    width: 100%;
    max-width: 100%;
  }
  .hero-title {
    font-size: 2rem;
    overflow-wrap: break-word;
  }
  .hero-desc {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-stat-num {
    font-size: 1.5rem;
  }
  .hero-card-main {
    padding: 24px 20px;
  }
  .hero-floating-badge {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 24px 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-box {
    padding: 36px 16px;
  }
  .whyus-float {
    position: static;
    margin-top: 20px;
    border-radius: var(--radius);
  }
  .auto-terminal-body {
    font-size: 0.75rem;
    padding: 16px;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .founder-quote-wrap {
    padding: 32px 24px;
  }
  .founder-quote-text {
    font-size: 1.05rem;
  }
  .founder-photo-wrap {
    width: 90px;
    height: 90px;
    font-size: 2.2rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-img {
    height: 160px;
  }
  .cta-inner {
    padding: 36px 20px;
  }
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-btns .btn-white,
  .cta-btns .btn-outline-white {
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 420px) {
  .hero {
    min-height: auto;
  }
  .hero-container,
  .hero-content,
  .hero-actions,
  .hero-stats {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }
  .hero-title {
    width: 100%;
    max-width: 100%;
    font-size: 1.22rem;
    line-height: 1.3;
    letter-spacing: 0;
  }
  .hero-title br {
    display: none;
  }
  .hero-title span {
    display: block;
  }
  .hero-desc {
    width: 100%;
    max-width: 100%;
    font-size: 0.86rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
  }
  .hero-badge {
    max-width: 100%;
    font-size: 0.7rem;
    padding: 6px 12px;
    white-space: normal;
  }
  .hero-container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
  }
  .hero-stat-num {
    font-size: 1.4rem;
  }
}

@media (max-width: 520px) {
  body .hero .hero-container {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 56px 16px 44px !important;
  }
  body .hero .hero-content,
  body .hero .hero-actions,
  body .hero .hero-stats {
    width: 100% !important;
    max-width: 100% !important;
  }
  body .hero .hero-title {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 1.42rem !important;
    line-height: 1.28 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }
  body .hero .hero-title br {
    display: none !important;
  }
  body .hero .hero-title span {
    display: block !important;
  }
  body .hero .hero-desc {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 0.9rem !important;
    overflow-wrap: break-word !important;
  }
  body .hero .hero-visual {
    margin-top: 36px !important;
  }
}
