*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0a1628;
    --navy-mid: #122040;
    --navy-light: #1e3560;
    --white: #ffffff;
    --off-white: #f5f4f0;
    --accent: #d42b2b;
    --steel: #6b8cae;
    --steel-light: #d4e2ef;
    --text-muted: #8a9bb0;
    --border: #e2e8f0;
  }

  html { scroll-behavior: smooth; font-size: 15px; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
    font-size: 0.93rem;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 24px rgba(10,22,40,0.08); }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--accent); }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }
  .nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
  }
  .nav-links a:hover { opacity: 1; }

  .nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    opacity: 1 !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
  }
  .nav-cta:hover { background: var(--navy-light); }

  /* ── HERO ── */
  #hero {
    min-height: 78vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 72px 0 0;
    overflow: hidden;
  }

  .hero-left {
    padding: 4% 5% 4% 10%;
    display: flex; flex-direction: column; gap: 1.4rem;
  }

  .hero-eyebrow {
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--steel);
    font-weight: 500;
  }
  .hero-eyebrow::before {
    content: '';
    display: block; width: 40px; height: 1px;
    background: var(--accent);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.8vw, 3.6rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--navy);
    letter-spacing: -0.03em;
  }
  .hero-title em { color: var(--accent); font-style: italic; }

  .hero-body {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 420px;
    font-weight: 300;
  }

  .hero-actions {
    display: flex; align-items: center; gap: 1.5rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--navy);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }

  .btn-ghost {
    color: var(--navy);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    display: flex; align-items: center; gap: 0.5rem;
    transition: gap 0.2s;
  }
  .btn-ghost:hover { gap: 0.9rem; }
  .btn-ghost::after { content: '→'; }

  .hero-stats {
    display: flex; gap: 2.5rem; padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .stat-item { display: flex; flex-direction: column; gap: 0.2rem; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--navy); line-height: 1;
  }
  .stat-label {
    font-size: 0.65rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--text-muted);
  }

  .hero-right {
    height: 78vh;
    position: relative;
    background: var(--navy);
    overflow: hidden;
  }

  .hero-right-inner {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #2a5298 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }

  /* Geometric pattern overlay */
  .hero-right-inner::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(200,169,110,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,169,110,0.08) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-scaffold-graphic {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center; gap: 0;
  }

  /* SVG scaffold illustration */
  .scaffold-svg { width: 320px; opacity: 0.9; }

  .hero-badge {
    position: absolute; bottom: 12%; right: 8%;
    background: rgba(200,169,110,0.15);
    border: 1px solid rgba(200,169,110,0.4);
    padding: 1.2rem 1.8rem;
    text-align: center;
    backdrop-filter: blur(8px);
  }
  .hero-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem; color: var(--accent);
    font-weight: 700; line-height: 1;
  }
  .hero-badge-text {
    font-size: 0.7rem; color: rgba(255,255,255,0.7);
    letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.3rem;
  }

  /* ── SECTION COMMON ── */
  section { padding: 5.5rem 10%; }
  .section-tag {
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.72rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--accent);
    font-weight: 600; margin-bottom: 1.2rem;
  }
  .section-tag::before {
    content: ''; display: block;
    width: 30px; height: 1px; background: var(--accent);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.7rem, 2.6vw, 2.6rem);
    font-weight: 600; line-height: 1.1;
    color: var(--navy); letter-spacing: -0.02em;
  }
  .section-body {
    font-size: 0.9rem; line-height: 1.8;
    color: var(--text-muted); font-weight: 300;
    max-width: 560px;
  }

  /* ── ABOUT / COMPANY PROFILE ── */
  #about {
    background: var(--off-white);
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
    align-items: center;
  }

  .about-image-block {
    position: relative;
  }
  .about-img-main {
    width: 100%; aspect-ratio: 4/5;
    background: var(--navy);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
  }
  .about-img-main::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy-light), var(--steel));
    opacity: 0.85;
  }
  .about-img-main-inner {
    position: absolute; inset: 0; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
  }

  .about-floater {
    position: absolute; bottom: -2rem; right: -2rem;
    background: var(--accent);
    padding: 2rem; text-align: center;
    min-width: 160px;
  }
  .about-floater-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 700;
    color: var(--white); line-height: 1;
  }
  .about-floater-text {
    font-size: 0.7rem; color: rgba(255,255,255,0.85);
    letter-spacing: 0.15em; text-transform: uppercase;
    margin-top: 0.4rem;
  }

  .about-content { display: flex; flex-direction: column; gap: 1.8rem; }

  .about-values {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
    margin-top: 0.5rem;
  }
  .value-card {
    border: 1px solid var(--border);
    background: var(--white);
    padding: 1.2rem 1.4rem;
    border-radius: 2px;
  }
  .value-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }
  .value-title { font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
  .value-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

  /* ── PRODUCTS ── */
  #products { background: var(--white); }
  .products-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem;
  }
  .products-intro { max-width: 480px; display: flex; flex-direction: column; gap: 1rem; text-align: left; align-items: flex-start; }
  .products-intro .section-tag { justify-content: flex-start; text-align: left; }
  .products-intro .section-title { text-align: left; }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1.5px solid var(--border);
  }

  .product-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.3s;
  }
  .product-card:hover { background: var(--navy); }
  .product-card:hover .product-name,
  .product-card:hover .product-desc,
  .product-card:hover .product-feature { color: rgba(255,255,255,0.85); }
  .product-card:hover .product-num { color: rgba(255,255,255,0.15); }
  .product-card:hover .product-icon-wrap { background: rgba(200,169,110,0.15); border-color: rgba(200,169,110,0.3); }
  .product-card:hover .product-icon-wrap svg { stroke: var(--accent); }
  .product-card:hover .product-tag { background: rgba(200,169,110,0.2); color: var(--accent); }

  .product-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem; font-weight: 700;
    color: rgba(10,22,40,0.05);
    position: absolute; top: 1rem; right: 1.5rem;
    line-height: 1; transition: color 0.3s;
  }
  .product-icon-wrap {
    width: 52px; height: 52px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    border-radius: 2px; margin-bottom: 1.5rem;
    transition: all 0.3s;
  }
  .product-icon-wrap svg { stroke: var(--navy); transition: stroke 0.3s; }

  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.7rem;
    transition: color 0.3s;
  }
  .product-desc {
    font-size: 0.78rem; color: var(--text-muted);
    line-height: 1.7; margin-bottom: 1.2rem;
    transition: color 0.3s;
  }
  .product-features { display: flex; flex-direction: column; gap: 0.3rem; }
  .product-feature {
    font-size: 0.75rem; color: var(--text-muted);
    display: flex; align-items: center; gap: 0.5rem;
    transition: color 0.3s;
  }
  .product-feature::before {
    content: ''; display: block;
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0;
  }
  .product-tag {
    display: inline-block; margin-top: 1.2rem;
    background: var(--steel-light); color: var(--steel);
    font-size: 0.68rem; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 0.3rem 0.8rem;
    border-radius: 1px; font-weight: 500;
    transition: all 0.3s;
  }

  /* Product list table styles */
  .product-list-wrap {
    margin-top: 2rem;
    border: 1.5px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    width: 100%;
  }
  .product-list-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0;
    background: var(--border);
    width: 100%;
  }
  .product-category {
    background: var(--white);
    padding: 1.8rem 1.6rem;
    border-right: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
    transition: background 0.25s;
    min-width: 0;
    overflow: hidden;
  }
  .product-category:hover { background: var(--off-white); }
  .product-category:nth-child(3n) { border-right: none; }

  .cat-header {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--border);
  }
  .cat-icon {
    width: 34px; height: 34px;
    background: var(--navy); border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cat-icon svg { stroke: var(--accent); }
  .cat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--navy); line-height: 1.2;
  }
  .cat-count {
    font-size: 0.68rem; color: var(--text-muted);
    letter-spacing: 0.1em; text-transform: uppercase;
  }
  .cat-items { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
  .cat-items li {
    font-size: 0.8rem; color: var(--text-muted);
    display: flex; align-items: center; gap: 0.5rem;
    line-height: 1.5;
  }
  .cat-items li::before {
    content: '';
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0;
  }

  .product-list-footer {
    background: var(--navy);
    padding: 1.2rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
  }
  .product-list-footer-text {
    font-size: 0.8rem; color: rgba(255,255,255,0.6);
  }
  .product-list-footer-text strong { color: var(--accent); }

  /* ── CLIENTS ── */
  #clients {
    background: var(--navy);
    color: var(--white);
  }
  .clients-header { text-align: center; margin-bottom: 4rem; }
  .clients-header .section-tag { justify-content: center; color: var(--accent); }
  .clients-header .section-tag::before { background: var(--accent); }
  .clients-header .section-title { color: var(--white); }

  .clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 4rem;
  }
  .client-cell {
    background: var(--navy);
    padding: 2rem 1.5rem;
    display: flex; flex-direction: column; align-items: center;
    gap: 0.8rem; text-align: center;
    transition: background 0.3s;
  }
  .client-cell:hover { background: var(--navy-light); }
  .client-logo-placeholder {
    width: 64px; height: 64px;
    border: 1px solid rgba(200,169,110,0.3);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; color: var(--accent); font-weight: 700;
  }
  .client-name { font-size: 0.78rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
  .client-sector { font-size: 0.67rem; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; text-transform: uppercase; }

  .clients-testimonial {
    max-width: 680px; margin: 0 auto; text-align: center;
    padding: 3rem;
    border: 1px solid rgba(200,169,110,0.2);
    position: relative;
  }
  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; color: var(--white);
    line-height: 1.6; font-weight: 300; font-style: italic;
    margin-bottom: 1.5rem;
  }
  .testimonial-quote::before {
    content: '"';
    font-size: 5rem; color: var(--accent);
    opacity: 0.3; position: absolute;
    top: 0.5rem; left: 1.5rem; line-height: 1;
    font-family: 'Cormorant Garamond', serif;
  }
  .testimonial-author { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; }

  /* ── CONTACT ── */
  #contact {
    background: var(--off-white);
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
  }

  .contact-left { display: flex; flex-direction: column; gap: 1.5rem; }
  .contact-info { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 0.5rem; }
  .contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
  }
  .contact-item-icon {
    width: 36px; height: 36px;
    background: var(--navy); border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .contact-item-icon svg { stroke: var(--accent); }
  .contact-item-label { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.2rem; }
  .contact-item-value { font-size: 0.9rem; color: var(--navy); font-weight: 500; }
  .contact-item-value a { color: var(--navy); text-decoration: none; }
  .contact-item-value a:hover { color: var(--accent); }

  .contact-right {}
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); font-weight: 500; }
  .form-input, .form-select, .form-textarea {
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--navy);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--navy); }
  .form-textarea { min-height: 120px; resize: vertical; }
  .form-submit {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s;
    width: 100%;
  }
  .form-submit:hover { background: var(--navy-light); }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    padding: 4rem 10% 2rem;
    color: rgba(255,255,255,0.6);
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .nav-logo { display: block; margin-bottom: 1rem; }
  .footer-tagline { font-size: 0.82rem; line-height: 1.7; max-width: 260px; }
  .footer-col-title { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); font-weight: 600; margin-bottom: 1.2rem; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--accent); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem; flex-wrap: wrap; gap: 1rem;
  }
  .footer-copy { font-size: 0.75rem; }
  .footer-legal { display: flex; gap: 1.5rem; }
  .footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-decoration: none; }

  /* Product list table styles */
  .product-list-wrap {
    margin-top: 2rem;
    border: 1.5px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    width: 100%;
  }
  .product-list-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    background: var(--border);
    gap: 1.5px;
    width: 100%;
  }
  .product-category {
    background: var(--white);
    padding: 1.8rem 1.6rem;
    transition: background 0.25s;
    min-width: 0;
    overflow: hidden;
  }
  .product-category:hover { background: var(--off-white); }
  .cat-header {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 1.1rem; padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--border);
  }
  .cat-icon {
    width: 34px; height: 34px;
    background: var(--navy); border-radius: 2px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .cat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 700; color: var(--navy); line-height: 1.2;
  }
  .cat-count { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
  .cat-items { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
  .cat-items li {
    font-size: 0.8rem; color: var(--text-muted);
    display: flex; align-items: center; gap: 0.5rem; line-height: 1.5;
  }
  .cat-items li::before {
    content: ''; width: 4px; height: 4px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0;
  }
  .product-list-footer {
    background: var(--navy);
    padding: 1.2rem 2rem;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  }
  .product-list-footer-text { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
  .product-list-footer-text strong { color: var(--accent); }

  /* ── DIVIDER BAR ── */

  .divider-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--accent), var(--steel));
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp 0.7s ease forwards; }
  .delay-1 { animation-delay: 0.15s; opacity: 0; }
  .delay-2 { animation-delay: 0.3s; opacity: 0; }
  .delay-3 { animation-delay: 0.45s; opacity: 0; }
  .delay-4 { animation-delay: 0.6s; opacity: 0; }

  /* ── RESPONSIVE ── */
  /* ══════════════════════════════
     RESPONSIVE — TABLET (≤900px)
  ══════════════════════════════ */
  @media (max-width: 900px) {
    body { overflow-x: hidden; }
    #hero { grid-template-columns: 1fr; min-height: auto; padding-top: 60px; }
    .hero-right { display: none; }
    .hero-left { padding: 2.5rem 6% 3rem; gap: 1.2rem; }
    .globe3d-wrap { width: 90px; height: 90px; }
    .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
    .hero-stats { gap: 1.5rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .btn-primary { width: 100%; text-align: center; padding: 1rem; }

    #about { grid-template-columns: 1fr; gap: 2rem; }
    .about-image-block { display: none; }
    .about-values { grid-template-columns: 1fr 1fr; }

    .products-header { flex-direction: column; gap: 0.8rem; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 1px; }

    .clients-grid { grid-template-columns: 1fr 1fr; }
    .clients-testimonial { padding: 2rem 1.5rem; }

    #contact { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

    nav { padding: 0 4%; height: 60px; }
    .nav-links { display: none; }
    .nav-logo-img svg { width: 120px; height: 36px; }
    .nav-hamburger { display: flex; }
  }

  /* ══════════════════════════════
     RESPONSIVE — MOBILE (≤600px)
  ══════════════════════════════ */
  @media (max-width: 600px) {
    *, *::before, *::after { box-sizing: border-box; }
    html { font-size: 13px; overflow-x: hidden; }
    body { overflow-x: hidden; width: 100%; }

    section { padding: 3rem 5%; width: 100%; }
    nav { height: 60px; padding: 0 4%; }
    nav.scrolled { box-shadow: 0 2px 12px rgba(10,22,40,0.1); }

    /* Hero */
    #hero { padding-top: 60px; }
    .hero-left { padding: 2rem 5% 2.5rem; gap: 1rem; width: 100%; }
    .globe3d-wrap { width: 70px; height: 70px; }
    .hero-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
    .hero-eyebrow { font-size: 0.63rem; gap: 0.6rem; }
    .hero-body { font-size: 0.82rem; max-width: 100%; }
    .hero-stats { gap: 1rem; flex-wrap: wrap; padding-top: 0.8rem; }
    .stat-num { font-size: 1.3rem; }
    .stat-label { font-size: 0.58rem; }
    .btn-primary { font-size: 0.78rem; padding: 0.85rem; }
    .btn-ghost { font-size: 0.78rem; }
    .hero-actions { gap: 0.8rem; width: 100%; }

    /* Divider bar */
    .divider-bar { height: 2px; }

    /* About */
    #about { padding: 3rem 5%; }
    .about-values { grid-template-columns: 1fr; gap: 0.8rem; }
    .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }
    .section-body { font-size: 0.83rem; max-width: 100%; }
    .about-content { gap: 1.2rem; }

    /* Products */
    #products { padding: 3rem 5%; }
    .products-header { gap: 0.6rem; margin-bottom: 2rem; }
    .products-grid { grid-template-columns: 1fr; gap: 1px; }
    .product-card { padding: 1.5rem 1.2rem; }
    .product-name { font-size: 1.1rem; }
    .product-num { font-size: 3rem; }

    /* Clients */
    #clients { padding: 3rem 5%; }
    .clients-header { margin-bottom: 2rem; }
    .clients-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
    .client-cell { padding: 1rem 0.6rem; }
    .client-logo-placeholder { width: 40px; height: 40px; font-size: 0.9rem; }
    .client-name { font-size: 0.68rem; }
    .clients-testimonial { padding: 1.5rem 1rem; }
    .testimonial-quote { font-size: 0.95rem; }
    .testimonial-quote::before { font-size: 3rem; top: 0.2rem; left: 0.8rem; }

    /* Contact info bar */
    #contact { padding: 3rem 5%; }
    .contact-item { flex-direction: row; gap: 0.8rem; padding: 0.9rem 1rem; }
    .contact-item-value { font-size: 0.82rem; }

    /* Quote/Enquiry inline form */
    .qmodal-head { padding: 1rem 1.2rem; }
    .qmodal-head-title { font-size: 1.1rem; }
    .qmodal-body { padding: 1rem 1.2rem; }
    .qmodal-foot { padding: 0.8rem 1.2rem; flex-wrap: wrap; gap: 0.6rem; }
    .qbtn-next, .qbtn-submit { width: 100%; text-align: center; padding: 0.85rem; }
    .qbtn-back { width: 100%; text-align: center; }
    .q-grid-2, .q-grid-3 { grid-template-columns: 1fr; gap: 0.7rem; }
    .q-section-title { font-size: 1.05rem; }
    .qtotal-bar { padding: 0.8rem 1.2rem; flex-direction: column; gap: 0.4rem; }
    .qtotal-items { gap: 0.8rem; flex-wrap: wrap; }
    .qtotal-val { font-size: 1.1rem; }
    .qmodal-steps { overflow-x: auto; }
    .qstep { padding: 0.7rem 0.8rem; font-size: 0.68rem; gap: 0.4rem; white-space: nowrap; }

    /* Product rows in form */
    .prod-item-row { grid-template-columns: 1fr 1fr; gap: 0.4rem; padding: 0.5rem 0; }
    .prod-item-head { display: none; }
    .prod-item-name { font-size: 0.78rem; }
    .prod-item-total { text-align: right; font-size: 0.78rem; }
    .prod-cat-head { padding: 0.6rem 1rem; }
    .prod-cat-body { padding: 0.8rem 1rem; }

    /* Quote modal (popup) */
    .qmodal-overlay { padding: 0; align-items: flex-end; }
    .qmodal { border-radius: 12px 12px 0 0; max-height: 94vh; }

    /* Legal modal */
    .legal-overlay { padding: 0; align-items: flex-end; }
    .legal-box { border-radius: 12px 12px 0 0; max-height: 90vh; }
    .legal-body { padding: 1.2rem; font-size: 0.8rem; }
    .legal-head { padding: 1rem 1.2rem; }

    /* Footer */
    footer { padding: 3rem 5% 1.5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 1.5rem; padding-bottom: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.6rem; padding-top: 1.2rem; }
    .footer-brand .nav-logo-img svg { width: 110px; height: 33px; }
    .footer-tagline { font-size: 0.78rem; max-width: 100%; }
    .footer-copy { font-size: 0.7rem; }
    .footer-legal a { font-size: 0.7rem; }

    /* Mobile nav menu */
    .nav-mobile-menu { top: 60px; padding: 1rem 5%; }
  }

  /* ══════════════════════════════
     HAMBURGER MENU
  ══════════════════════════════ */
  .nav-hamburger {
    display: none;
    flex-direction: column; justify-content: center;
    gap: 5px; cursor: pointer; padding: 6px;
    background: none; border: none;
  }
  .nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--navy); border-radius: 2px;
    transition: all 0.3s;
  }
  .nav-mobile-menu {
    display: none;
    position: fixed; top: 60px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--accent);
    padding: 1.2rem 6%;
    flex-direction: column; gap: 0;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(10,22,40,0.12);
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem; font-weight: 500;
    color: var(--navy); text-decoration: none;
    letter-spacing: 0.05em;
  }
  .nav-mobile-menu a:last-child { border-bottom: none; }
  .nav-mobile-menu a.mobile-cta {
    margin-top: 0.8rem;
    background: var(--navy); color: var(--white);
    text-align: center; padding: 0.9rem;
    border-radius: 2px; border: none;
  }

  /* ── QUOTE MODAL ── */
  .qmodal-overlay {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(10,22,40,0.7);
    backdrop-filter: blur(6px);
    display: none; align-items: flex-start; justify-content: center;
    overflow-y: auto; padding: 2rem 1rem;
  }
  .qmodal-overlay.open { display: flex; }

  .qmodal {
    background: var(--white);
    width: 100%; max-width: 900px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin: auto;
  }

  .qmodal-head {
    background: var(--navy);
    padding: 1.8rem 2.5rem;
    display: flex; align-items: center; justify-content: space-between;
  }
  .qmodal-head-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem; color: var(--white); font-weight: 600;
  }
  .qmodal-head-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }
  .qmodal-close {
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,0.6); font-size: 1.4rem; line-height: 1;
    transition: color 0.2s;
  }
  .qmodal-close:hover { color: var(--white); }

  .qmodal-steps {
    display: flex; background: var(--off-white);
    border-bottom: 1px solid var(--border);
  }
  .qstep {
    flex: 1; padding: 1rem 1.5rem;
    display: flex; align-items: center; gap: 0.8rem;
    font-size: 0.78rem; font-weight: 500;
    color: var(--text-muted); cursor: default;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
  }
  .qstep.active { color: var(--navy); border-bottom-color: var(--accent); }
  .qstep.done { color: var(--accent); }
  .qstep-num {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--border); color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
    transition: all 0.2s;
  }
  .qstep.active .qstep-num { background: var(--navy); color: var(--white); }
  .qstep.done .qstep-num { background: var(--accent); color: var(--white); }

  .qmodal-body { padding: 2rem 2.5rem; }
  .qstep-panel { display: none; }
  .qstep-panel.active { display: block; }

  .q-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; color: var(--navy); font-weight: 600;
    margin-bottom: 1.2rem; padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
  }

  .q-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .q-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .q-full { margin-bottom: 1rem; }

  .q-label {
    display: block; font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--navy); margin-bottom: 0.4rem;
  }
  .q-label span { color: #c0392b; }

  .q-input, .q-select, .q-textarea {
    width: 100%; padding: 0.75rem 1rem;
    border: 1px solid var(--border); border-radius: 2px;
    font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
    color: var(--navy); background: var(--white);
    outline: none; transition: border-color 0.2s;
  }
  .q-input:focus, .q-select:focus, .q-textarea:focus { border-color: var(--navy); }
  .q-input.invalid, .q-select.invalid { border-color: #c0392b; }

  .q-phone-wrap { display: flex; align-items: stretch; }
  .q-phone-prefix {
    padding: 0.75rem 0.9rem;
    background: var(--off-white); border: 1px solid var(--border);
    border-right: none; border-radius: 2px 0 0 2px;
    font-size: 0.88rem; color: var(--navy); font-weight: 600;
    white-space: nowrap; display: flex; align-items: center;
  }
  .q-phone-wrap .q-input { border-radius: 0 2px 2px 0; }

  /* Category multi-select dropdown */
  .cat-dropdown-wrap { position: relative; margin-bottom: 1.5rem; }
  .cat-dropdown-btn {
    width: 100%; padding: 0.75rem 1rem;
    border: 1px solid var(--border); border-radius: 2px;
    background: var(--white); cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--navy);
    transition: border-color 0.2s;
  }
  .cat-dropdown-btn:hover, .cat-dropdown-btn.open { border-color: var(--navy); }
  .cat-dropdown-btn span { flex: 1; text-align: left; }
  .cat-dropdown-arrow { transition: transform 0.2s; font-size: 0.7rem; }
  .cat-dropdown-btn.open .cat-dropdown-arrow { transform: rotate(180deg); }

  .cat-dropdown-list {
    display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0;
    background: var(--white); border: 1px solid var(--navy);
    border-radius: 2px; z-index: 10; max-height: 280px; overflow-y: auto;
    box-shadow: 0 8px 24px rgba(10,22,40,0.12);
  }
  .cat-dropdown-list.open { display: block; }
  .cat-chk-item {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.65rem 1rem; cursor: pointer;
    transition: background 0.15s;
  }
  .cat-chk-item:hover { background: var(--off-white); }
  .cat-chk-item input[type="checkbox"] {
    width: 16px; height: 16px; accent-color: var(--navy); flex-shrink: 0;
  }
  .cat-chk-label { font-size: 0.85rem; color: var(--navy); }
  .cat-chk-count { font-size: 0.72rem; color: var(--text-muted); margin-left: auto; }

  .cat-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; min-height: 0; }
  .cat-chip {
    background: var(--navy); color: var(--white);
    padding: 0.3rem 0.8rem; border-radius: 2px;
    font-size: 0.75rem; display: flex; align-items: center; gap: 0.4rem;
  }
  .cat-chip-x { cursor: pointer; opacity: 0.7; }
  .cat-chip-x:hover { opacity: 1; }

  /* Product selection cards */
  .prod-cat-card {
    border: 1px solid var(--border); border-radius: 2px;
    margin-bottom: 1rem; overflow: hidden;
  }
  .prod-cat-head {
    background: var(--navy); padding: 0.8rem 1.2rem;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer;
  }
  .prod-cat-head-name {
    font-size: 0.85rem; font-weight: 600; color: var(--white);
    letter-spacing: 0.05em;
  }
  .prod-cat-head-toggle { color: var(--accent); font-size: 0.7rem; }

  .prod-cat-body { padding: 1rem 1.2rem; display: none; }
  .prod-cat-body.open { display: block; }

  .prod-item-row {
    display: grid; grid-template-columns: 2fr 1.5fr 1fr 1.2fr;
    gap: 0.7rem; align-items: center;
    padding: 0.6rem 0; border-bottom: 1px solid var(--border);
  }
  .prod-item-row:last-child { border-bottom: none; }
  .prod-item-name { font-size: 0.82rem; color: var(--navy); font-weight: 500; }
  .prod-item-rate { font-size: 0.75rem; color: var(--text-muted); text-align: center; }
  .prod-item-total { font-size: 0.82rem; color: var(--accent); font-weight: 600; text-align: right; }
  .prod-item-head {
    display: grid; grid-template-columns: 2fr 1.5fr 1fr 1.2fr;
    gap: 0.7rem; padding: 0.4rem 0; margin-bottom: 0.3rem;
    border-bottom: 2px solid var(--border);
  }
  .prod-item-head span { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
  .prod-item-head span:last-child { text-align: right; }
  .prod-item-head span:nth-child(3) { text-align: center; }

  /* Running total bar */
  .qtotal-bar {
    background: var(--off-white); border-top: 1px solid var(--border);
    padding: 1.2rem 2.5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    position: sticky; bottom: 0;
  }
  .qtotal-items { display: flex; gap: 2rem; flex-wrap: wrap; }
  .qtotal-item { display: flex; flex-direction: column; gap: 0.2rem; }
  .qtotal-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
  .qtotal-val { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--navy); font-weight: 700; }
  .qtotal-val.warning { color: #c0392b; }

  .qmodal-foot {
    background: var(--white); border-top: 1px solid var(--border);
    padding: 1.2rem 2.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  }
  .qbtn-back {
    background: none; border: 1px solid var(--border);
    padding: 0.75rem 1.8rem; border-radius: 2px;
    font-family: 'DM Sans', sans-serif; font-size: 0.82rem;
    letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
    transition: all 0.2s; color: var(--navy);
  }
  .qbtn-back:hover { border-color: var(--navy); }
  .qbtn-next, .qbtn-submit {
    background: var(--navy); color: var(--white);
    border: none; padding: 0.75rem 2rem; border-radius: 2px;
    font-family: 'DM Sans', sans-serif; font-size: 0.82rem;
    letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
    transition: background 0.2s;
  }
  .qbtn-next:hover, .qbtn-submit:hover { background: var(--navy-light); }
  .qbtn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

  .qmin-warn {
    background: #fff3cd; border: 1px solid #ffc107;
    padding: 0.7rem 1rem; border-radius: 2px;
    font-size: 0.8rem; color: #856404; margin-bottom: 1rem;
    display: none;
  }
  .qmin-warn.visible { display: block; }
  .qsuccess-msg {
    text-align: center; padding: 3rem 2rem; display: none;
  }
  .qsuccess-msg.visible { display: block; }
  .qsuccess-icon { font-size: 3rem; margin-bottom: 1rem; }
  .qsuccess-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; color: var(--navy); margin-bottom: 0.5rem;
  }
  .qsuccess-body { font-size: 0.9rem; color: var(--text-muted); }

  /* ── 3D GLOBE LOGO ── */
  .globe3d-wrap {
    width: 130px; height: 130px;
    position: relative; flex-shrink: 0;
  }
  .globe3d-wrap svg { width: 100%; height: 100%; }
  @keyframes globeFloat {
    0%,100% { transform: translateY(0px); filter: drop-shadow(0 10px 24px rgba(10,22,40,0.28)); }
    50%      { transform: translateY(-6px); filter: drop-shadow(0 18px 32px rgba(10,22,40,0.18)); }
  }
  .globe3d-wrap { animation: globeFloat 4s ease-in-out infinite; }

  /* ── HERO SLIDESHOW ── */
  .hero-slideshow { width:100%;height:100%;position:relative;overflow:hidden; }
  .hslide { position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity 1.2s ease; }
  .hslide.active { opacity:1; }
  .hslide-dots { position:absolute;bottom:1.5rem;right:2rem;display:flex;gap:0.5rem;z-index:2; }
  .hdot { width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,0.4);cursor:pointer;transition:background 0.3s,transform 0.3s; }
  .hdot.active { background:var(--accent);transform:scale(1.3); }

  /* ── LEGAL MODAL ── */
  .legal-overlay{position:fixed;inset:0;z-index:200;background:rgba(10,22,40,0.75);backdrop-filter:blur(6px);display:none;align-items:center;justify-content:center;padding:2rem;}
  .legal-overlay.open{display:flex;}
  .legal-box{background:var(--white);max-width:700px;width:100%;max-height:85vh;border-radius:4px;overflow:hidden;display:flex;flex-direction:column;}
  .legal-head{background:var(--navy);padding:1.4rem 2rem;display:flex;align-items:center;justify-content:space-between;flex-shrink:0;}
  .legal-head-title{font-family:'Cormorant Garamond',serif;font-size:1.4rem;color:var(--white);font-weight:600;}
  .legal-close{background:none;border:none;color:rgba(255,255,255,0.6);font-size:1.3rem;cursor:pointer;}
  .legal-close:hover{color:var(--white);}
  .legal-body{padding:2rem;overflow-y:auto;font-size:0.85rem;line-height:1.8;color:#444;}
  .legal-body h3{font-family:'Cormorant Garamond',serif;font-size:1.1rem;color:var(--navy);font-weight:600;margin:1.4rem 0 0.5rem;}
  .legal-body h3:first-child{margin-top:0;}
  .legal-body p{margin-bottom:0.8rem;}
  .legal-body table{width:100%;border-collapse:collapse;margin:0.8rem 0;}
  .legal-body table td{padding:0.5rem 0.8rem;border:1px solid #e2e8f0;font-size:0.82rem;vertical-align:top;}
  .legal-body table td:first-child{font-weight:600;background:#f5f4f0;width:38%;}

/* ══════════════════════════════
   MOBILE PRODUCT FIX (max 600px)
══════════════════════════════ */
@media (max-width: 600px) {
  html, body { overflow-x: hidden !important; max-width: 100% !important; }

  section { overflow: hidden !important; max-width: 100% !important; }

  .product-list-categories {
    grid-template-columns: 1fr !important;
  }
  .product-category {
    border-right: none !important;
    padding: 1.2rem 1rem !important;
  }
  .product-category:nth-child(3n) { border-right: none !important; }

  .section-title {
    font-size: 1.4rem !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .products-header {
    flex-direction: column !important;
    gap: 0.5rem !important;
    align-items: flex-start !important;
  }
  .products-header .section-body {
    max-width: 100% !important;
    text-align: left !important;
  }
  .products-intro {
    align-items: flex-start !important;
    text-align: left !important;
  }
  .products-intro .section-tag {
    justify-content: flex-start !important;
  }
  .products-intro .section-title {
    text-align: left !important;
  }

  #products {
    padding: 3rem 4% !important;
    overflow: hidden !important;
  }
}

@media (max-width: 900px) {
  .product-list-categories {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .product-category:nth-child(3n) { border-right: 1.5px solid var(--border) !important; }
  .product-category:nth-child(2n) { border-right: none !important; }
}

/* ── CLIENT LOGOS ── */
.client-cell {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.2rem 1rem !important;
  min-height: 80px !important;
  max-height: 80px !important;
  overflow: hidden !important;
}
.client-logo-img {
  max-width: 90px !important;
  max-height: 45px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: filter 0.3s, opacity 0.3s;
}
.client-cell:hover .client-logo-img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ── HIDE TOTALS UNTIL PDF GENERATED ── */
.qtotal-val,
.qtotal-label { visibility: hidden; }
.qtotal-item:last-child .qtotal-val,
.qtotal-item:last-child .qtotal-label { visibility: visible; }
.prod-item-total { display: none !important; }


.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.in-view {
  opacity: 1;
  transform: scale(1);
}



/* ════════════════════════════════
   PREMIUM CONTACT SECTION
════════════════════════════════ */
.contact-premium {
  padding: 6rem 10%;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.contact-premium::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-header .section-tag { color: var(--accent); }
.contact-header .section-title { color: var(--white); }
.contact-header .section-body { color: rgba(255,255,255,0.55); }
.contact-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}
.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.contact-meta-item:hover { color: var(--accent); }
.contact-meta-dot { color: rgba(255,255,255,0.25); font-size: 1.2rem; }
.contact-form-wrap {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  max-width: 860px;
  margin: 0 auto;
}

/* ════════════════════════════════
   PREMIUM NAV ENHANCEMENTS
════════════════════════════════ */
nav {
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
}
nav.scrolled {
  box-shadow: 0 4px 30px rgba(10,22,40,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

/* ════════════════════════════════
   PREMIUM HERO ENHANCEMENTS
════════════════════════════════ */
.hero-title em {
  font-style: italic;
  color: var(--accent);
  position: relative;
}
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn-primary:hover::after { transform: translateX(0); }

/* ════════════════════════════════
   PREMIUM PRODUCT CARDS
════════════════════════════════ */
.product-category {
  transition: background 0.25s ease, transform 0.2s ease;
}
.product-category:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

/* ════════════════════════════════
   PREMIUM VALUE CARDS
════════════════════════════════ */
.value-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,22,40,0.12);
  border-color: rgba(200,169,110,0.2);
}

/* ════════════════════════════════
   SMOOTH SCROLL
════════════════════════════════ */
html { scroll-behavior: smooth; }

/* ════════════════════════════════
   SECTION FADE-IN ENHANCED
════════════════════════════════ */

.scroll-fade.delay-1 { transition-delay: 0.12s; }
.scroll-fade.delay-2 { transition-delay: 0.24s; }
.scroll-fade.delay-3 { transition-delay: 0.36s; }
.scroll-fade.delay-4 { transition-delay: 0.5s; }
.scroll-fade.visible  { opacity: 1; transform: translateY(0); }

.scroll-left.visible { opacity: 1; transform: translateX(0); }

.scroll-right.visible { opacity: 1; transform: translateX(0); }

@media (max-width: 600px) {
  .contact-premium { padding: 4rem 5%; }
  .contact-form-wrap { border-radius: 6px; }
}

/* ════════════════════════════════
   SCROLL ANIMATIONS — SAFE
   Elements visible by default.
   JS adds js-ready to body, then
   scroll-fade becomes invisible
   until scrolled into view.
════════════════════════════════ */
body.js-ready .scroll-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
body.js-ready .scroll-fade.delay-1 { transition-delay: 0.12s; }
body.js-ready .scroll-fade.delay-2 { transition-delay: 0.24s; }
body.js-ready .scroll-fade.delay-3 { transition-delay: 0.36s; }
body.js-ready .scroll-fade.delay-4 { transition-delay: 0.5s; }
.scroll-fade.visible,
body.js-ready .scroll-fade.visible { opacity: 1 !important; transform: translateY(0) !important; }

body.js-ready .scroll-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
body.js-ready .scroll-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.scroll-left.visible,
body.js-ready .scroll-left.visible { opacity: 1 !important; transform: translateX(0) !important; }
.scroll-right.visible,
body.js-ready .scroll-right.visible { opacity: 1 !important; transform: translateX(0) !important; }

/* ════════════════════════════════════════════════
   MOBILE RESPONSIVE — scaffworld.net
   Full overhaul for ≤768px and ≤480px
════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── GLOBAL ── */
  html, body { overflow-x: hidden !important; }
  section { padding-left: 5% !important; padding-right: 5% !important; }

  /* ── HERO ── */
  #hero {
    display: flex !important;
    flex-direction: column !important;
    padding: 5rem 5% 3rem !important;
    min-height: auto !important;
  }
  .hero-left  { order: 2; padding: 1.5rem 0 0 !important; }
  .hero-right { order: 1; width: 100% !important; height: 280px !important; border-radius: 8px !important; }
  .hero-right-inner { height: 280px !important; border-radius: 8px !important; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem) !important; }
  .hero-body  { font-size: 0.9rem !important; }
  .hero-actions { flex-direction: column !important; gap: 0.8rem !important; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100% !important; text-align: center !important; justify-content: center !important; }
  .hero-stats { flex-direction: row !important; flex-wrap: wrap !important; gap: 1rem !important; margin-top: 1.5rem !important; }
  .hero-stat  { flex: 1; min-width: 80px !important; }
  .hero-badge { display: none !important; }

  /* ── ABOUT ── */
  #about {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    padding: 4rem 5% !important;
  }
  .about-image-block { width: 100% !important; height: 260px !important; }
  .about-img-main    { height: 260px !important; }
  .about-img-main-inner { border-radius: 6px !important; }
  .about-floater     { bottom: -10px !important; right: -10px !important; padding: 0.8rem 1rem !important; }
  .about-values      { grid-template-columns: 1fr 1fr !important; gap: 0.8rem !important; }
  .value-card        { padding: 1rem !important; }

  /* ── PRODUCTS ── */
  #products { padding: 4rem 5% !important; }
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0 !important; }
  .product-category { padding: 1rem !important; }
  .product-list-categories { grid-template-columns: 1fr !important; }

  /* ── CLIENTS ── */
  #clients { padding: 4rem 5% !important; }
  .clients-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .client-cell  { padding: 1rem !important; min-height: 70px !important; }

  /* ── QUOTE / CONTACT ── */
  #quote, #contact { padding: 4rem 5% !important; }
  .quote-two-col  {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .form-row { grid-template-columns: 1fr !important; }
  .quote-form-panel { padding: 1.5rem 1.2rem !important; }
  .quote-side { display: none !important; }

  /* ── FOOTER ── */
  footer { padding: 3rem 5% 1.5rem !important; }
  .footer-grid, .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .footer-bottom { flex-direction: column !important; gap: 0.8rem !important; text-align: center !important; }
  .footer-legal  { flex-wrap: wrap !important; justify-content: center !important; gap: 0.8rem !important; }

  /* ── MODALS ── */
  .modal-overlay .modal-box,
  .modal-box { width: 95vw !important; max-height: 90vh !important; overflow-y: auto !important; padding: 1.5rem !important; }

  /* ── SECTION TITLES ── */
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
  .section-tag   { font-size: 0.65rem !important; }

  /* ── QUOTE MODAL ── */
  .quote-modal-inner,
  .quote-modal-box { width: 95vw !important; margin: 1rem auto !important; padding: 1.2rem !important; max-height: 92vh !important; overflow-y: auto !important; }
  .quote-step-header { font-size: 0.85rem !important; }
  .quote-products-grid { grid-template-columns: 1fr !important; }

  /* ── STATS BAR ── */
  .stats-bar, .hero-stats-bar {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.8rem 1.5rem !important;
    padding: 1.2rem 5% !important;
  }
  .stat-divider { display: none !important; }
}

