/* ===== Honorberry Smart Home - B2B Website Styles ===== */
:root {
  --navy: #0A2540;
  --navy-light: #13315C;
  --teal: #00D4FF;
  --teal-dark: #00A8CC;
  --accent: #00E5A0;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;
  --gray-700: #334155;
  --gray-900: #0F172A;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 15px; cursor: pointer; border: none;
  transition: var(--transition); text-align: center; justify-content: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--navy); box-shadow: 0 4px 15px rgba(0, 212, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ===== Header ===== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200); transition: var(--transition);
}
header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; color: var(--navy); letter-spacing: -0.5px; }
.logo img { width: 38px; height: 38px; border-radius: 8px; }
.logo span { color: var(--teal-dark); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-weight: 500; font-size: 15px; color: var(--gray-700); transition: var(--transition); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--teal-dark); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--teal); border-radius: 2px; }
.nav-cta { padding: 10px 24px; font-size: 14px; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 72px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../images/hero-bg.jpg') center/cover no-repeat; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,37,64,0.92) 0%, rgba(10,37,64,0.7) 50%, rgba(10,37,64,0.5) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 680px; color: var(--white); padding: 80px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px;
  background: rgba(0,212,255,0.15); border: 1px solid rgba(0,212,255,0.3);
  border-radius: 50px; font-size: 13px; font-weight: 600; color: var(--teal);
  margin-bottom: 28px; letter-spacing: 0.5px; text-transform: uppercase;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px; }
.hero h1 .highlight { background: linear-gradient(135deg, var(--teal), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 560px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat h3 { font-size: 32px; font-weight: 800; color: var(--teal); }
.hero-stat p { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; }

/* ===== Sections ===== */
section { padding: 100px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-tag { display: inline-block; font-size: 13px; font-weight: 700; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.5px; }
.section-header p { font-size: 17px; color: var(--gray-500); line-height: 1.7; }

/* ===== Products ===== */
.products-section { background: var(--gray-50); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--gray-100); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-image { height: 240px; overflow: hidden; background: var(--gray-100); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-body { padding: 28px; }
.product-category { font-size: 12px; font-weight: 700; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.product-body h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.product-body p { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; line-height: 1.6; }
.product-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.product-features span { padding: 5px 12px; background: var(--gray-100); border-radius: 50px; font-size: 12px; font-weight: 500; color: var(--gray-700); }
.product-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; color: var(--teal-dark); transition: var(--transition); }
.product-link:hover { gap: 10px; }

/* ===== Features ===== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature-card { text-align: center; padding: 36px 24px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--gray-100); transition: var(--transition); }
.feature-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.feature-icon { width: 64px; height: 64px; margin: 0 auto 20px; background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,229,160,0.1)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ===== About ===== */
.about-section { background: var(--gray-50); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-image img { width: 100%; height: 480px; object-fit: cover; }
.about-image-badge { position: absolute; bottom: 24px; left: 24px; background: var(--white); padding: 16px 24px; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-image-badge h4 { font-size: 28px; font-weight: 800; color: var(--teal-dark); }
.about-image-badge p { font-size: 13px; color: var(--gray-500); margin: 0; }
.about-content h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.about-content > p { font-size: 16px; color: var(--gray-500); margin-bottom: 28px; line-height: 1.8; }
.about-list { margin-bottom: 32px; }
.about-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; font-size: 15px; color: var(--gray-700); }
.about-list li::before { content: '\2713'; flex-shrink: 0; width: 24px; height: 24px; background: linear-gradient(135deg, var(--teal), var(--accent)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }

/* ===== Markets ===== */
.markets-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.market-card { padding: 32px 24px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); text-align: center; transition: var(--transition); }
.market-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.market-flag { font-size: 36px; margin-bottom: 12px; }
.market-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.market-card .market-growth { font-size: 14px; color: var(--teal); font-weight: 600; margin-bottom: 8px; }
.market-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,212,255,0.15), transparent 70%); border-radius: 50%; }
.cta-content { position: relative; text-align: center; max-width: 700px; margin: 0 auto; color: var(--white); }
.cta-content h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.cta-content p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 36px; }

/* ===== Contact ===== */
.contact-section { padding: 120px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info h2 { font-size: 36px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.contact-info > p { font-size: 16px; color: var(--gray-500); margin-bottom: 40px; line-height: 1.7; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-item-icon { flex-shrink: 0; width: 48px; height: 48px; background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,229,160,0.1)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-item p, .contact-item a { font-size: 15px; color: var(--gray-700); }
.contact-item a:hover { color: var(--teal-dark); }
.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100); }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: 10px;
  font-size: 14px; font-family: inherit; color: var(--gray-900); transition: var(--transition); background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,212,255,0.15); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; font-size: 16px; }

/* ===== Page Header ===== */
.page-header { padding: 140px 0 80px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; bottom: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,212,255,0.12), transparent 70%); border-radius: 50%; }
.page-header h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; margin-bottom: 16px; position: relative; }
.page-header p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; position: relative; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 20px; position: relative; }
.breadcrumb a { color: var(--teal); }

