/* ============================================================
   CUSTOM STYLES — GSP-Inspired Redesign for Vinit Fertilizers
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --green-primary: #2e7d32;
  --green-dark:    #1b5e20;
  --green-accent:  #43a047;
  --green-light:   #e8f5e9;
  --green-mid:     #c8e6c9;
  --text-dark:     #111827;
  --text-body:     #374151;
  --text-muted:    #6b7280;
  --bg-light:      #f8fdf9;
  --white:         #ffffff;
  --shadow-card:   0 4px 24px rgba(46, 125, 50, 0.10);
  --shadow-hover:  0 16px 48px rgba(46, 125, 50, 0.18);
  --radius-card:   16px;
  --radius-btn:    30px;
}

/* --- Global Resets --- */
body, html {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background-color: var(--white) !important;
  border-bottom: 1px solid #e9f5ea;
  padding: 0.55rem 0;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
  z-index: 1050;
}

#mainNav.nav-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 0.35rem 0;
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text-main {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--green-primary);
  letter-spacing: -0.01em;
}

.brand-text-sub {
  font-weight: 400;
  font-size: 0.72rem;
  color: #555;
}

#mainNav .nav-link {
  color: #222 !important;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.55rem 0.9rem !important;
  position: relative;
  transition: color 0.2s;
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--green-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
  border-radius: 2px;
}

#mainNav .nav-link:hover {
  color: var(--green-primary) !important;
}

#mainNav .nav-link:hover::after {
  transform: scaleX(1);
}

.btn-nav-contact {
  background: var(--green-primary);
  color: #fff !important;
  border-radius: var(--radius-btn);
  padding: 0.5rem 1.5rem !important;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-nav-contact:hover {
  background: var(--green-dark) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(46,125,50,0.35);
  transform: translateY(-1px);
}

.btn-nav-contact::after {
  display: none !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Lush green crop field — directly relevant to fertilizers & plant growth */
  background-image: url('https://images.unsplash.com/photo-1761839259494-71caddcdd6b3?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  overflow: hidden;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 40, 12, 0.82) 0%,
    rgba(20, 70, 25, 0.70) 50%,
    rgba(40, 100, 45, 0.50) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  padding: 0.4rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #a5d6a7;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: #69f0ae;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

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

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-title-line2 {
  display: block;
  color: #81c784;
}

.hero-animated-word {
  display: inline-block;
  color: #a5d6a7;
  animation: fadeWord 8s infinite;
  min-width: 160px;
}

@keyframes fadeWord {
  0%    { opacity: 0; transform: translateY(12px); }
  8%    { opacity: 1; transform: translateY(0); }
  42%   { opacity: 1; transform: translateY(0); }
  50%   { opacity: 0; transform: translateY(-12px); }
  100%  { opacity: 0; transform: translateY(12px); }
}

.hero-tagline-main {
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero-tagline-hi {
  font-family: 'Noto Sans Devanagari', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  max-width: 560px;
  margin-bottom: 1rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.2);
}

.hero-title-compact {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  color: rgba(255,255,255,0.78);
  max-width: 530px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--green-accent);
  color: #fff;
  padding: 0.9rem 2.4rem;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.btn-hero-primary:hover {
  background: var(--green-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.btn-hero-secondary {
  background: transparent;
  color: #fff;
  padding: 0.9rem 2.4rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.6);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
}

.hero-wave-wrap {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  padding: 3rem 0;
  position: relative;
  z-index: 3;
}

.stats-strip-iso {
  text-align: center;
  margin-bottom: 1.75rem;
}

.iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.35rem;
  border-radius: 40px;
}

.iso-badge i {
  font-size: 1.1rem;
  color: #a5d6a7;
}

/* Trademark callout (specialised products) */
.trademark-callout {
  background: linear-gradient(135deg, #fff 0%, #f4fbf5 100%);
  border: 1.5px solid var(--green-mid);
  border-radius: var(--radius-card);
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-card);
}

.trademark-callout h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.trademark-callout ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.7;
}

.trademark-callout li + li {
  margin-top: 0.45rem;
}

.stat-item {
  text-align: center;
  padding: 0.75rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-num .stat-plus {
  font-size: 1.8rem;
  color: #a5d6a7;
}

.stat-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 0.85rem;
}

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
}

.green-rule {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-accent));
  border-radius: 4px;
  margin: 0.9rem auto 1.4rem;
}

.green-rule.left {
  margin-left: 0;
  margin-right: auto;
}

/* ============================================================
   GET TO KNOW US — FEATURE CARDS
   ============================================================ */
.features-section {
  background: var(--white);
  padding: 6rem 0;
}

.feat-card {
  background: #fff;
  border: 1.5px solid #e8f5e9;
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--green-primary), var(--green-accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-mid);
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-icon {
  width: 54px;
  height: 54px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--green-primary);
  margin-bottom: 1.25rem;
  transition: background 0.3s, color 0.3s;
}

.feat-card:hover .feat-icon {
  background: var(--green-primary);
  color: #fff;
}

.feat-card h5 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.feat-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--bg-light);
  padding: 6rem 0;
}

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.about-img-wrap img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  width: 100%;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--green-primary);
  color: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(46,125,50,0.35);
}

.about-badge .ab-since {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
  display: block;
  margin-bottom: 0.2rem;
}

.about-badge .ab-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.about-badge.about-badge-since {
  padding: 1.35rem 1.65rem;
  min-width: 140px;
}

.about-badge.about-badge-since .ab-num {
  font-size: clamp(3rem, 7vw, 4.75rem);
  letter-spacing: -0.03em;
}

