
  :root {
    --blue-1: #e8f4fd;
    --blue-2: #c8e4f8;
    --blue-3: #5ba3d9;
    --blue-4: #2176ae;
    --blue-5: #0d4f8b;
    --blue-6: #082d52;
    --white: #ffffff;
    --gray-1: #f7fafd;
    --gray-2: #e4edf6;
    --gray-3: #9bb5cc;
    --gray-4: #4a6f8a;
    --text-dark: #0d1b2a;
    --text-mid: #2d4a62;
    --gold: #c9a84c;
    --gold-light: #f0d98b;
    --shadow-soft: 0 4px 24px rgba(33,118,174,0.10);
    --shadow-card: 0 8px 40px rgba(33,118,174,0.13);
    --radius: 14px;
    --radius-lg: 24px;
  }
  *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ===== SCROLLBAR ===== */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--blue-1); }
  ::-webkit-scrollbar-thumb { background: var(--blue-3); border-radius: 3px; }

  /* ===== NAV ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--blue-2);
    padding: 0 5%;
    height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 2px 20px rgba(33,118,174,0.08);
    transition: box-shadow 0.3s;
  }
  .logo {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
  }
  .logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--blue-4), var(--blue-5));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: white;
  }
  .logo-text { display: flex; flex-direction: column; }
  .logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-weight: 700;
    color: var(--blue-5); line-height: 1.1;
  }
  .logo-tag {
    font-size: 0.62rem; letter-spacing: 0.18em;
    color: var(--gold); font-weight: 600; text-transform: uppercase;
  }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    text-decoration: none; font-size: 0.9rem; font-weight: 500;
    color: var(--text-mid); transition: color 0.2s; position: relative;
    letter-spacing: 0.02em;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
    height: 2px; background: var(--blue-4); transition: right 0.3s;
  }
  .nav-links a:hover { color: var(--blue-4); }
  .nav-links a:hover::after { right: 0; }
  .nav-cta {
    background: linear-gradient(135deg, var(--blue-4), var(--blue-5));
    color: white; padding: 10px 24px; border-radius: 8px;
    text-decoration: none; font-size: 0.88rem; font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(33,118,174,0.30);
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(33,118,174,0.40); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { width: 24px; height: 2px; background: var(--blue-5); border-radius: 2px; transition: 0.3s; }

  /* ===== HERO ===== */
  #home {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--blue-1) 0%, var(--white) 50%, var(--blue-1) 100%);
    display: flex; align-items: center;
    padding: 100px 5% 60px;
    position: relative; overflow: hidden;
  }
  .hero-bg-pattern {
    position: absolute; top: 0; right: 0; width: 55%; height: 100%;
    background: linear-gradient(135deg, var(--blue-2) 0%, var(--blue-1) 100%);
    clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
  }
  .hero-bg-pattern::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='%232176ae' fill-opacity='0.06'%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");
  }
  .floating-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
  .shape {
    position: absolute; border-radius: 50%;
    background: linear-gradient(135deg, rgba(33,118,174,0.08), rgba(33,118,174,0.03));
    animation: float 8s ease-in-out infinite;
  }
  .shape-1 { width: 280px; height: 280px; top: 10%; right: 20%; animation-delay: 0s; }
  .shape-2 { width: 180px; height: 180px; bottom: 20%; right: 8%; animation-delay: 3s; }
  .shape-3 { width: 120px; height: 120px; top: 60%; right: 35%; animation-delay: 5s; }
  @keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
  }
  .hero-content { position: relative; z-index: 1; max-width: 580px; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; border: 1px solid var(--blue-2);
    border-radius: 50px; padding: 8px 18px;
    font-size: 0.78rem; font-weight: 600; color: var(--blue-4);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 28px;
    box-shadow: var(--shadow-soft);
    animation: slideDown 0.6s ease both;
  }
  .hero-badge span { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
  .hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900; line-height: 1.1;
    color: var(--blue-6); margin-bottom: 20px;
    animation: slideUp 0.7s 0.1s ease both;
  }
  .hero-h1 em { font-style: normal; color: var(--blue-4); }
  .hero-h1 .gold-line { color: var(--gold); }
  .hero-sub {
    font-size: 1.05rem; line-height: 1.75; color: var(--text-mid);
    margin-bottom: 36px; font-weight: 400;
    animation: slideUp 0.7s 0.2s ease both;
  }
  @keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .hero-stats {
    display: flex; gap: 32px; margin-bottom: 40px;
    animation: slideUp 0.7s 0.3s ease both;
  }
  .stat { text-align: left; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; font-weight: 900; color: var(--blue-4); line-height: 1;
  }
  .stat-num sup { font-size: 1rem; }
  .stat-label { font-size: 0.75rem; color: var(--gray-4); font-weight: 500; margin-top: 2px; letter-spacing: 0.05em; }
  .stat-divider { width: 1px; background: var(--blue-2); }
  .hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: slideUp 0.7s 0.4s ease both;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--blue-4), var(--blue-5));
    color: white; padding: 14px 32px; border-radius: 10px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(33,118,174,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(33,118,174,0.45); }
  .btn-secondary {
    background: white; color: var(--blue-4); padding: 14px 32px;
    border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 0.95rem;
    border: 2px solid var(--blue-3); transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-secondary:hover { background: var(--blue-1); transform: translateY(-3px); }
  .hero-images {
    position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
    width: 42%; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px; height: 520px;
  }
  .hero-img {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-card);
    position: relative;
  }
  .hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .hero-img:hover img { transform: scale(1.05); }
  .hero-img.tall { grid-row: span 2; }
  .hero-img-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(8,45,82,0.6));
    padding: 16px 14px 14px;
    color: white; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* ===== MARQUEE BANNER ===== */
  .marquee-wrap {
    background: linear-gradient(90deg, var(--blue-5), var(--blue-4), var(--blue-5));
    padding: 14px 0; overflow: hidden;
  }
  .marquee-track {
    display: flex; gap: 0; white-space: nowrap;
    animation: marquee 30s linear infinite;
  }
  .marquee-track span {
    color: white; font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0 32px; opacity: 0.92;
  }
  .marquee-track span.dot { color: var(--gold); font-size: 1rem; padding: 0 8px; opacity: 1; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ===== SECTION COMMON ===== */
  section { padding: 90px 5%; }
  .section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--blue-4);
    margin-bottom: 14px;
  }
  .section-label::before, .section-label::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-3), transparent);
    min-width: 30px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; color: var(--blue-6); line-height: 1.2;
    margin-bottom: 16px;
  }
  .section-title em { font-style: normal; color: var(--blue-4); }
  .section-sub {
    font-size: 1rem; color: var(--text-mid); line-height: 1.7;
    max-width: 560px;
  }
  .center { text-align: center; }
  .center .section-sub { margin: 0 auto; }
  .center .section-label { justify-content: center; }

  /* ===== WHY CHOOSE US ===== */
  .why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; margin-top: 56px;
  }
  .why-card {
    background: var(--white);
    border: 1px solid var(--blue-2);
    border-radius: var(--radius-lg); padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative; overflow: hidden;
  }
  .why-card::before {
    content: ''; position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--blue-3), var(--blue-4));
    border-radius: 0 0 4px 4px;
    transition: width 0.3s;
  }
  .why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: var(--blue-3); }
  .why-card:hover::before { width: 100%; }
  .why-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
  }
  .why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700; color: var(--blue-5);
    margin-bottom: 10px;
  }
  .why-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; }

  /* ===== ABOUT ===== */
  #about { background: var(--gray-1); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; margin-top: 20px;
  }
  .about-images {
    position: relative; height: 520px;
  }
  .about-img-main {
    position: absolute; top: 0; left: 0; width: 72%; height: 85%;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-card);
  }
  .about-img-main img { width: 100%; height: 100%; object-fit: cover; }
  .about-img-2 {
    position: absolute; bottom: 0; right: 0; width: 52%; height: 55%;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 4px solid white;
  }
  .about-img-2 img { width: 100%; height: 100%; object-fit: cover; }
  .about-badge-exp {
    position: absolute; top: 50%; left: 60%; transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--blue-4), var(--blue-5));
    color: white; border-radius: var(--radius-lg); padding: 20px 26px;
    text-align: center; box-shadow: var(--shadow-card);
    border: 3px solid white;
    z-index: 2;
  }
  .exp-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem; font-weight: 900; line-height: 1;
  }
  .exp-text { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.88; }
  .about-features { display: flex; flex-direction: column; gap: 18px; margin: 30px 0; }
  .about-feat {
    display: flex; align-items: flex-start; gap: 16px;
    background: white; border-radius: 12px; padding: 18px 20px;
    border: 1px solid var(--blue-2);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .about-feat:hover { transform: translateX(6px); box-shadow: var(--shadow-soft); }
  .about-feat-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .about-feat-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--blue-5); margin-bottom: 4px; }
  .about-feat-text p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.55; }
  .about-certs {
    display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px;
  }
  .cert-badge {
    background: white; border: 1px solid var(--blue-2);
    border-radius: 8px; padding: 8px 16px;
    font-size: 0.75rem; font-weight: 600; color: var(--blue-4);
    display: flex; align-items: center; gap: 6px;
  }

  /* ===== PRODUCTS ===== */
  #products { background: white; }
  .products-intro { max-width: 700px; margin: 0 auto 56px; }
  .product-filter {
    display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
    margin-bottom: 44px;
  }
  .filter-btn {
    background: var(--blue-1); border: 1px solid var(--blue-2);
    color: var(--blue-4); padding: 9px 22px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; cursor: pointer;
    transition: all 0.2s; font-family: 'DM Sans', sans-serif;
  }
  .filter-btn.active, .filter-btn:hover {
    background: linear-gradient(135deg, var(--blue-4), var(--blue-5));
    color: white; border-color: transparent;
    box-shadow: 0 4px 14px rgba(33,118,174,0.30);
  }
  .products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .product-card {
    background: var(--gray-1); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--blue-2);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }
  .product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
  .product-img {
    height: 280px; overflow: hidden; position: relative;
    background: var(--blue-1);
  }
  .product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .product-card:hover .product-img img { transform: scale(1.08); }
  .product-tag {
    position: absolute; top: 14px; left: 14px;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
    border-radius: 6px; padding: 5px 12px;
    font-size: 0.72rem; font-weight: 700; color: var(--blue-4);
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .product-info { padding: 22px 22px 24px; }
  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700; color: var(--blue-5);
    margin-bottom: 8px;
  }
  .product-desc { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
  .product-meta {
    display: flex; align-items: center; justify-content: space-between;
  }
  .product-moq {
    font-size: 0.78rem; color: var(--gray-4); font-weight: 500;
  }
  .product-moq strong { color: var(--blue-4); }
  .product-btn {
    background: linear-gradient(135deg, var(--blue-3), var(--blue-4));
    color: white; border: none; padding: 9px 20px;
    border-radius: 8px; font-size: 0.82rem; font-weight: 600;
    cursor: pointer; font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
  }
  .product-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(33,118,174,0.30); }

  /* ===== PROFIT BANNER ===== */
  .profit-section {
    background: linear-gradient(135deg, var(--blue-5) 0%, var(--blue-6) 100%);
    padding: 80px 5%; position: relative; overflow: hidden;
  }
  .profit-section::before {
    content: '';
    position: absolute; top: -50%; right: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
  }
  .profit-section::after {
    content: '';
    position: absolute; bottom: -30%; left: 5%;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(201,168,76,0.08);
  }
  .profit-grid {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 80px; align-items: center; position: relative; z-index: 1;
  }
  .profit-content .section-title { color: white; }
  .profit-content .section-label { color: var(--gold-light); }
  .profit-content .section-label::before, .profit-content .section-label::after { background: rgba(201,168,76,0.4); }
  .profit-content .section-sub { color: rgba(255,255,255,0.8); max-width: 100%; }
  .profit-points { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
  .profit-point {
    display: flex; align-items: center; gap: 14px;
    color: rgba(255,255,255,0.9); font-size: 0.92rem; font-weight: 500;
  }
  .profit-point-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.4);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }
  .profit-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .profit-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg); padding: 28px 22px;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
  }
  .profit-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-4px); }
  .profit-card.gold-card {
    background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.1));
    border-color: rgba(201,168,76,0.40);
  }
  .profit-percent {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem; font-weight: 900;
    color: var(--gold-light); line-height: 1;
  }
  .profit-card-title { color: white; font-weight: 700; font-size: 0.95rem; margin: 8px 0 4px; }
  .profit-card-sub { color: rgba(255,255,255,0.6); font-size: 0.78rem; }

  /* ===== TESTIMONIALS ===== */
  #testimonials { background: var(--gray-1); }
  .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
  .testi-card {
    background: white; border-radius: var(--radius-lg);
    padding: 32px 28px; border: 1px solid var(--blue-2);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
  .testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
  .testi-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 14px; }
  .testi-avatar {
    width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
    border: 2px solid var(--blue-2); flex-shrink: 0;
    background: var(--blue-1); display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
  }
  .testi-name { font-weight: 700; font-size: 0.92rem; color: var(--blue-5); }
  .testi-role { font-size: 0.78rem; color: var(--gray-3); margin-top: 2px; }

  /* ===== CONTACT ===== */
  #contact { background: white; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; margin-top: 52px; }
  .contact-info { display: flex; flex-direction: column; gap: 24px; }
  .contact-item {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--gray-1); border-radius: 14px; padding: 20px 22px;
    border: 1px solid var(--blue-2); transition: box-shadow 0.2s;
  }
  .contact-item:hover { box-shadow: var(--shadow-soft); }
  .contact-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-4), var(--blue-5));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: white;
  }
  .contact-item h4 { font-weight: 700; font-size: 0.9rem; color: var(--blue-5); margin-bottom: 4px; }
  .contact-item p, .contact-item a { font-size: 0.86rem; color: var(--text-mid); text-decoration: none; line-height: 1.6; }
  .contact-item a:hover { color: var(--blue-4); }
  .map-container {
    border-radius: var(--radius-lg); overflow: hidden;
    border: 2px solid var(--blue-2); height: 220px;
    box-shadow: var(--shadow-soft); margin-top: 8px;
  }
  .map-container iframe { width: 100%; height: 100%; border: none; }
  .contact-form { background: var(--gray-1); border-radius: var(--radius-lg); padding: 38px 36px; border: 1px solid var(--blue-2); }
  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700; color: var(--blue-5); margin-bottom: 8px;
  }
  .form-sub { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 28px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .form-group label { font-size: 0.82rem; font-weight: 600; color: var(--blue-5); }
  .form-group input, .form-group select, .form-group textarea {
    background: white; border: 1px solid var(--blue-2);
    border-radius: 10px; padding: 12px 16px;
    font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
    color: var(--text-dark); transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--blue-3); box-shadow: 0 0 0 3px rgba(33,118,174,0.10);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit {
    width: 100%; background: linear-gradient(135deg, var(--blue-4), var(--blue-5));
    color: white; border: none; padding: 15px; border-radius: 12px;
    font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: all 0.2s;
    box-shadow: 0 6px 20px rgba(33,118,174,0.35);
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-top: 8px;
  }
  .form-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(33,118,174,0.45); }
  .form-success {
    display: none;
    background: linear-gradient(135deg, #e6f9ee, #d0f0e0);
    border: 1px solid #6dd49a; border-radius: 10px; padding: 16px 20px;
    color: #1a6e3e; font-weight: 600; font-size: 0.9rem;
    align-items: center; gap: 10px; margin-top: 12px;
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--blue-6);
    padding: 60px 5% 28px;
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .logo-name { font-size: 1.5rem; color: white; }
  .footer-brand .logo-tag { color: var(--gold); }
  .footer-brand .logo-icon { background: rgba(255,255,255,0.1); }
  .footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 16px; }
  .footer-socials { display: flex; gap: 10px; margin-top: 20px; }
  .social-btn {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 0.9rem; text-decoration: none;
    transition: all 0.2s;
  }
  .social-btn:hover { background: var(--blue-4); color: white; }
  .footer-col h5 {
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.87rem;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: white; }
  .footer-bottom {
    padding-top: 24px; display: flex; justify-content: space-between; align-items: center;
    color: rgba(255,255,255,0.35); font-size: 0.8rem;
  }
  .footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
  .footer-bottom a:hover { color: white; }

  /* ===== BACK TO TOP ===== */
  .back-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-4), var(--blue-5));
    color: white; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; text-decoration: none;
    box-shadow: 0 6px 20px rgba(33,118,174,0.4);
    opacity: 0; transform: translateY(20px);
    transition: all 0.3s; z-index: 999;
    pointer-events: none;
  }
  .back-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
  .back-top:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(33,118,174,0.55); }

  /* ===== MOBILE NAV ===== */
  .mobile-menu {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: white; border-bottom: 1px solid var(--blue-2);
    padding: 20px 5%; flex-direction: column; gap: 16px;
    z-index: 999; box-shadow: 0 8px 24px rgba(33,118,174,0.12);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: var(--text-mid); text-decoration: none; font-weight: 500; font-size: 1rem;
    padding: 8px 0; border-bottom: 1px solid var(--blue-1);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1100px) {
    .hero-images { display: none; }
    .hero-content { max-width: 100%; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { height: 400px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .profit-grid { grid-template-columns: 1fr; gap: 40px; }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 680px) {
    nav { padding: 0 4%; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-stats { gap: 20px; }
    .why-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .profit-cards { grid-template-columns: 1fr 1fr; }
  }


/* WordPress / Elementor helpers */
.admin-bar nav#navbar{top:32px;}
@media(max-width:782px){.admin-bar nav#navbar{top:46px;}.admin-bar .mobile-menu{top:118px;}}
.elementor-page .site-main{padding:0;}
.royalweave-editable-header,.royalweave-editable-footer{position:relative;}
.screen-reader-text{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden;}