/* ===== Product Detail ===== */
.product-detail-section { padding: 80px 0; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 80px; }
.product-detail-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.product-detail-image img { width: 100%; height: 480px; object-fit: cover; }
.product-detail-info h2 { font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.product-detail-info .product-sku { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.product-detail-info .product-desc { font-size: 15px; color: var(--gray-700); line-height: 1.8; margin-bottom: 28px; }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.spec-table tr { border-bottom: 1px solid var(--gray-200); }
.spec-table td { padding: 12px 0; font-size: 14px; }
.spec-table td:first-child { font-weight: 600; color: var(--navy); width: 40%; }
.spec-table td:last-child { color: var(--gray-700); }

/* ===== Footer ===== */
footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 50px; }
.footer-brand .logo { color: var(--white); margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); }
.footer-social a:hover { background: var(--teal); color: var(--navy); }
.footer-col h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--teal); padding-left: 4px; }
.footer-contact p { font-size: 14px; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 24px; box-shadow: var(--shadow-md); gap: 20px; }
  .product-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat h3 { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* ===== WhatsApp Buttons ===== */
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #25D366;
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}
.wa-link:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37,211,102,0.45);
}
.wa-link::before {
  content: '✆';
  font-size: 16px;
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: waPulse 2s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.wa-float-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.wa-float:hover .wa-float-tooltip {
  opacity: 1;
}
@keyframes waPulse {
  0% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.65); }
  100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
}
@media (max-width: 480px) {
  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 28px; height: 28px; }
  .wa-float-tooltip { display: none; }
}

/* ===== Icon-only Contact Buttons ===== */
.contact-item-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-light);
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  cursor: pointer;
}
.contact-item-icon-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,212,255,0.25);
}
.footer-contact-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-contact-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-contact-icons a:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

/* ===== Enhanced Mobile Responsive ===== */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  h1 { font-size: 32px !important; line-height: 1.25; }
  h2 { font-size: 26px !important; line-height: 1.3; }
  h3 { font-size: 20px !important; }
  p { font-size: 15px; line-height: 1.7; }
  .hero { padding: 80px 0 60px; min-height: auto; }
  .hero h1 { font-size: 32px !important; }
  .hero p { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat h3 { font-size: 24px; }
  .hero-stat p { font-size: 13px; }
  .nav-logo { font-size: 18px; }
  .nav-logo img { height: 32px; }
  .nav-cta { padding: 8px 16px; font-size: 13px; }
  section { padding: 50px 0; }
  .section-title { font-size: 26px; margin-bottom: 12px; }
  .section-subtitle { font-size: 14px; margin-bottom: 32px; }
  .section-eyebrow { font-size: 12px; letter-spacing: 1.5px; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .card { padding: 24px 20px; }
  .product-card { padding: 24px 20px; }
  .product-card h3 { font-size: 18px; }
  .feature-card { padding: 24px 20px; }
  .feature-card h3 { font-size: 17px; }
  .market-card { padding: 20px 16px; }
  .contact-item { gap: 14px; padding: 16px 0; }
  .contact-item-icon, .contact-item-icon-link { width: 42px; height: 42px; font-size: 18px; border-radius: 10px; }
  .contact-item h4 { font-size: 15px; }
  .contact-item p { font-size: 13px; }
  .spec-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .spec-table th, .spec-table td { padding: 10px 14px; font-size: 13px; }
  .product-detail-grid { gap: 28px; }
  .product-detail-info h2 { font-size: 24px !important; }
  .about-grid { gap: 32px; }
  .about-image { border-radius: 16px; }
  .stat-badge { padding: 16px 20px; }
  .stat-badge h3 { font-size: 22px; }
  .cert-grid { grid-template-columns: 1fr; gap: 16px; }
  .cert-card { padding: 20px; }
  .footer-grid { gap: 28px; }
  .footer-col h4 { font-size: 15px; }
  .footer-col p, .footer-col li { font-size: 13px; }
  .footer-contact-icons a { width: 38px; height: 38px; font-size: 17px; }
  .footer-bottom { font-size: 12px; gap: 8px; }
  .cta-section { padding: 50px 20px; }
  .cta-section h2 { font-size: 24px !important; }
  .cta-section p { font-size: 14px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 28px !important; }
  h2 { font-size: 22px !important; }
  h3 { font-size: 18px !important; }
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: 28px !important; }
  .hero p { font-size: 14px; }
  .hero-stats { gap: 14px; }
  .hero-stat h3 { font-size: 20px; }
  .hero-stat p { font-size: 12px; }
  section { padding: 40px 0; }
  .section-title { font-size: 22px; }
  .section-subtitle { font-size: 13px; margin-bottom: 24px; }
  .btn { padding: 11px 18px; font-size: 13px; }
  .card { padding: 20px 16px; }
  .product-card { padding: 20px 16px; }
  .feature-card { padding: 20px 16px; }
  .nav-cta { padding: 7px 14px; font-size: 12px; }
  .nav-logo { font-size: 16px; }
  .contact-item { gap: 12px; padding: 14px 0; }
  .contact-item-icon, .contact-item-icon-link { width: 38px; height: 38px; font-size: 16px; }
  .footer-contact-icons { gap: 10px; }
  .footer-contact-icons a { width: 36px; height: 36px; font-size: 15px; }
  .cta-section { padding: 40px 16px; }
  .cta-section h2 { font-size: 22px !important; }
  .form-row { gap: 14px; }
  .contact-form { padding: 24px 16px; }
  .contact-form h3 { font-size: 20px !important; }
  input, select, textarea { font-size: 15px; }
}

/* Mobile image height fixes */
@media (max-width: 768px) {
  .about-image img { height: auto !important; min-height: 260px; }
  .product-detail-image img { height: auto !important; min-height: 220px; }
  .hero { background-size: cover; background-position: center; }
}
