
  :root {
    --black: #1a1a1a;
    --white: #ffffff;
    --accent: #003366;
    --accent-light: #e6eff9;
    --gray-100: #f5f5f5;
    --gray-200: #e0e0e0;
    --gray-400: #757575;
    --gray-600: #424242;
    --gray-800: #212121;
    --border-color: #cccccc;
    --success: #2e7d32;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-hover: 0 6px 20px rgba(0,51,102,0.2);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: auto; }
  body {
    font-family: 'Open Sans', sans-serif;
    background: var(--white);
    color: var(--black);
    font-size: 15px;
    line-height: 1.6;
  }
  h1,h2,h3,h4 { 
    font-family: 'Merriweather', serif; 
    line-height: 1.3; 
    font-weight: 700;
  }

  /* TRADITIONAL NAV */
  nav {
    position: static;
    background: var(--white);
    border-bottom: 2px solid var(--border-color);
    padding: 1rem 2rem;
    box-shadow: var(--shadow-sm);
  }
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .logo { 
    font-family: 'Merriweather', serif; 
    font-size: 1.4rem; 
    font-weight: 700; 
    color: var(--accent);
  }
  .logo span { color: var(--black); }
  .nav-links { 
    display: flex; 
    gap: 1.5rem; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
  }
  .nav-links a { 
    text-decoration: none; 
    font-size: 0.9rem; 
    font-weight: 600; 
    color: var(--gray-600); 
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
  }
  .nav-links a:hover { 
    color: var(--accent); 
    border-bottom-color: var(--accent);
  }
  .nav-cta { 
    background: var(--accent); 
    color: var(--white); 
    padding: 0.6rem 1.2rem; 
    border: 2px solid var(--accent);
    font-size: 0.9rem; 
    font-weight: 600; 
    text-decoration: none; 
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
  }
  .nav-cta:hover { 
    background: var(--white); 
    color: var(--accent);
    box-shadow: var(--shadow-md);
  }

  /* HERO - Traditional Layout */
  .hero {
    padding: 3rem 2rem;
    background: var(--gray-100);
    border-bottom: 1px solid var(--border-color);
  }
  .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  .hero-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--accent);
    margin-bottom: 1rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
  }
  .hero h1 { 
    font-size: 2.2rem; 
    margin-bottom: 1rem; 
    color: var(--black);
  }
  .hero h1 span { color: var(--accent); }
  .hero p { 
    font-size: 1rem; 
    color: var(--gray-600); 
    margin-bottom: 1.5rem; 
  }
  .hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
  
  .btn-primary {
    background: var(--accent); 
    color: var(--white);
    padding: 0.75rem 1.5rem; 
    border: 2px solid var(--accent);
    font-size: 0.95rem; 
    font-weight: 600; 
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
  }
  .btn-primary:hover { 
    background: var(--white); 
    color: var(--accent);
    box-shadow: var(--shadow-md);
  }
  .btn-secondary {
    border: 2px solid var(--gray-400); 
    color: var(--black);
    padding: 0.75rem 1.5rem; 
    border-radius: 4px;
    font-size: 0.95rem; 
    font-weight: 600; 
    text-decoration: none;
    background: transparent;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
  }
  .btn-secondary:hover { 
    border-color: var(--accent); 
    color: var(--accent);
    box-shadow: var(--shadow-md);
  }
  .hero-stats { 
    display: flex; 
    gap: 2rem; 
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
  }
  .hero-stat .num { 
    font-family: 'Merriweather', serif; 
    font-size: 1.3rem; 
    font-weight: 700; 
    color: var(--accent);
  }
  .hero-stat .lbl { 
    font-size: 0.8rem; 
    color: var(--gray-600); 
  }
  
 /* HERO IMAGE STYLING */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.3s ease;
}

.hero-image-wrapper:hover {
  box-shadow: var(--shadow-hover);
}

.hero-banner {
  display: block;
  border-radius: 4px;
  background: var(--gray-100);
  min-height: 300px;
}

