/* =============================================
   EVERLAST COMPOSITES LLP — MODERN STYLESHEET
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --primary:       #1B3A6B;
  --primary-dark:  #0F2240;
  --secondary:     #2E86C1;
  --accent:        #E8962E;
  --accent-dark:   #C97A1A;
  --text:          #2C3E50;
  --text-light:    #5D7083;
  --bg-light:      #F4F7FB;
  --bg-mid:        #EDF1F7;
  --white:         #FFFFFF;
  --border:        #DDE3ED;
  --shadow-sm:     0 2px 8px rgba(27,58,107,0.08);
  --shadow-md:     0 4px 20px rgba(27,58,107,0.14);
  --shadow-lg:     0 8px 40px rgba(27,58,107,0.18);
  --radius:        8px;
  --radius-lg:     14px;
  --transition:    0.28s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
}
.site-header.scrolled .nav-link,
.site-header.scrolled .logo-text { color: var(--white); }
.site-header.scrolled .dropdown { background: var(--primary-dark); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-wrap img { height: 48px; width: auto; object-fit: contain; }
.logo-text { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px; color: var(--primary); line-height: 1.3; }
.logo-iso { font-size: 10px; color: var(--accent); font-weight: 600; letter-spacing: 0.5px; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  font-size: 14px; font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}
.nav-link:hover, .nav-link.active { color: var(--secondary); background: var(--bg-light); }
.nav-link .chevron { font-size: 10px; transition: transform var(--transition); }
.nav-item:hover .nav-link .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}
.dropdown.mega { min-width: 480px; display: grid; grid-template-columns: 1fr 1fr; padding: 16px; gap: 4px; }
.nav-item:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 13.5px;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  border-radius: var(--radius);
}
.dropdown a:hover { background: var(--bg-light); color: var(--secondary); }
.dropdown-group { padding: 0; }
.dropdown-group-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 6px 12px 2px;
}

/* CTA Button in Nav */
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 6px;
  padding: 9px 20px !important;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); color: var(--white) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--primary); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--primary-dark);
  overflow-y: auto;
  padding: 24px;
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav-link {
  display: block;
  color: var(--white);
  font-size: 16px; font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: 'Poppins', sans-serif;
}
.mobile-nav-sub { padding-left: 16px; }
.mobile-nav-sub a { display: block; color: rgba(255,255,255,0.75); padding: 10px 0; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #1e5799 100%);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero::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.03'%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");
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,150,46,0.15); border: 1px solid rgba(232,150,46,0.4);
  color: var(--accent); border-radius: 20px;
  padding: 6px 16px; font-size: 13px; font-weight: 600;
  margin-bottom: 20px; font-family: 'Poppins', sans-serif;
}
.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; color: var(--white); line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 17px; color: rgba(255,255,255,0.8);
  margin-bottom: 36px; max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all var(--transition); border: none;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { background: #1a6fa3; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.hero-visual {
  display: flex; flex-direction: column; gap: 16px;
}
.hero-stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}
.hero-stat-card:hover { background: rgba(255,255,255,0.12); }
.hero-stat-card .stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 30px; font-weight: 800; color: var(--accent);
  line-height: 1;
}
.hero-stat-card .stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.hero-cert-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.cert-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  border-radius: 6px; padding: 8px 14px;
  font-size: 12px; font-weight: 600; font-family: 'Poppins', sans-serif;
  display: flex; align-items: center; gap: 6px;
}
.cert-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* =============================================
   SECTIONS COMMON
   ============================================= */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  color: var(--accent); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  font-family: 'Poppins', sans-serif; margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800; color: var(--primary);
  margin-bottom: 16px;
}
.section-title span { color: var(--secondary); }
.section-subtitle { font-size: 16px; color: var(--text-light); max-width: 600px; }
.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* Divider */
.divider { width: 60px; height: 4px; background: var(--accent); border-radius: 2px; margin: 16px 0 20px; }
.center .divider { margin: 16px auto 20px; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; height: 380px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-award-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent);
  color: var(--white); padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-award-badge .award-year { font-size: 28px; font-weight: 800; line-height: 1; }
