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

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; color: #1a1a1a; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ===== VARIABLES ===== */
:root {
  --navy: #0c2340;
  --navy-light: #1a3a5c;
  --gold: #f5a623;
  --gold-hover: #e09510;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --white: #ffffff;
  --whatsapp: #25D366;
  --max-w: 1280px;
}

/* ===== UTILITIES ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.gap-12 { gap: 48px; }
.gap-16 { gap: 64px; }
.text-center { text-align: center; }
.hidden { display: none; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-in { animation: fadeInUp 0.6s ease-out forwards; }
.animate-fade { animation: fadeIn 0.6s ease-out forwards; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--navy); color: white; font-size: 13px; padding: 8px 0; }
.top-bar a { color: white; transition: color 0.3s; }
.top-bar a:hover { color: var(--gold); }
.top-bar .icon { width: 14px; height: 14px; margin-right: 6px; vertical-align: middle; }

/* ===== HEADER ===== */
.header { position: sticky; top: 0; z-index: 50; background: var(--white); transition: box-shadow 0.3s; }
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 40px; height: 40px; background: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }
.logo:hover .logo-icon { transform: scale(1.05); }
.logo-text h1 { font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.logo-text p { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 8px 16px; font-size: 14px; font-weight: 500; color: var(--gray-700); border-radius: 8px; transition: all 0.3s; }
.nav a:hover, .nav a.active { color: var(--gold); background: rgba(245,166,35,0.1); }
.nav .dropdown { position: relative; }
.nav .dropdown-menu { position: absolute; top: 100%; left: 0; margin-top: 4px; width: 260px; background: white; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.12); border: 1px solid var(--gray-100); padding: 8px 0; display: none; z-index: 100; }
.nav .dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: flex; align-items: center; gap: 12px; padding: 10px 16px; font-size: 14px; border-radius: 0; }
.dropdown-menu a:hover { background: rgba(245,166,35,0.05); }
.dropdown-menu img { width: 32px; height: 32px; border-radius: 8px; object-fit: cover; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all 0.3s; }
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--navy-light); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-hover); }
.btn-outline { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.3); color: white; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* Mobile menu toggle */
.menu-toggle { display: none; background: none; border: none; padding: 8px; cursor: pointer; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 90vh; background: var(--navy); overflow: hidden; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, #0c2340 0%, rgba(12,35,64,0.85) 50%, rgba(12,35,64,0.5) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-badge { display: inline-block; background: rgba(245,166,35,0.2); color: var(--gold); font-size: 12px; font-weight: 600; padding: 6px 16px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
.hero h2 { font-size: 56px; font-weight: 800; color: white; line-height: 1.1; margin-bottom: 24px; }
.hero p { font-size: 18px; color: #b0b8c4; margin-bottom: 32px; max-width: 500px; line-height: 1.6; }
.hero-image { display: flex; justify-content: center; }
.hero-image img { max-width: 500px; border-radius: 16px; box-shadow: 0 25px 60px rgba(0,0,0,0.3); }
.hero-image .glow { position: absolute; inset: -32px; background: rgba(245,166,35,0.1); border-radius: 24px; filter: blur(40px); }

/* Slide dots */
.hero-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 8px; }
.hero-dots button { width: 8px; height: 8px; border-radius: 50px; border: none; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; padding: 0; }
.hero-dots button.active { width: 32px; background: var(--gold); }

/* ===== FEATURES BAR ===== */
.features-bar { position: relative; z-index: 10; margin-top: -64px; }
.feature-card { background: white; border-radius: 12px; padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid var(--gray-100); transition: all 0.3s; }
.feature-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-4px); }
.feature-icon { width: 48px; height: 48px; background: rgba(245,166,35,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--gold); }
.feature-card h3 { font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray-500); line-height: 1.5; }
.feature-tag { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 600; color: var(--gold); background: rgba(245,166,35,0.1); padding: 4px 12px; border-radius: 50px; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-gray { background: var(--gray-50); }
.section-navy { background: var(--navy); color: white; }
.section-badge { display: inline-block; font-size: 12px; font-weight: 600; padding: 6px 16px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.badge-navy { background: rgba(12,35,64,0.05); color: var(--navy); }
.badge-gold { background: rgba(245,166,35,0.2); color: var(--gold); }
.section-title { font-size: 36px; font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.section-navy .section-title { color: white; }
.section-desc { font-size: 16px; color: var(--gray-500); max-width: 600px; }

/* ===== PRODUCT CARDS ===== */
.product-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-100); box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: all 0.4s; display: block; }
.product-card:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.product-card .card-image { position: relative; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--gray-50), var(--gray-100)); overflow: hidden; }
.product-card .card-image img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform 0.5s; }
.product-card:hover .card-image img { transform: scale(1.05); }
.product-card .badge-since { position: absolute; top: 16px; left: 16px; background: var(--navy); color: white; font-size: 12px; padding: 4px 12px; border-radius: 50px; font-weight: 500; }
.product-card .badge-units { position: absolute; top: 16px; left: 100px; background: var(--gold); color: var(--navy); font-size: 12px; padding: 4px 12px; border-radius: 50px; font-weight: 500; }
.product-card .card-body { padding: 24px; }
.product-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; transition: color 0.3s; }
.product-card:hover h3 { color: var(--gold); }
.product-card .card-desc { font-size: 14px; color: var(--gray-500); line-height: 1.5; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card .card-footer { display: flex; justify-content: space-between; align-items: center; }
.product-card .units-text { font-size: 12px; color: var(--gray-400); }
.product-card .know-more { font-size: 14px; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 4px; transition: gap 0.3s; }
.product-card:hover .know-more { gap: 8px; }

/* ===== STATS ===== */
.stats-section { position: relative; }
.stats-section .bg-img { position: absolute; inset: 0; opacity: 0.1; }
.stats-section .bg-img img { width: 100%; height: 100%; object-fit: cover; }
.stat-item { text-align: center; }
.stat-value { font-size: 48px; font-weight: 800; color: var(--gold); margin-bottom: 8px; }
.stat-label { font-size: 13px; color: #b0b8c4; text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== CHECK LIST ===== */
.check-item { display: flex; align-items: flex-start; gap: 10px; }
.check-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.check-item span { font-size: 14px; color: var(--gray-600); }
.app-item { display: flex; align-items: center; gap: 8px; background: var(--gray-50); border-radius: 8px; padding: 12px 16px; }
.app-item .check-icon { color: var(--navy); }
.app-item span { font-size: 14px; color: var(--gray-700); }

/* ===== ABOUT SPLIT ===== */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); width: 100%; }
.about-image .deco-1 { position: absolute; top: -16px; left: -16px; width: 96px; height: 96px; background: rgba(245,166,35,0.2); border-radius: 16px; z-index: -1; }
.about-image .deco-2 { position: absolute; bottom: -16px; right: -16px; width: 128px; height: 128px; background: rgba(12,35,64,0.1); border-radius: 16px; z-index: -1; }