/* Optional Badge Overlay */
.hero-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .hero-image-wrapper {
    max-width: 100%;
  }
  .hero-banner {
    min-height: 200px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
}

/* Tab Styles */
.product-tabs {
  margin-top: 2rem;
}

.tab-buttons {
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 12px 32px;
  margin: 0 8px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--accent);
  background: white;
  color: var(--accent);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: #f0f8ff;
}

.tab-btn.active {
  background: var(--accent);
  color: white;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Product Specs Table */
.product-specs {
  margin: 1rem 0;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid #dee2e6;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 8px;
  text-align: left;
  font-size: 14px;
}

.specs-table td:first-child {
  font-weight: 600;
  color: #333;
}

.specs-table td:last-child {
  color: var(--accent);
  font-weight: 600;
}

.specs-table .moq {
  text-align: center;
  background: #fff3cd;
  color: #856404;
  font-weight: 700;
  border-radius: 4px;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
    margin: 4px;
  }
  
  .specs-table td {
    font-size: 13px;
    padding: 6px;
  }
}
  .product-card-mini {
    background: var(--white); 
    padding: 1rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
  }
  .product-card-mini:hover {
    box-shadow: var(--shadow-md);
  }
  .product-card-mini:first-child { 
    grid-column: 1 / -1; 
    background: var(--accent); 
    color: var(--white); 
  }
  .product-card-mini:first-child .pcard-name { color: var(--gray-200); }
  .pcard-icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
  .pcard-name { 
    font-size: 0.7rem; 
    font-weight: 600; 
    color: var(--gray-400); 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    margin-bottom: 0.3rem;
  }
  .pcard-title { 
    font-family: 'Merriweather', serif; 
    font-size: 1rem; 
    font-weight: 700; 
    margin-bottom: 0.5rem;
  }
  .pcard-tag { 
    display: inline-block; 
    background: var(--accent-light); 
    color: var(--accent); 
    font-size: 0.7rem; 
    padding: 0.2rem 0.6rem; 
    border: 1px solid var(--accent);
    font-weight: 600;
    border-radius: 4px;
  }

  /* SECTION COMMONS - Traditional */
  section { padding: 3rem 2rem; }
  .container-wide { max-width: 1200px; margin: 0 auto; }
  .section-tag { 
    font-size: 0.75rem; 
    font-weight: 700; 
    color: var(--accent); 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--accent);
    padding-left: 0.75rem;
  }
  .section-title { 
    font-size: 1.8rem; 
    font-weight: 700; 
    margin-bottom: 0.75rem; 
    color: var(--black);
  }
  .section-sub { 
    color: var(--gray-600); 
    font-size: 1rem; 
    max-width: 600px; 
    margin-bottom: 2rem;
  }
  .text-center { text-align: center; }
  .text-center .section-sub { margin: 0 auto 2rem; }

  /* STATIC TICKER */
  .ticker-wrap { background: var(--accent); color: var(--white); padding: 1rem 0; overflow: hidden; }
  .ticker { display: flex; animation: ticker 25s linear infinite; white-space: nowrap; }
  .ticker-item { font-family: 'Open Sans', sans-serif; font-size: 0.875rem; font-weight: 400; padding: 0 2.5rem;}
  .ticker-item span { color: #ffd700; margin-right: 2.5rem; }
  @keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

  /* PRODUCTS GRID - Shadow Cards */
  .products-grid { margin-top: 2rem; }
  .prod-card {
    border-radius: 4px;
    background: var(--white);
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  .prod-card:hover { 
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
  }
  .prod-card-img {
    height: 180px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    background: var(--gray-100);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    border-radius: 4px 4px 0 0;
  }
  .prod-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .prod-card:hover .prod-card-img img {
    transform: scale(1.03);
  }
  .prod-card-body { padding: 1.25rem; }
  .prod-card-body h3 { 
    font-size: 1.1rem; 
    font-weight: 700; 
    margin-bottom: 0.5rem;
    font-family: 'Merriweather', serif;
  }
  .prod-card-body p { 
    font-size: 0.9rem; 
    color: var(--gray-600); 
    margin-bottom: 1rem; 
  }
  .prod-tags { 
    display: flex; 
    gap: 0.5rem; 
    flex-wrap: wrap; 
    margin-top: 0.5rem;
  }

  .prod-tag { 
    font-size: 0.8rem; 
    font-weight: 600;
    padding: 0.5rem 0.9rem; 
    border: 2px solid;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
  }
  .prod-tag:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
  }

  .btn-icon {
    font-size: 1rem;
    line-height: 1;
  }

  /* WhatsApp Button - Green */
  .btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    border-color: #128C7E;
  }
  .btn-whatsapp:hover {
    background: #128C7E;
    border-color: #075E54;
  }

  /* Enquiry Button - Traditional Blue */
  .btn-enquiry {
    background: var(--accent);
    color: #ffffff;
    border-color: #002244;
  }
  .btn-enquiry:hover {
    background: #002244;
    border-color: var(--black);
  }

  /* Featured Card Button Overrides */
  .prod-card.featured .btn-whatsapp {
    background: #ffffff;
    color: #25D366;
    border-color: #ffffff;
  }
  .prod-card.featured .btn-whatsapp:hover {
    background: #25D366;
    color: #ffffff;
  }

  .prod-card.featured .btn-enquiry {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
  }
  .prod-card.featured .btn-enquiry:hover {
    background: #ffffff;
    color: var(--accent);
  }

  /* Responsive Button Adjustments */
  @media (max-width: 575px) {
    .prod-tag {
      font-size: 0.75rem;
      padding: 0.4rem 0.7rem;
    }
    .btn-icon {
      font-size: 0.9rem;
    }
  }

  /* CLIENTS SECTION - Logo Grid with Placeholders */
  .clients-section { 
    background: var(--gray-100); 
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  .client-logos { 
    display: flex; 
    gap: 1.5rem; 
    align-items: center; 
    flex-wrap: wrap; 
    justify-content: center;
    padding: 1.5rem 0;
  }
  .client-logo { 
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    font-family: 'Merriweather', serif;
    font-size: 0.85rem; 
    font-weight: 700; 
    color: var(--gray-600);
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
  }
  .client-logo:hover {
    box-shadow: var(--shadow-md);
  }
  .client-logo img {
    max-width: 100%;
    max-height: 40px;
    opacity: 0.7;
  }
  .client-logo img:hover {
    opacity: 1;
  }

  /* MARKETPLACE COLLECTIONS */
  .marketplace-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
  }
  .marketplace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  .marketplace-card {
    border-radius: 4px;
    padding: 1.5rem;
    text-align: center;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
  }
  .marketplace-card:hover {
    box-shadow: var(--shadow-md);
  }
  .marketplace-card h4 {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
  }
  .marketplace-card .btn-shop {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border: 2px solid var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
  }
  .marketplace-card .btn-shop:hover {
    background: var(--white);
    color: var(--accent);
    box-shadow: var(--shadow-md);
  }

  /* MILESTONES SECTION */
  .milestones-section {
    background: var(--accent);
    color: var(--white);
    padding: 2.5rem 2rem;
  }
  .milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .milestone-item .number {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
  }
  .milestone-item .label {
    font-size: 0.9rem;
    opacity: 0.9;
  }

  /* USP CARDS - Shadow Style */
  .usp-section { background: var(--white); }
  .usp-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .usp-card { 
    border-radius: 4px; 
    padding: 1.5rem; 
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
  }
  .usp-card:hover { 
    box-shadow: var(--shadow-hover);
  }
  .usp-icon { 
    font-size: 1.8rem; 
    margin-bottom: 1rem; 
    display: block;
    color: var(--accent);
  }
  .usp-card h3 { 
    font-size: 1.1rem; 
    font-weight: 700; 
    margin-bottom: 0.5rem;
    font-family: 'Merriweather', serif;
  }
  .usp-card p { 
    font-size: 0.9rem; 
    color: var(--gray-600); 
  }

  /* VIDEO TESTIMONIALS */
  .video-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
  }
  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  .video-card {
    border-radius: 4px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
  }
  .video-card:hover {
    box-shadow: var(--shadow-md);
  }
  .video-placeholder {
    height: 160px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
  }
  .video-placeholder:hover {
    background: var(--gray-200);
    color: var(--accent);
  }
  .video-title {
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Merriweather', serif;
  }

  /* TESTIMONIALS - Simple Cards */
  .testimonials-section { background: var(--gray-100); }
  .testimonials-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .testi-card { 
    border-radius: 4px; 
    padding: 1.5rem; 
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
  }
  .testi-card:hover {
    box-shadow: var(--shadow-md);
  }
  .testi-stars { 
    color: #ffc107; 
    font-size: 1rem; 
    margin-bottom: 0.75rem; 
    letter-spacing: 0.1rem;
  }
  .testi-text { 
    font-size: 0.95rem; 
    color: var(--gray-800); 
    margin-bottom: 1rem; 
    font-style: italic;
  }
  .testi-author { 
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
  }
  .testi-name { 
    font-weight: 700; 
    font-size: 0.9rem;
    font-family: 'Merriweather', serif;
  }
  .testi-biz { 
    font-size: 0.8rem; 
    color: var(--gray-400); 
  }

  /* FAQ - Simple Accordion */
  .faq-section { background: var(--white); }
  .faq-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .faq-item { 
    border-radius: 4px;
    padding: 1rem;
    cursor: pointer;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
  }
  .faq-item:hover {
    box-shadow: var(--shadow-md);
  }
  .faq-q { 
    font-weight: 700; 
    font-size: 0.95rem; 
    margin-bottom: 0.5rem;
    font-family: 'Merriweather', serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .faq-toggle {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    transition: transform 0.2s;
  }
  .faq-item.active .faq-toggle {
    transform: rotate(45deg);
  }
  .faq-a { 
    font-size: 0.9rem; 
    color: var(--gray-600); 
    display: none;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
  }
  .faq-item.active .faq-a { 
    display: block; 
  }

  /* QUOTE FORM - Traditional */
  .quote-strip { 
    background: var(--accent-light); 
    border-top: 2px solid var(--accent); 
    border-bottom: 2px solid var(--accent); 
    padding: 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
  }
  .quote-form { 
    display: flex; 
    gap: 0.75rem; 
    flex-wrap: wrap; 
    margin-top: 1rem;
  }
  .quote-form input, .quote-form select {
    flex: 1; 
    min-width: 150px; 
    padding: 0.6rem 1rem; 
    border: 2px solid var(--border-color);
    border-radius: 4px; 
    background: var(--white); 
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
  }
  .quote-form input:focus, .quote-form select:focus { 
    border-color: var(--accent); 
    outline: none;
    box-shadow: var(--shadow-md);
  }
  .quote-form button { 
    background: var(--accent); 
    color: var(--white); 
    padding: 0.6rem 1.5rem; 
    border: 2px solid var(--accent);
    border-radius: 4px; 
    font-size: 0.9rem; 
    font-weight: 600; 
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
  }
  .quote-form button:hover { 
    background: var(--white); 
    color: var(--accent);
    box-shadow: var(--shadow-md);
  }

  /* FINAL CTA - Traditional */
  .final-cta-section {
    background: var(--accent); 
    text-align: center; 
    padding: 3rem 2rem;
    color: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
  }
  .final-cta-section h2 { 
    font-size: 1.8rem; 
    margin-bottom: 1rem; 
    font-family: 'Merriweather', serif;
  }
  .final-cta-section p { 
    color: var(--gray-200); 
    font-size: 1rem; 
    margin-bottom: 2rem; 
  }
  .cta-cluster { 
    display: flex; 
    gap: 0.75rem; 
    justify-content: center; 
    flex-wrap: wrap; 
  }
  .btn-gold { 
    background: #ffd700; 
    color: var(--black); 
    padding: 0.75rem 1.75rem; 
    border: 2px solid #ffd700;
    border-radius: 4px; 
    font-size: 0.95rem; 
    font-weight: 700; 
    text-decoration: none; 
    display: inline-block;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
  }
  .btn-gold:hover { 
    background: var(--white); 
    border-color: var(--white);
    box-shadow: var(--shadow-md);
  }
  .btn-ghost { 
    border: 2px solid var(--white); 
    color: var(--white); 
    padding: 0.75rem 1.75rem; 
    border-radius: 4px; 
    font-size: 0.95rem; 
    font-weight: 600; 
    text-decoration: none; 
    background: transparent;
    display: inline-block;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
  }
  .btn-ghost:hover { 
    background: var(--white); 
    color: var(--accent);
    box-shadow: var(--shadow-md);
  }

  /* FOOTER - Traditional */
  footer { 
    background: var(--gray-800); 
    color: var(--gray-200); 
    padding: 2.5rem 2rem; 
  }
  .footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-logo { 
    font-family: 'Merriweather', serif; 
    font-size: 1.3rem; 
    font-weight: 700; 
    margin-bottom: 1rem;
    color: var(--white);
  }
  .footer-logo span { color: #ffd700; }
  .footer-desc { 
    font-size: 0.9rem; 
    color: var(--gray-400); 
    margin-bottom: 1rem; 
  }
  .footer-contact { 
    font-size: 0.9rem; 
    color: var(--gray-400); 
    line-height: 1.8; 
  }
  .footer-contact a { 
    color: var(--gray-200); 
    text-decoration: none; 
  }
  .footer-contact a:hover { text-decoration: underline; }
  .footer-col h4 { 
    font-family: 'Merriweather', serif; 
    font-size: 0.9rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    color: var(--gray-200); 
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--gray-600);
    padding-bottom: 0.5rem;
  }
  .footer-col ul { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    gap: 0.5rem; 
    padding: 0; 
  }
  .footer-col ul a { 
    font-size: 0.9rem; 
    color: var(--gray-400); 
    text-decoration: none; 
  }
  .footer-col ul a:hover { 
    color: var(--white); 
    text-decoration: underline; 
  }
  .footer-bottom { 
    border-top: 1px solid var(--gray-600); 
    padding-top: 1.5rem; 
    margin-top: 2rem;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 0.8rem; 
    color: var(--gray-400);
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .trust-badges { 
    display: flex; 
    gap: 0.75rem; 
    flex-wrap: wrap; 
  }
  .trust-badge { 
    background: var(--gray-600); 
    border: 1px solid var(--gray-400); 
    border-radius: 4px; 
    padding: 0.3rem 0.7rem; 
    font-size: 0.75rem; 
    color: var(--gray-200);
    box-shadow: var(--shadow-sm);
  }

  /* CHAT WIDGET PLACEHOLDER */
  .chat-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--accent);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: all 0.2s ease;
  }
  .chat-widget:hover {
    background: var(--white);
    color: var(--accent);
    box-shadow: var(--shadow-hover);
  }

  /* RESPONSIVE */
  @media (max-width: 991px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { max-width: 400px; margin: 0 auto; }
    .nav-links { display: none; }
  }
  
  @media (max-width: 575px) {
    .hero h1 { font-size: 1.6rem; }
    .section-title { font-size: 1.4rem; }
    .quote-form { flex-direction: column; }
    .quote-form button { width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-cluster { flex-direction: column; align-items: center; }
    .btn-gold, .btn-ghost { width: 100%; max-width: 280px; }
    .client-logo { width: 100px; height: 50px; font-size: 0.75rem; }
  }