.about-award-badge .award-text { font-size: 11px; max-width: 80px; line-height: 1.3; margin-top: 4px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.about-point {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
}
.about-point .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--secondary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0; margin-top: 2px;
}

/* =============================================
   PRODUCTS GRID
   ============================================= */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}
.product-card-img {
  height: 200px; overflow: hidden;
  background: var(--bg-mid);
  position: relative;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-img .product-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 26px; position: absolute; bottom: 16px; right: 16px;
  box-shadow: var(--shadow-md);
}
.product-card-body { padding: 20px 22px 24px; }
.product-card-body h3 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
.product-card-body p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.product-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.product-tag {
  background: var(--bg-light); color: var(--secondary);
  font-size: 11.5px; font-weight: 600; padding: 4px 10px;
  border-radius: 20px; font-family: 'Poppins', sans-serif;
}
.card-link {
  color: var(--secondary); font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Poppins', sans-serif;
  transition: gap var(--transition), color var(--transition);
}
.card-link:hover { gap: 10px; color: var(--primary); }

/* =============================================
   FEATURES / WHY US
   ============================================= */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 64px; height: 64px;
  background: var(--bg-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 16px;
  transition: background var(--transition);
}
.feature-card:hover .feature-icon { background: rgba(255,255,255,0.15); }
.feature-card h4 {
  font-size: 16px; margin-bottom: 8px;
  transition: color var(--transition);
}
.feature-card:hover h4 { color: var(--white); }
.feature-card p { font-size: 13.5px; color: var(--text-light); transition: color var(--transition); }
.feature-card:hover p { color: rgba(255,255,255,0.75); }

/* =============================================
   AWARDS SECTION
   ============================================= */
.awards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.award-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 5px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.award-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.award-year-tag {
  display: inline-block;
  background: var(--accent); color: var(--white);
  font-size: 12px; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
}
.award-card h3 { font-size: 19px; margin-bottom: 10px; }
.award-card p { font-size: 14px; color: var(--text-light); }
.award-issuer {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--secondary); font-weight: 600;
}

/* =============================================
   CONTACT CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0;
}
.cta-inner {
  max-width: 800px; margin: 0 auto; padding: 0 24px; text-align: center;
}
.cta-inner h2 { font-size: clamp(26px, 3vw, 40px); color: var(--white); margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px 48px;
}
.footer-brand img { height: 42px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.footer-col a {
  display: block; font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 9px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,0.65);
}
.footer-contact-item .ico { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 8px;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 120px 0 60px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 16px; font-size: 13px; color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; }
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); font-size: 22px; margin-bottom: 8px; }
.contact-info-card p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 14px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-detail-text strong { display: block; font-size: 13px; color: var(--accent); margin-bottom: 3px; font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-detail-text span { font-size: 14.5px; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 22px; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 7px; font-family: 'Poppins', sans-serif; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-family: 'Open Sans', sans-serif;
  color: var(--text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(46,134,193,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.map-wrap { margin-top: 48px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { display: block; width: 100%; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-dot {
  position: absolute; left: -25px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-item h4 { font-size: 16px; margin-bottom: 4px; }
.timeline-item p { font-size: 14px; color: var(--text-light); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-box {
  text-align: center; padding: 32px 20px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.stat-box:hover { box-shadow: var(--shadow-md); border-color: var(--secondary); transform: translateY(-3px); }
.stat-box .num { font-size: 42px; font-weight: 800; color: var(--secondary); line-height: 1; }
.stat-box .label { font-size: 14px; color: var(--text-light); margin-top: 8px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .hero-visual { display: none; }
  .hero { min-height: auto; }
  .hero p { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