@media (max-width: 480px) {

  /* ── HERO ── */
  .hero-title { font-size: 1.9rem !important; }
  .hero-right { height: 220px !important; }
  .hero-right-inner { height: 220px !important; }

  /* ── ABOUT ── */
  .about-values { grid-template-columns: 1fr !important; }

  /* ── PRODUCTS ── */
  .products-grid { grid-template-columns: 1fr !important; }

  /* ── CLIENTS ── */
  .clients-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* ── TYPOGRAPHY ── */
  .section-title { font-size: 1.4rem !important; }
  body { font-size: 0.88rem !important; }

  /* ── NAV ── */
  nav { padding: 0 4% !important; }
  .nav-logo-text { font-size: 1rem !important; }

  /* ── BUTTONS ── */
  .btn-primary, .btn-secondary { font-size: 0.82rem !important; padding: 0.7rem 1.4rem !important; }
}

/* ════════════════════════════════════════════════
   MOBILE FIXES — TARGETED (from screenshots)
════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Contact section inline padding override ── */
  section#contact,
  #contact {
    padding: 3rem 5% !important;
  }

  /* ── Contact header & meta ── */
  #contact > div:first-child {
    margin-bottom: 1.5rem !important;
  }
  #contact .section-title {
    font-size: 1.6rem !important;
  }

  /* ── Inline form box ── */
  #contact > div[style*="max-width:920px"],
  #contact > div[style*="max-width: 920px"] {
    margin: 0 !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 20px rgba(10,22,40,0.08) !important;
  }

  /* ── qmodal body grids → single col ── */
  .q-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }
  .qmodal-body   { padding: 1.2rem !important; }
  .qmodal-steps  { gap: 0 !important; }
  .qstep         { padding: 0.6rem 0.8rem !important; font-size: 0.78rem !important; }
  .q-input       { font-size: 0.9rem !important; }

  /* ── Products modal grid ── */
  .qcat-grid,
  .q-products-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem !important;
  }

  /* ── Hero image: show on mobile, smaller ── */
  .hero-right {
    display: block !important;
    height: 240px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    width: 100% !important;
  }
  .hero-right-inner {
    height: 240px !important;
    border-radius: 8px !important;
  }

  /* ── Force all scroll-fade visible on mobile ── */
  body.js-ready .scroll-fade,
  body.js-ready .scroll-left,
  body.js-ready .scroll-right {
    transition-duration: 0.4s !important;
  }

  /* ── Footer overrides ── */
  footer,
  .footer-inner,
  .footer-grid {
    padding: 2.5rem 5% !important;
  }

  /* ── About section ── */
  #about {
    padding: 3rem 5% !important;
  }
  .about-image-block {
    height: 220px !important;
    min-height: unset !important;
  }

  /* ── Clients section ── */
  #clients { padding: 3rem 5% !important; }
  .clients-grid { grid-template-columns: repeat(2,1fr) !important; }

  /* ── Products section ── */
  #products { padding: 3rem 5% !important; }

  /* ── Nav logo ── */
  .nav-logo-img { height: 36px !important; }
}

