@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --primary: #1B3FAB;
  --primary-dark: #142E82;
  --primary-light: #2D55D4;
  --accent: #F5A623;
  --accent-light: #FFB84D;
  --dark: #0D1B3E;
  --dark-secondary: #1A2B52;
  --text: #2C3E6B;
  --text-muted: #6B7AAA;
  --light-bg: #F4F7FF;
  --white: #FFFFFF;
  --border: #DDE4F5;
  --success: #22C55E;
  --gradient-hero: linear-gradient(135deg, #0D1B3E 0%, #1B3FAB 60%, #2D55D4 100%);
  --gradient-card: linear-gradient(145deg, #F4F7FF, #FFFFFF);
  --shadow-sm: 0 2px 8px rgba(27,63,171,0.08);
  --shadow-md: 0 8px 32px rgba(27,63,171,0.12);
  --shadow-lg: 0 20px 60px rgba(27,63,171,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }

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

h1,h2,h3,h4,h5,h6 {
  font-family: 'Sora', sans-serif;
  color: var(--dark);
  font-weight: 700;
}

/* ===================== NAVBAR ===================== */
.navbar {
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(12px);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand img { height: 40px; }

.navbar-brand .brand-text {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 1000;
  color: #fff;
  letter-spacing: -0.3px;
}
.navbar-brand .brand-text span { color: var(--accent); }

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-weight: 500;
  font-size: 0.93rem;
  padding: 1.3rem 1rem !important;
  transition: color 0.2s;
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
}
.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem; right: 1rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.5rem 1.25rem !important;
  margin-left: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  transition: background 0.2s, transform 0.1s !important;
}
.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }

.dropdown-menu {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
}
.dropdown-item {
  font-size: 0.9rem;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  color: var(--text);
}
.dropdown-item:hover { background: var(--light-bg); color: var(--primary); }

/* ===================== HERO ===================== */
.hero-section {
  background: var(--gradient-hero);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero-section::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-section::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  right: -100px; top: -100px;
  border-radius: 50%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-section h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: #fff;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.hero-section h1 .highlight {
  color: var(--accent);
}

.hero-section p.lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

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

.btn-hero-primary {
  background: var(--accent);
  color: var(--dark);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 0.97rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-hero-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.4); color: var(--dark); }

.btn-hero-outline {
  background: transparent;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.35);
  font-size: 0.97rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat-item { }
.hero-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-card-main {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  padding: 2rem;
  color: #fff;
}

.erp-product-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
  cursor: default;
}
.erp-product-card:last-child { margin-bottom: 0; }
.erp-product-card:hover { background: rgba(255,255,255,0.1); }

.erp-product-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.erp-product-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.97rem; color: #fff; }
.erp-product-desc { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.15rem; }

.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 0.6rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.float-badge-1 { top: -20px; right: 30px; }
.float-badge-2 { bottom: -15px; left: -20px; }

/* ===================== SECTIONS ===================== */
.section-py { padding: 5rem 0; }
.section-py-sm { padding: 3.5rem 0; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

.bg-light-blue { background: var(--light-bg); }
.bg-dark-navy { background: var(--dark); }

/* ===================== PRODUCT CARDS ===================== */
.product-hero-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  border: 1.5px solid var(--border);
  background: var(--gradient-card);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.product-hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.product-hero-card.school::before { background: linear-gradient(90deg, #1B3FAB, #2D55D4); }
.product-hero-card.college::before { background: linear-gradient(90deg, #7C3AED, #A855F7); }
.product-hero-card.coe::before { background: linear-gradient(90deg, #059669, #10B981); }

.product-hero-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.product-hero-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.product-hero-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.tag-item {
  font-size: 0.77rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  background: var(--light-bg);
  color: var(--primary);
  border: 1px solid var(--border);
}

/* ===================== FEATURES ===================== */
.feature-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  transition: all 0.3s;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===================== MODULE GRID ===================== */
.module-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.25s;
  height: 100%;
}
.module-card:hover {
  border-color: var(--primary-light);
  background: var(--light-bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.module-card .module-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.module-card h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.module-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===================== PRICING ===================== */
.pricing-highlight {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pricing-highlight::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  right: -50px; top: -50px;
  border-radius: 50%;
}

.pricing-badge {
  background: var(--accent);
  color: var(--dark);
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.pricing-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.pricing-check {
  width: 24px; height: 24px;
  background: rgba(245,166,35,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ===================== WHY US ===================== */
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
  height: 100%;
  position: relative;
}
.why-card::after {
  content: attr(data-num);
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--light-bg);
  line-height: 1;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--primary-light); }

/* ===================== STEPS ===================== */
.step-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.step-num {
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-content h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.step-content p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ===================== ENQUIRY FORM ===================== */
.enquiry-section {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,63,171,0.1);
  outline: none;
}

/* ===================== CTA ===================== */
.cta-section {
  background: var(--gradient-hero);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  left: -100px; bottom: -100px;
  border-radius: 50%;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #07102A;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer-brand .brand-text {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.footer-brand .brand-text span { color: var(--accent); }

.footer p { font-size: 0.88rem; line-height: 1.7; }

.footer-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.3px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
}
.footer-contact-icon {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 2.5rem 0 1.5rem;
}

.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }

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

/* ===================== PAGE HERO ===================== */
.page-hero {
  background: var(--gradient-hero);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  right: -50px; top: -50px;
  border-radius: 50%;
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -0.5px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.page-hero .breadcrumb { background: none; padding: 0; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; }
.page-hero .breadcrumb-item.active { color: var(--accent); font-size: 0.88rem; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===================== BENEFITS LIST ===================== */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  transition: all 0.2s;
}
.benefit-item:hover { border-color: var(--primary); background: var(--light-bg); }

.benefit-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-item h6 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.2rem; }
.benefit-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ===================== BUTTONS ===================== */
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 0.93rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-primary-custom:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }

.btn-accent-custom {
  background: var(--accent);
  color: var(--dark);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 0.93rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-accent-custom:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.35); color: var(--dark); }

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--primary);
  font-size: 0.93rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline-custom:hover { background: var(--primary); color: #fff; }

.btn-white-custom {
  background: #fff;
  color: var(--primary);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 0.93rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-white-custom:hover { background: var(--light-bg); color: var(--primary); transform: translateY(-2px); }

/* ===================== TESTIMONIALS ===================== */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}
.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.92rem; color: var(--text); font-style: italic; margin-bottom: 1.25rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* ===================== ALERT / TOAST ===================== */
#form-success {
  display: none;
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: #065F46;
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 1rem;
  align-items: center;
  gap: 0.5rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .navbar-collapse { background: var(--dark); padding: 1rem; border-radius: 0 0 var(--radius) var(--radius); }
  .navbar-nav .nav-link { padding: 0.65rem 0.5rem !important; }
  .navbar-nav .nav-link.active::after { display: none; }
  .hero-section { min-height: auto; padding: 4rem 0; }
  .hero-visual { margin-top: 3rem; }
  .float-badge-1, .float-badge-2 { display: none; }
}

@media (max-width: 767px) {
  .section-py { padding: 3.5rem 0; }
  .hero-section h1 { font-size: 2rem; }
  .enquiry-section { padding: 2rem 1.5rem; }
  .pricing-highlight { padding: 2rem; }
  .hero-stats { gap: 1.5rem; }
}