.about-badge.about-badge-since .ab-lbl {
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

.about-badge .ab-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.5px;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
  background: var(--white);
  padding: 6rem 0;
}

/* New card overrides */
.card.vnit-card {
  border: none;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.card.vnit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card.vnit-card img.card-img-top {
  height: 210px;
  object-fit: cover;
  transition: transform 0.4s;
}

.card.vnit-card:hover img.card-img-top {
  transform: scale(1.05);
}

.card.vnit-card .card-body {
  padding: 1.5rem;
}

.badge-green {
  background: var(--green-light) !important;
  color: var(--green-primary) !important;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.card.vnit-card .card-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
}

.card.vnit-card .card-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.card.vnit-card .card-footer {
  background: none;
  border-top: 1px solid #f0f7f0;
  padding: 1rem 1.5rem 1.5rem;
}

.btn-green {
  background: var(--green-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-btn) !important;
  padding: 0.5rem 1.5rem !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.2s !important;
}

.btn-green:hover {
  background: var(--green-dark) !important;
  transform: translateX(3px) !important;
  color: #fff !important;
}

/* Carousel controls override */
.carousel-control-prev,
.carousel-control-next {
  width: 44px;
  height: 44px;
  background: var(--green-primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.carousel-control-prev { left: -22px; }
.carousel-control-next { right: -22px; }

.carousel-control-prev:hover,
.carousel-control-next:hover { opacity: 1; background: var(--green-dark); }

/* ============================================================
   SPECIALISED PRODUCT SECTION
   ============================================================ */
.special-section {
  background: var(--bg-light);
  padding: 5rem 0;
}

/* Accordion override */
.accordion-button {
  font-weight: 600;
  color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
  background: var(--green-light);
  color: var(--green-primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(46,125,50,0.2);
}

.accordion-item {
  border-radius: 10px !important;
  overflow: hidden;
  margin-bottom: 0.5rem;
  border: 1.5px solid #e8f5e9 !important;
}

/* ============================================================
   STRENGTHS SECTION
   ============================================================ */
.strengths-section {
  background: var(--white);
  padding: 5.5rem 0;
}

.strength-col {
  text-align: center;
  padding: 2rem 1rem;
}

.strength-icon-ring {
  width: 82px;
  height: 82px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  color: var(--green-primary);
  margin: 0 auto 1.25rem;
  transition: all 0.3s;
  position: relative;
}

.strength-icon-ring::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px dashed var(--green-mid);
  border-radius: 50%;
  transition: border-color 0.3s;
}

.strength-col:hover .strength-icon-ring {
  background: var(--green-primary);
  color: #fff;
  box-shadow: 0 10px 30px rgba(46,125,50,0.3);
  transform: translateY(-4px);
}

.strength-col:hover .strength-icon-ring::after {
  border-color: var(--green-accent);
}

.strength-col h6 {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}

/* ============================================================
   CTA / NEWSLETTER SECTION
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  border-radius: 20px;
  padding: 3.5rem;
  margin: 0 0.75rem;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -30px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-strip .fs-3 { font-weight: 800; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-main {
  background: #0c1f0e;
  color: rgba(255,255,255,0.72);
  padding: 5rem 0 0;
}

.footer-logo-area img {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-brand-name {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}

.footer-brand-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 0.85rem;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--green-accent);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0; margin: 0;
}

.footer-links-list li {
  margin-bottom: 0.6rem;
}

.footer-links-list a {
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links-list a:hover {
  color: #81c784;
  padding-left: 4px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-row .fc-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #81c784;
  flex-shrink: 0;
}

.footer-contact-row .fc-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-contact-row .fc-text a {
  color: #81c784;
  text-decoration: none;
}

.footer-contact-row .fc-text a:hover {
  color: #a5d6a7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  margin-top: 3.5rem;
}

.footer-bottom-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #81c784;
}

/* ============================================================
   GLOBAL BOOTSTRAP OVERRIDES
   ============================================================ */

/* Primary color -> green */
.btn-primary {
  background-color: var(--green-primary) !important;
  border-color: var(--green-primary) !important;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
}

.badge.bg-primary {
  background-color: var(--green-light) !important;
  color: var(--green-primary) !important;
}

.bg-primary {
  background-color: var(--green-primary) !important;
}

.feature.bg-primary.bg-gradient {
  background: var(--green-light) !important;
  background-image: none !important;
  color: var(--green-primary) !important;
}

.link-dark { color: var(--text-dark) !important; }

/* Custom divider (keep existing) */
.divider { position: relative; height: 1px; margin: 10px; }
.div-trans::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%; width: 90%; height: 1px;
  background-image: linear-gradient(to right, transparent, #2e7d32, transparent);
}

/* 5-column layout for strengths */
@media (min-width: 992px) {
  .col-lg-2dot4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-section { background-attachment: scroll; }
  #mainNav .navbar-nav { padding: 1rem 0; }
  .btn-nav-contact { margin-top: 0.5rem; display: inline-block; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 1.25rem 0; }
  .stat-item:last-child { border-bottom: none; }
  .cta-strip { padding: 2.5rem 1.5rem; margin: 0; border-radius: 0; }
  .about-badge { bottom: -12px; right: -10px; padding: 0.9rem 1.1rem; }
  .carousel-control-prev, .carousel-control-next { display: none; }
}

@media (max-width: 576px) {
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .features-section, .about-section, .products-section, .special-section,
  .strengths-section { padding: 4rem 0; }
}