@media (max-width: 480px) {
  /* ── Ensure no horizontal overflow ── */
  * { max-width: 100%; }
  img { max-width: 100% !important; }

  /* ── Contact ── */
  section#contact, #contact { padding: 2.5rem 4% !important; }

  /* ── Hero stats in a row on small phone ── */
  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3,1fr) !important;
    gap: 0.5rem !important;
    margin-top: 1.2rem !important;
  }
  .hero-stat-num { font-size: 1.4rem !important; }
  .hero-stat-label { font-size: 0.6rem !important; }

  /* ── qmodal products grid single col on very small ── */
  .qcat-grid,
  .q-products-grid { grid-template-columns: 1fr !important; }

  /* ── Reduce padding on form modal ── */
  .qmodal-body { padding: 1rem !important; }
}

/* ══ MOBILE: disable scroll animations entirely — show all content ══ */
@media (max-width: 768px) {
  body.js-ready .scroll-fade,
  body.js-ready .scroll-left,
  body.js-ready .scroll-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── MOBILE NAV — Request a Quote button ── */
.nav-mobile-quote-btn {
  display: none;
}
@media (max-width: 900px) {
  .nav-mobile-quote-btn {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    margin-right: 0.6rem;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.45rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 2px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
  }
  .nav-mobile-quote-btn:hover { background: #b02020; }
}

/* ── MOBILE NAV LAYOUT: logo left, quote+hamburger right ── */
@media (max-width: 900px) {
  nav {
    justify-content: space-between !important;
    padding: 0 4% !important;
  }
  /* Logo stays left — it's the last element in DOM so push others right */
  .nav-logo-img {
    order: 1;
    margin-right: auto;
  }
  .nav-mobile-quote-btn {
    order: 2;
    margin-left: auto;
    margin-right: 0.5rem;
  }
  .nav-hamburger {
    order: 3;
    margin-left: 0;
  }
  /* Hide desktop links */
  .nav-links { display: none !important; }
}

.footer-built {
  position: relative;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
}

.ovonel-btn {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255,255,255,0.75);
  font: inherit;
  cursor: pointer;
}

.ovonel-btn:hover {
  color: #ffffff;
}

.ovonel-popup {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 130%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #0a1628;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 99999;
}

.ovonel-popup.show {
  display: block;
}

.ovonel-popup a {
  color: #0a1628;
  font-weight: 600;
  text-decoration: none;
}