/* ==========================================================
   KRISHISETU SEEDS  —  Global Stylesheet
   ========================================================== */

:root {
  --green-900: #0a3a1a;
  --green-800: #0f5026;
  --green-700: #146b35;
  --green-600: #1c8347;
  --green-100: #e7f3ec;
  --gold:      #e0a526;
  --gold-dark: #b58416;
  --cream:     #fbf9f3;
  --text:      #2c2c2c;
  --muted:     #6b7280;
  --light:     #f5f7f4;
  --white:     #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a   { text-decoration: none; color: inherit; transition: var(--transition); }
ul  { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.25;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: 90px 0; }
.section-alt { background: var(--light); }
.center { text-align: center; }
.mt-50 { margin-top: 50px; }

.accent { color: var(--gold); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 16px 34px; font-size: 15px; }

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
}
.btn-primary:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-gold {
  background: var(--gold);
  color: var(--green-900);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========== TOP BAR ========== */
.topbar {
  background: var(--green-900);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-left span,
.topbar-right span {
  margin-right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar i { color: var(--gold); }

.social-icons { display: inline-flex; gap: 8px; }
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
}
.social-icons a:hover {
  background: var(--gold);
  color: var(--green-900);
  transform: translateY(-2px);
}

/* ========== HEADER ========== */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 14px 22px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 58px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--green-900);
  letter-spacing: 1px;
}
.logo-text .tagline-hi {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  padding: 10px 16px;
  border-radius: 6px;
  position: relative;
}
.nav a:hover,
.nav a.active {
  color: var(--green-700);
}
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: var(--green-700);
  color: var(--white);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  width: 100%;
}
.hero-content {
  color: var(--white);
  max-width: 760px;
  padding: 60px 22px;
  animation: fadeUp 0.9s ease;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 165, 38, 0.18);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(224, 165, 38, 0.4);
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: 1.1rem;
  max-width: 620px;
  opacity: 0.92;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-cue span {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0);     opacity: 1; }
  100% { transform: translateY(18px);  opacity: 0; }
}

/* ========== FEATURE STRIP ========== */
.feature-strip {
  background: var(--white);
  margin-top: -60px;
  position: relative;
  z-index: 5;
  padding: 0 22px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 26px;
  border-right: 1px solid #eee;
  transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--green-100); }
.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  border-radius: 14px;
  font-size: 22px;
  flex-shrink: 0;
}
.feature-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  margin-bottom: 2px;
}
.feature-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ========== SECTION HEAD ========== */
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 18px;
}
.section-head { max-width: 720px; margin: 0 auto 60px; }
.section-head.center { text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.about-img-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--gold);
  color: var(--green-900);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}
.badge-text { font-size: 13px; font-weight: 600; margin-top: 4px; }

.about-content .lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.check-list { margin-bottom: 30px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-weight: 500;
}
.check-list i { color: var(--green-700); font-size: 18px; }

/* ========== PRODUCTS ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid #eee;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-100);
}
.product-img {
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7ed, #e0ecdb);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-body { padding: 26px; }
.product-body h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.product-body p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-700);
  font-weight: 600;
  font-size: 14px;
}
.product-link:hover { color: var(--gold-dark); gap: 10px; }

/* ========== WHY US ========== */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.why-list { margin-top: 30px; display: flex; flex-direction: column; gap: 22px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  width: 50px;
  line-height: 1;
}
.why-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  margin-bottom: 4px;
}
.why-item p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ========== STATS ========== */
.stats-section {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ========== TESTIMONIALS ========== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  border-top: 4px solid var(--gold);
}
.testimonial-card .quote {
  position: absolute;
  top: 22px;
  right: 26px;
  color: var(--green-100);
  font-size: 40px;
}
.testimonial-card p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 22px;
  font-size: 15px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.testi-author h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  margin-bottom: 2px;
}
.testi-author span { font-size: 13px; color: var(--muted); }

/* ========== CTA ========== */
.cta-section {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224,165,38,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}
.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}
.cta-section p { opacity: 0.9; max-width: 600px; }

/* ========== FOOTER ========== */
.footer { background: var(--green-900); color: rgba(255,255,255,0.75); padding-top: 80px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-col h4 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(224, 165, 38, 0.3);
  display: inline-block;
}
.footer-col ul li {
  padding: 7px 0;
  font-size: 14.5px;
}
.footer-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li i { color: var(--gold); font-size: 13px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo img { height: 56px; }
.footer-logo .brand {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  display: block;
  letter-spacing: 1px;
}
.footer-logo .tagline-hi { font-size: 12px; color: rgba(255,255,255,0.6); }
.footer-about { font-size: 14.5px; margin-bottom: 22px; line-height: 1.7; }

.contact-list li {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0 !important;
}
.contact-list i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}
.contact-list a { color: rgba(255,255,255,0.75); }
.contact-list a:hover { color: var(--gold); }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13.5px;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 998;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   INNER PAGE STYLES (about / products / contact)
   ============================================================ */
.page-banner {
  padding: 110px 0 90px;
  background-image: linear-gradient(rgba(7, 41, 18, 0.75), rgba(7, 41, 18, 0.75)), url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}
.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.9;
}
.breadcrumb a { color: var(--gold); }

/* About page */
.about-page .vision-mission {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.vm-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 4px solid var(--green-700);
  transition: var(--transition);
}
.vm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-top-color: var(--gold); }
.vm-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.vm-card:hover .vm-icon { background: var(--gold); color: var(--white); }
.vm-card h3 { font-size: 22px; margin-bottom: 12px; }
.vm-card p { color: var(--muted); font-size: 14.5px; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
}
.contact-info {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: var(--white);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: rgba(224, 165, 38, 0.15);
  border-radius: 50%;
}
.contact-info h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 12px;
  position: relative;
}
.contact-info > p { opacity: 0.9; margin-bottom: 30px; position: relative; }
.contact-info-list { position: relative; }
.contact-info-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-list li:last-child { border-bottom: none; }
.ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.ci-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  display: block;
  margin-bottom: 2px;
}
.ci-value { font-weight: 500; }

.contact-form {
  background: var(--white);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-size: 26px;
  margin-bottom: 8px;
}
.contact-form > p { color: var(--muted); margin-bottom: 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e2e6df;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  transition: var(--transition);
  background: #fafbf8;
}
.form-control:focus {
  outline: none;
  border-color: var(--green-700);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(28, 131, 71, 0.1);
}
textarea.form-control { resize: vertical; min-height: 130px; }

.map-section { padding: 0 0 90px; }
.map-section iframe {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-page .vision-mission { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .topbar-left span:last-child,
  .topbar-right span { display: none; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav.open { max-height: 500px; }
  .nav ul { flex-direction: column; gap: 0; padding: 10px 0; }
  .nav a { display: block; padding: 14px 22px; border-radius: 0; }

  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .header-inner { padding: 12px 18px; }
  .logo-text .brand { font-size: 18px; }
  .logo img { height: 48px; }
  .logo-text .tagline-hi { font-size: 11px; }

  .hero { min-height: 78vh; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: auto; }

  .feature-strip { margin-top: -30px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid #eee; }
  .feature-item:last-child { border-bottom: none; }

  .products-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .stat-num { font-size: 42px; }
  .form-row { grid-template-columns: 1fr; }

  .cta-inner { text-align: center; flex-direction: column; }
  .footer-bottom-inner { justify-content: center; text-align: center; }

  .about-img-badge {
    width: 110px;
    height: 110px;
    bottom: -18px;
    right: -10px;
  }
  .badge-num { font-size: 30px; }
}