/* ===== TEAM ===== */
.team-card { text-align: center; }
.team-card .avatar { width: 160px; height: 160px; border-radius: 16px; overflow: hidden; margin: 0 auto 16px; }
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .avatar img { transform: scale(1.1); }
.team-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); }
.team-card p { font-size: 14px; color: var(--gold); }

/* ===== FAQ ===== */
.faq-item { background: white; border-radius: 12px; border: 1px solid var(--gray-100); box-shadow: 0 2px 8px rgba(0,0,0,0.04); overflow: hidden; margin-bottom: 16px; transition: box-shadow 0.3s; }
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 24px; text-align: left; background: none; border: none; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--navy); }
.faq-question svg { color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 24px; border-top: 1px solid var(--gray-100); padding-top: 16px; }
.faq-answer p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 48px; }
.form-card { background: white; border-radius: 16px; border: 1px solid var(--gray-100); padding: 32px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--gray-200); border-radius: 8px; font-size: 14px; font-family: inherit; transition: all 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,166,35,0.15); }
.form-group textarea { resize: none; height: 120px; }
.quick-contact-card { background: white; border-radius: 16px; border: 1px solid var(--gray-100); padding: 32px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); margin-bottom: 24px; }
.quick-link { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 8px; margin-bottom: 8px; transition: background 0.3s; }
.quick-link:hover { background: var(--gray-50); }
.quick-link .ql-icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.quick-link h4 { font-size: 14px; font-weight: 600; color: var(--navy); }
.quick-link p { font-size: 12px; color: var(--gray-500); }

