/* ===== RESET & VARIABLES ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --navy-deep:   #11162b;
      --navy-mid:    #1a223f;
      --navy-light:  #243058;
      --navy-soft:   #344373;
      --silver-dark: #8c98a8;
      --silver-mid:  #c2c9d6;
      --silver-light:#e2e6ed;
      --silver-pale: #f4f6f9;
      --white:       #ffffff;
      --accent:      #d1d8e6;
      --accent-light:#ffffff;
      --text-dark:   #0d1626;
      --text-mid:    #3a4d6e;
      --text-light:  #6c82a4;
      --shadow-lg: 0 20px 60px rgba(17,26,46,0.35);
      --shadow-md: 0 8px 30px rgba(17,26,46,0.20);
      --shadow-sm: 0 2px 12px rgba(17,26,46,0.12);
      --radius: 12px;
      --radius-lg: 20px;
      --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Outfit', sans-serif;
      background: var(--white);
      color: var(--text-dark);
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

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

    /* ===== TOPBAR ===== */
    #topbar {
      background: var(--navy-deep);
      padding: 10px 0;
      font-size: 0.78rem;
      color: var(--silver-mid);
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .topbar-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      flex-wrap: nowrap;
    }
    .topbar-item {
      display: flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
    }
    .topbar-item svg { width: 14px; height: 14px; fill: var(--accent); flex-shrink: 0; }
    .topbar-item a:hover { color: var(--accent-light); transition: var(--transition); }
    .topbar-address-short { display: none; }
    .topbar-right { display: flex; align-items: center; gap: 24px; margin-left: auto; }

    /* ===== NAVBAR ===== */
    #navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(17,22,43,0.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: var(--transition);
    }
    #navbar.scrolled {
      box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    }
    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-logo img {
      height: 52px;
      width: auto;
      object-fit: contain;
    }
    .nav-logo-text { display: flex; flex-direction: column; }
    .nav-logo-text .brand-name {
      font-family: 'Outfit', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
    .nav-logo-text .brand-sub {
      font-size: 0.65rem;
      color: var(--accent);
      letter-spacing: 2.5px;
      text-transform: uppercase;
      font-weight: 400;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .nav-links > li { position: relative; }
    .nav-links > li > a {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 8px 14px;
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--silver-mid);
      border-radius: 8px;
      transition: var(--transition);
      letter-spacing: 0.3px;
    }
    .nav-links > li > a:hover,
    .nav-links > li > a.active {
      color: var(--white);
      background: rgba(255,255,255,0.1);
    }
    .nav-links > li > a svg {
      width: 12px; height: 12px;
      fill: currentColor;
      transition: transform 0.3s;
    }
    .nav-links > li:hover > a svg { transform: rotate(180deg); }

    /* ===== L1 DROPDOWN ===== */
    .dropdown {
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      background: var(--navy-mid);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius);
      padding: 6px;
      min-width: 220px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
      box-shadow: var(--shadow-lg);
      pointer-events: none;
      transform: translateY(8px);
      z-index: 200;
    }
    .nav-links > li:hover > .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }
    /* L1 items */
    .dropdown > li {
      position: relative;
    }
    .dropdown > li > a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding: 9px 14px;
      font-size: 0.84rem;
      color: var(--silver-mid);
      border-radius: 8px;
      transition: var(--transition);
      white-space: nowrap;
    }
    .dropdown > li > a:hover {
      background: rgba(255,255,255,0.1);
      color: var(--white);
    }
    .dropdown > li > a .arrow {
      width: 14px; height: 14px;
      fill: var(--silver-dark);
      flex-shrink: 0;
      transform: rotate(-90deg);
      transition: var(--transition);
    }
    .dropdown > li:hover > a .arrow { fill: var(--white); }
    /* Divider between groups */
    .dropdown > li.sep {
      height: 1px;
      background: rgba(255,255,255,0.1);
      margin: 5px 8px;
      pointer-events: none;
    }
    /* Section label */
    .dropdown > li.label > span {
      display: block;
      padding: 8px 14px 4px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      pointer-events: none;
    }

    /* ===== L2 FLYOUT ===== */
    .flyout {
      position: absolute;
      top: 0;
      left: calc(100% + 6px);
      background: var(--navy-light);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius);
      padding: 6px;
      min-width: 210px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
      box-shadow: var(--shadow-lg);
      pointer-events: none;
      transform: translateX(8px);
      z-index: 300;
    }
    .dropdown > li:hover > .flyout {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
      pointer-events: auto;
    }
    .flyout li a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      font-size: 0.83rem;
      color: var(--silver-mid);
      border-radius: 8px;
      transition: var(--transition);
      white-space: nowrap;
    }
    .flyout li a::before {
      content: '';
      width: 5px; height: 5px;
      background: var(--accent);
      border-radius: 50%;
      flex-shrink: 0;
      opacity: 0;
      transition: var(--transition);
    }
    .flyout li a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
    .flyout li a:hover::before { opacity: 1; }

    /* Nav CTA */
    .nav-cta {
      background: var(--accent);
      color: var(--navy-deep) !important;
      font-weight: 700 !important;
      letter-spacing: 0.5px;
      border-radius: 8px !important;
      padding: 9px 20px !important;
    }
    .nav-cta:hover { background: var(--white); box-shadow: 0 4px 20px rgba(255,255,255,0.3); transform: translateY(-1px); }
    /* Make CTA not show dropdown */
    .nav-cta + .dropdown { display: none; }

    /* Hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
    }
    .nav-hamburger span {
      width: 24px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: var(--transition);
    }

    /* ===== HERO ===== */
    #hero {
      position: relative;
      min-height: 0;
      padding: 0;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--navy-deep);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridDrift 20s linear infinite;
    }
    @keyframes gridDrift {
      0% { transform: translate(0, 0); }
      100% { transform: translate(60px, 60px); }
    }
    .hero-bg-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      animation: glowPulse 6s ease-in-out infinite alternate;
    }
    .hero-bg-glow.g1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(36,53,96,0.9), transparent 70%);
      top: -200px; left: -100px;
    }
    .hero-bg-glow.g2 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
      bottom: -100px; right: 10%;
      animation-delay: -3s;
    }
    @keyframes glowPulse {
      0% { transform: scale(1); opacity: 0.7; }
      100% { transform: scale(1.1); opacity: 1; }
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: 54px 24px 52px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px;
    }
    .hero-text { }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 0.75rem;
      color: var(--accent);
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 24px;
      animation: fadeInUp 0.8s ease both;
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--accent);
      border-radius: 50%;
      animation: blink 1.5s ease infinite;
    }
    @keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.2; } }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      font-weight: 700;
      line-height: 1.12;
      color: var(--white);
      margin-bottom: 24px;
      animation: fadeInUp 0.8s 0.15s ease both;
    }
    .hero-title .accent { color: var(--accent); }
    .hero-title .line { display: block; }
    .hero-desc {
      font-size: 1.05rem;
      color: var(--silver-mid);
      line-height: 1.75;
      max-width: 520px;
      margin-bottom: 40px;
      animation: fadeInUp 0.8s 0.3s ease both;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeInUp 0.8s 0.45s ease both;
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: var(--navy-deep);
      font-weight: 700;
      font-size: 0.92rem;
      padding: 14px 28px;
      border-radius: 10px;
      letter-spacing: 0.4px;
      transition: var(--transition);
      box-shadow: 0 4px 20px rgba(255,255,255,0.2);
    }
    .btn-primary:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.3); }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--white);
      font-weight: 600;
      font-size: 0.92rem;
      padding: 13px 28px;
      border-radius: 10px;
      border: 1.5px solid rgba(255,255,255,0.25);
      transition: var(--transition);
    }
    .btn-outline:hover { border-color: var(--accent); color: var(--navy-deep); background: var(--accent); }

    /* Hero Stats */
    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.15);
      animation: fadeInUp 0.8s 0.6s ease both;
    }
    .hero-stat { }
    .hero-stat .num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }
    .hero-stat .lbl {
      font-size: 0.75rem;
      color: var(--silver-dark);
      letter-spacing: 0.5px;
      margin-top: 4px;
    }

    /* Hero Visual */
    .hero-visual {
      position: relative;
      animation: fadeInRight 1s 0.2s ease both;
    }
    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(40px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .hero-card-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 14px;
    }
    .hero-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow-md);
      aspect-ratio: 1;
    }
    .hero-card.tall { grid-row: 1 / 3; aspect-ratio: auto; min-height: 320px; }
    .hero-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .hero-card:hover img { transform: scale(1.05); }
    .hero-card-label {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: rgba(17,22,43,0.85);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 8px;
      padding: 6px 12px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.5px;
    }
    .hero-float-badge {
      position: absolute;
      top: -16px;
      right: -16px;
      width: 88px; height: 88px;
      background: var(--accent);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 0.62rem;
      font-weight: 800;
      color: var(--navy-deep);
      text-align: center;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      box-shadow: 0 8px 24px rgba(255,255,255,0.2);
      animation: spinBadge 10s linear infinite;
      z-index: 5;
    }
    .hero-float-badge .num { font-size: 1.6rem; font-family: 'Cormorant Garamond', serif; font-weight: 700; }
    @keyframes spinBadge {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    /* ===== SECTION COMMONS ===== */
    section { padding: 90px 24px; }
    .section-inner { max-width: 1280px; margin: 0 auto; }
    .section-header { text-align: center; margin-bottom: 60px; }
    .section-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--navy-light);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--navy-deep);
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .section-title .accent { color: var(--silver-dark); }
    .section-desc {
      font-size: 1rem;
      color: var(--text-light);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.75;
    }
    .divider {
      width: 60px; height: 3px;
      background: var(--navy-light);
      border-radius: 2px;
      margin: 20px auto 0;
    }

    /* ===== BRANDS STRIP ===== */
    #brands {
      padding: 32px 24px;
      background: var(--silver-pale);
      border-top: 1px solid var(--silver-light);
      border-bottom: 1px solid var(--silver-light);
      overflow: hidden;
    }
    .brands-track {
      display: flex;
      gap: 60px;
      align-items: center;
      animation: brandScroll 25s linear infinite;
      width: max-content;
    }
    @keyframes brandScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .brand-name-item {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--silver-dark);
      white-space: nowrap;
      letter-spacing: 1px;
      transition: var(--transition);
    }
    .brand-name-item:hover { color: var(--navy-mid); }
    .brand-dot { color: var(--navy-light); font-size: 0.5rem; align-self: center; }

    /* ===== ABOUT ===== */
    #about {
      background: var(--white);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-visual { position: relative; }
    .about-img-main {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 4/5;
    }
    .about-img-main img { width: 100%; height: 100%; object-fit: cover; }
    .about-img-accent {
      position: absolute;
      bottom: -28px;
      right: -28px;
      width: 55%;
      border-radius: var(--radius);
      overflow: hidden;
      border: 5px solid var(--white);
      box-shadow: var(--shadow-md);
      aspect-ratio: 1;
    }
    .about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
    .about-exp-badge {
      position: absolute;
      top: 28px;
      left: -28px;
      background: linear-gradient(135deg, var(--navy-mid), var(--navy-soft));
      border-radius: var(--radius);
      padding: 20px 24px;
      text-align: center;
      box-shadow: var(--shadow-md);
      z-index: 2;
    }
    .about-exp-badge .years {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }
    .about-exp-badge .years-text {
      font-size: 0.72rem;
      color: var(--silver-mid);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 4px;
    }
    .about-content { max-width: 620px; }
    .about-content .divider { margin: 24px 0 28px !important; }
    .about-content p {
      color: var(--text-light);
      font-size: 1.04rem;
      line-height: 1.72;
      margin-bottom: 20px;
    }
    .about-content p + p { margin-top: 22px; }
    .about-features { margin: 32px 0; display: flex; flex-direction: column; gap: 16px; }
    .about-feature {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 16px 20px;
      background: var(--silver-pale);
      border-radius: var(--radius);
      border-left: 3px solid var(--navy-mid);
      transition: var(--transition);
    }
    .about-feature:hover { background: var(--silver-light); transform: translateX(4px); }
    .about-feature-icon {
      width: 40px; height: 40px;
      background: linear-gradient(135deg, var(--navy-mid), var(--navy-soft));
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .about-feature-icon svg { width: 20px; height: 20px; fill: var(--white); }
    .about-feature h4 { font-size: 0.92rem; font-weight: 600; color: var(--navy-deep); margin-bottom: 3px; }
    .about-feature p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }

    /* ===== PRODUCTS ===== */
    #products {
      background: var(--navy-deep);
      position: relative;
      overflow: hidden;
    }
    #products::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    #products .section-title { color: var(--white); }
    #products .section-desc { color: var(--silver-mid); }

    .products-tabs {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 50px;
    }
    .tab-btn {
      padding: 9px 20px;
      border-radius: 8px;
      border: 1.5px solid rgba(255,255,255,0.2);
      background: transparent;
      color: var(--silver-mid);
      font-size: 0.84rem;
      font-weight: 500;
      font-family: 'Outfit', sans-serif;
      cursor: pointer;
      transition: var(--transition);
    }
    .tab-btn:hover, .tab-btn.active {
      background: var(--white);
      color: var(--navy-deep);
      border-color: transparent;
      font-weight: 700;
      box-shadow: 0 4px 16px rgba(255,255,255,0.2);
    }

    .products-grid {
      display: none;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
      animation: fadeIn 0.5s ease;
    }
    .products-grid.active { display: grid; }
    @keyframes fadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

    .product-card {
      background: var(--navy-mid);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.1);
      transition: var(--transition);
      cursor: pointer;
      position: relative;
      group: true;
    }
    .product-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255,255,255,0.3);
      box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    }
    .product-card-img {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
    }
    .product-card-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .product-card:hover .product-card-img img { transform: scale(1.07); }
    .product-card-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(17,26,46,0.75));
    }
    .product-card-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(255,255,255,0.9);
      color: var(--navy-deep);
      font-size: 0.68rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 6px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    .product-card-body {
      padding: 20px;
    }
    .product-card-title {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px;
    }
    .product-card-desc {
      font-size: 0.82rem;
      color: var(--silver-dark);
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .product-card-sub {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .sub-tag {
      font-size: 0.7rem;
      color: var(--accent);
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 3px 9px;
      border-radius: 100px;
    }

    /* ===== VESI BRAND ===== */
    #vesi {
      background: var(--white);
      position: relative;
    }
    .vesi-inner {
      background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 500px;
    }
    .vesi-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .vesi-content {
      position: relative;
      z-index: 2;
      padding: 60px 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .vesi-logo-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 8px;
      line-height: 1;
      margin-bottom: 8px;
    }
    .vesi-logo-text .v { color: var(--accent); }
    .vesi-tagline {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .vesi-desc {
      font-size: 1rem;
      color: var(--silver-mid);
      line-height: 1.75;
      max-width: 400px;
      margin-bottom: 36px;
    }
    .vesi-features {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 36px;
    }
    .vesi-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.88rem;
      color: var(--silver-mid);
    }
    .vesi-feature svg { width: 18px; height: 18px; fill: var(--accent); flex-shrink: 0; }
    .vesi-visual {
      position: relative;
      overflow: hidden;
    }
    .vesi-visual img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .vesi-visual-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--navy-mid) 0%, transparent 40%);
    }

    /* ===== WHY US ===== */
    #whyus {
      background: var(--silver-pale);
    }
    .whyus-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 24px;
    }
    .why-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      border: 1px solid var(--silver-light);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 3px;
      background: var(--navy-mid);
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--transition);
    }
    .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
    .why-card:hover::before { transform: scaleX(1); }
    .why-card-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, var(--navy-mid), var(--navy-soft));
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .why-card-icon svg { width: 26px; height: 26px; fill: var(--white); }
    .why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy-deep); margin-bottom: 10px; }
    .why-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.7; }

    /* ===== GALLERY ===== */
    #gallery {
      background: var(--white);
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto auto;
      gap: 12px;
    }
    .gallery-item {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item.tall { grid-row: span 2; }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      min-height: 200px;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover img { transform: scale(1.07); }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(17,26,46,0.7));
      opacity: 0;
      transition: var(--transition);
      display: flex;
      align-items: flex-end;
      padding: 16px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.5px;
    }

    /* ===== TESTIMONIALS ===== */
    #testimonials {
      background: var(--navy-deep);
      position: relative;
      overflow: hidden;
    }
    #testimonials::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(36,53,96,0.5) 0%, transparent 50%);
    }
    #testimonials .section-title { color: var(--white); }
    #testimonials .section-desc { color: var(--silver-mid); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px;
      position: relative;
      z-index: 2;
    }
    .testimonial-card {
      background: rgba(26,39,68,0.8);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      transition: var(--transition);
    }
    .testimonial-card:hover {
      border-color: rgba(255,255,255,0.3);
      transform: translateY(-4px);
      background: rgba(36,53,96,0.85);
    }
    .testimonial-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 16px;
      color: var(--accent);
      font-size: 1rem;
      letter-spacing: 2px;
      line-height: 1;
    }
    .testimonial-stars svg { width: 16px; height: 16px; fill: var(--accent); }
    .testimonial-text {
      font-size: 0.92rem;
      color: var(--silver-mid);
      line-height: 1.8;
      margin-bottom: 24px;
      font-style: italic;
    }
    .testimonial-author { display: flex; align-items: center; gap: 14px; }
    .testimonial-avatar {
      width: 44px; height: 44px;
      background: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--navy-deep);
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .testimonial-author-name { font-weight: 600; color: var(--white); font-size: 0.9rem; }
    .testimonial-author-role { font-size: 0.76rem; color: var(--silver-dark); margin-top: 2px; }

    /* ===== CONTACT ===== */
    #contact {
      background: var(--silver-pale);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: start;
    }
    .contact-info h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--navy-deep);
      margin-bottom: 16px;
    }
    .contact-info p {
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.75;
      margin-bottom: 32px;
    }
    .contact-items { display: flex; flex-direction: column; gap: 20px; }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 20px;
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--silver-light);
      transition: var(--transition);
    }
    .contact-item:hover { border-color: var(--navy-mid); box-shadow: var(--shadow-sm); }
    .contact-item-icon {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--navy-mid), var(--navy-soft));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-item-icon svg { width: 20px; height: 20px; fill: var(--white); }
    .contact-item-label { font-size: 0.72rem; font-weight: 600; color: var(--text-light); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 3px; }
    .contact-item-value { font-size: 0.92rem; color: var(--navy-deep); font-weight: 500; }
    .contact-item-value a { color: var(--navy-light); }
    .contact-item-value a:hover { color: var(--navy-mid); }

    /* Form */
    .contact-form {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 40px 36px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--silver-light);
    }
    .contact-form h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--navy-deep);
      margin-bottom: 24px;
    }
    .contact-form h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--navy-deep); margin-bottom: 24px; }
    .form-notice { padding: 12px 14px; border-radius: 8px; margin-bottom: 18px; font-size: 0.9rem; }
    .form-notice.success { background: #e7f8ed; color: #176b38; }
    .form-notice.error { background: #fcecec; color: #a72e2e; }
    .contact-whatsapp { margin-top: 20px; font-size: 0.9rem; color: var(--text-light); }
    .contact-whatsapp a { color: var(--navy-light); font-weight: 700; }
    .showroom-map { margin-top: 60px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: center; background: var(--white); border: 1px solid var(--silver-light); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
    .showroom-map h2 { font-family: 'Cormorant Garamond', serif; color: var(--navy-deep); font-size: 2.25rem; line-height: 1.1; margin: 12px 0; }
    .showroom-map p { color: var(--text-light); line-height: 1.75; }
    .showroom-map iframe { width: 100%; min-height: 320px; border: 0; border-radius: 10px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--navy-mid);
      margin-bottom: 7px;
      letter-spacing: 0.3px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      background: var(--silver-pale);
      border: 1.5px solid var(--silver-light);
      border-radius: 8px;
      font-family: 'Outfit', sans-serif;
      font-size: 0.88rem;
      color: var(--text-dark);
      transition: var(--transition);
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--navy-mid);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(26,39,68,0.1);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-submit {
      width: 100%;
      padding: 15px;
      background: linear-gradient(135deg, var(--navy-mid), var(--navy-soft));
      color: var(--white);
      font-family: 'Outfit', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: var(--transition);
      letter-spacing: 0.5px;
      margin-top: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .form-submit:hover {
      background: var(--navy-deep);
      color: var(--white);
      box-shadow: 0 6px 24px rgba(26,39,68,0.3);
    }

    /* Map */
    .map-container {
      margin-top: 60px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 3px solid var(--silver-light);
      box-shadow: var(--shadow-sm);
    }
    .map-container iframe {
      width: 100%;
      height: 320px;
      display: block;
      border: none;
    }

    /* ===== FOOTER ===== */
    #footer {
      background: var(--navy-deep);
      padding: 54px 24px 26px;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.45fr .75fr 1fr;
      gap: 72px;
      margin-bottom: 38px;
    }
    .footer-brand .logo-block {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }
    .footer-brand .logo-block img { height: 48px; }
    .footer-brand .brand-txt { font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase; }
    .footer-brand .brand-sub-txt { font-size: 0.62rem; color: var(--accent); letter-spacing: 2.5px; text-transform: uppercase; }
    .footer-brand p {
      font-size: 0.86rem;
      color: var(--silver-dark);
      line-height: 1.75;
      margin-bottom: 24px;
      max-width: 300px;
    }
    .footer-social-block { margin-top: 22px; }
    .footer-social-label { display: block; margin-bottom: 10px; color: var(--accent); font-size: 0.7rem; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }
    .footer-socials { display: flex; gap: 10px; }
    .footer-social {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    .footer-social svg { display: block; width: 18px; height: 18px; fill: var(--silver-mid); transition: var(--transition); }
    .footer-social:hover { background: var(--white); border-color: var(--white); }
    .footer-social:hover svg { fill: var(--navy-deep); }
    .footer-whatsapp { display: inline-flex; margin-top: 16px; color: var(--white); font-weight: 700; font-size: 0.82rem; }
    .footer-whatsapp:hover { color: var(--accent); }
    .footer-col h4 {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: 0.86rem;
      color: var(--silver-dark);
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-links a::before {
      content: '›';
      color: var(--accent);
      font-size: 1rem;
      line-height: 1;
    }
    .footer-links a:hover { color: var(--white); padding-left: 4px; }
    .footer-contact-item {
      display: flex;
      gap: 10px;
      overflow-wrap: anywhere;
      font-size: 0.84rem;
      color: var(--silver-dark);
      margin-bottom: 14px;
      line-height: 1.5;
    }
    .footer-contact-item svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; margin-top: 2px; }
    .footer-contact-item a:hover { color: var(--white); }
    .footer-hours {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 8px;
      padding: 14px 16px;
      font-size: 0.82rem;
      color: var(--silver-mid);
      line-height: 1.8;
      margin-top: 16px;
    }
    .footer-hours strong { color: var(--accent); display: block; margin-bottom: 4px; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; }
    .footer-bottom {
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 0.8rem; color: var(--silver-dark); }
    .footer-bottom .vesi-credit {
      font-size: 0.78rem;
      color: var(--silver-dark);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-bottom .vesi-credit span { color: var(--white); font-weight: 700; }

    /* ===== WHATSAPP FLOAT ===== */
    #whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 58px; height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 24px rgba(37,211,102,0.45);
      transition: var(--transition);
      animation: waBounce 2s ease-in-out infinite;
    }
    #whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
    @keyframes waBounce {
      0%,100% { transform: translateY(0); }
      50%     { transform: translateY(-6px); }
    }
    #whatsapp-float svg { display: block; width: 30px; height: 30px; fill: var(--white); }

    /* ===== MOBILE NAV ===== */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 999;
      background: var(--navy-deep);
      flex-direction: column;
      padding: 24px;
      overflow-y: auto;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 36px;
    }
    .mobile-nav-close {
      background: none;
      border: none;
      color: var(--white);
      font-size: 2rem;
      cursor: pointer;
      line-height: 1;
    }
    .mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
    .mobile-nav-links a {
      padding: 14px 16px;
      font-size: 1.1rem;
      color: var(--silver-mid);
      border-radius: 8px;
      transition: var(--transition);
      font-weight: 500;
    }
    .mobile-nav-links a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
    .mobile-nav-sub {
      padding-left: 16px;
      border-left: 2px solid rgba(255,255,255,0.2);
      margin: 4px 0 4px 30px;
    }
    .mobile-nav-sub a { font-size: 0.92rem; padding: 8px 16px; }

    /* ===== SCROLL TO TOP ===== */
    #scrollTop {
      position: fixed;
      bottom: 96px;
      right: 28px;
      z-index: 998;
      width: 44px; height: 44px;
      background: var(--navy-mid);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
    }
    #scrollTop.visible { opacity: 1; pointer-events: auto; }
    #scrollTop:hover { background: var(--white); border-color: var(--white); }
    #scrollTop svg { width: 18px; height: 18px; fill: var(--white); }
    #scrollTop:hover svg { fill: var(--navy-deep); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .hero-content { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .about-grid { grid-template-columns: 1fr; }
      .about-visual { display: none; }
      .vesi-inner { grid-template-columns: 1fr; }
      .vesi-visual { display: none; }
      .contact-grid { grid-template-columns: 1fr; }
      .showroom-map { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-item.wide { grid-column: span 1; }
      .gallery-item.tall { grid-row: span 1; }
    }
    @media (max-width: 768px) {
      #topbar { overflow: hidden; }
      .topbar-inner { justify-content: center; min-width: 0; padding: 0 16px; }
      .topbar-item { max-width: 100%; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
      .topbar-right { display: none; }
      .topbar-address-full { display: none; }
      .topbar-address-short { display: inline; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-inner { height: 64px; min-width: 0; padding: 0 16px; gap: 12px; }
      .nav-logo { min-width: 0; gap: 8px; }
      .nav-logo img { height: 44px; }
      .nav-logo-text .brand-name { font-size: 1rem; }
      .nav-logo-text .brand-sub { font-size: 0.56rem; letter-spacing: 1.8px; }
      .nav-cta { display: none; }
      section { padding: 60px 20px; }
      .section-inner,
      .hero-content,
      .hero-text,
      .about-content,
      .contact-info,
      .contact-form { width: 100%; min-width: 0; }
      .hero-content { grid-template-columns: minmax(0, 1fr); gap: 0; }
      .hero-badge { max-width: 100%; white-space: normal; }
      .hero-title,
      .section-title,
      .about-content h2,
      .contact-info h2 { overflow-wrap: anywhere; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .form-row { grid-template-columns: 1fr; }
      .hero-stats { flex-wrap: wrap; gap: 20px; }
      .hero-content { padding: 46px 20px 44px; }
    }
    @media (max-width: 480px) {
      .topbar-inner { padding: 0 12px; }
      .topbar-item { font-size: 0.68rem; }
      .hero-content { padding: 42px 18px 44px; }
      .hero-title { font-size: 2.2rem; }
      .section-title { font-size: 2rem; }
      .section-header { margin-bottom: 38px; }
      .section-desc { font-size: 0.94rem; }
      .hero-actions { flex-direction: column; }
      .btn-primary, .btn-outline { width: 100%; justify-content: center; }
      .whyus-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
    }