/* ===== GALLERY ===== */
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-filters button { padding: 8px 20px; border-radius: 50px; border: none; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.3s; background: var(--gray-100); color: var(--gray-600); }
.gallery-filters button.active { background: var(--navy); color: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.gallery-item { border-radius: 12px; overflow: hidden; background: white; border: 1px solid var(--gray-100); box-shadow: 0 2px 8px rgba(0,0,0,0.04); cursor: pointer; transition: all 0.3s; }
.gallery-item:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.gallery-item .gi-image { aspect-ratio: 4/3; overflow: hidden; background: var(--gray-50); }
.gallery-item .gi-image img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform 0.5s; }
.gallery-item:hover .gi-image img { transform: scale(1.05); }
.gallery-item .gi-info { padding: 16px; }
.gallery-item .gi-info h4 { font-size: 14px; font-weight: 600; color: var(--navy); }
.gallery-item .gi-info p { font-size: 12px; color: var(--gold); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 80vh; object-fit: contain; border-radius: 12px; }
.lightbox-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: white; cursor: pointer; font-size: 32px; }
.lightbox-caption { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); text-align: center; color: white; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--gray-50); padding: 16px 0; border-bottom: 1px solid var(--gray-100); }
.breadcrumb nav { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-500); }
.breadcrumb a { transition: color 0.3s; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .current { color: var(--navy); font-weight: 500; }

/* ===== PRODUCT DETAIL ===== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.pd-image { background: linear-gradient(135deg, var(--gray-50), var(--gray-100)); border-radius: 16px; padding: 32px; position: sticky; top: 96px; }
.pd-image img { width: 100%; border-radius: 12px; }
.pd-badges { display: flex; gap: 8px; margin-bottom: 16px; }
.pd-badge { font-size: 12px; padding: 4px 12px; border-radius: 50px; font-weight: 500; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.feature-item { display: flex; align-items: flex-start; gap: 8px; background: var(--gray-50); border-radius: 8px; padding: 12px 16px; }
.feature-item span { font-size: 14px; color: var(--gray-700); }
.specs-table { background: var(--gray-50); border-radius: 12px; overflow: hidden; margin-bottom: 32px; }
.specs-row { display: flex; justify-content: space-between; padding: 12px 24px; }
.specs-row:nth-child(even) { background: white; }
.specs-row .spec-key { font-size: 14px; font-weight: 500; color: var(--gray-700); }
.specs-row .spec-val { font-size: 14px; color: var(--gray-500); }

/* Related products */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ===== FOOTER ===== */
.footer-cta { background: var(--gold); padding: 40px 0; }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-cta h3 { font-size: 24px; font-weight: 700; color: var(--navy); }
.footer-cta p { color: rgba(12,35,64,0.7); margin-top: 4px; }

.footer { background: var(--navy); color: white; padding: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px; }
.footer h4 { font-size: 18px; font-weight: 600; margin-bottom: 24px; }
.footer-desc { font-size: 14px; color: #8896a6; line-height: 1.6; margin-bottom: 24px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: #8896a6; display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 14px; color: #8896a6; }
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; transition: all 0.3s; }
.social-links a:hover { background: var(--gold); color: var(--navy); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; margin-top: 48px; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 14px; color: #6b7a8a; }
.footer-bottom a { font-size: 14px; color: #6b7a8a; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== FLOATING BUTTONS ===== */
.floating-actions { position: fixed; right: 20px; bottom: 20px; z-index: 40; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; border: none; }
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.float-btn-navy { background: var(--navy); }
.float-btn-whatsapp { background: var(--whatsapp); }
.float-btn-gold { background: var(--gold); }

/* Page hero for inner pages */
.page-hero { padding: 96px 0; background: var(--navy); }
.page-hero .section-badge { margin-bottom: 16px; }
.page-hero h1 { font-size: 48px; font-weight: 800; color: white; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: #b0b8c4; max-width: 600px; line-height: 1.6; }

/* Contact cards strip */
.contact-strip { margin-top: -32px; position: relative; z-index: 10; }
.contact-card-sm { background: white; border-radius: 12px; padding: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid var(--gray-100); transition: all 0.3s; }
.contact-card-sm:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.contact-card-sm svg { color: var(--gold); margin-bottom: 12px; }
.contact-card-sm .cc-label { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-card-sm .cc-value { font-size: 14px; font-weight: 600; color: var(--navy); }

/* Success state */
.success-state { text-align: center; padding: 64px 0; }
.success-state svg { color: #22c55e; margin-bottom: 16px; }
.success-state h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

/* Expertise cards */
.expertise-card { background: white; border-radius: 12px; padding: 24px; border: 1px solid var(--gray-100); box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: all 0.3s; }
.expertise-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-4px); }
.expertise-icon { width: 48px; height: 48px; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--gold); }

/* Quality cards */
.quality-card { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 20px; text-align: center; }
.quality-card svg { color: var(--gold); margin-bottom: 12px; }
.quality-card p { font-size: 14px; color: white; font-weight: 500; }

/* Story cards */
.story-card { background: white; border-radius: 12px; padding: 32px; border: 1px solid var(--gray-100); box-shadow: 0 2px 8px rgba(0,0,0,0.04); margin-bottom: 24px; }
.story-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.story-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h2 { font-size: 40px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .pd-image { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 28px; }
  .page-hero h1 { font-size: 36px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .top-bar { display: none; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h2 { font-size: 32px; }
  .hero { min-height: 70vh; }
  .stat-value { font-size: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 64px 0; }
}

/* Mobile menu */
.mobile-menu { display: none; background: white; border-top: 1px solid var(--gray-100); box-shadow: 0 10px 30px rgba(0,0,0,0.1); padding: 16px 24px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 16px; font-weight: 500; color: var(--gray-700); border-bottom: 1px solid var(--gray-50); }
.mobile-menu a.active { color: var(--gold); }
