:root {
    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --steel: #2c2c2c;
    --yellow: #FFD000;
    --yellow-dark: #e6b800;
    --white: #f5f5f0;
    --gray: #888;
    --light-gray: #c8c8c8;
  }
  
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  
  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
  }
  
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }
  
  /* NAV */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 48px;
    background: linear-gradient(to bottom, rgba(10,10,10,0.98), transparent);
    transition: background 0.3s;
  }
  
  nav.scrolled {
    background: rgba(10,10,10,0.97);
    border-bottom: 1px solid #222;
  }
  
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
  }
  
  .logo-icon { width: 40px; height: 40px; }
  
  .logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
  }
  
  .logo-text span { color: var(--yellow); }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
  }
  
  .nav-links > li > a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 11px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
    white-space: nowrap;
  }
  
  .nav-links > li > a:hover { color: var(--yellow); }
  
  .chevron { font-size: 10px; transition: transform 0.2s; display: inline-block; }
  .has-dropdown:hover .chevron { transform: rotate(180deg); }
  
  .has-dropdown { position: relative; }
  
  .dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #111;
    border: 1px solid #2a2a2a;
    border-top: 2px solid var(--yellow);
    min-width: 260px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 200;
  }
  
  .dropdown-wide {
    min-width: 680px; 
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    padding: 8px; 
    left: auto; /* This stops it from anchoring to the left */
    right: -20px; /* This anchors it to the right, forcing it to expand leftwards safely on screen */
  }
  
  .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown li a {
    display: block;
    padding: 11px 18px;
    color: var(--light-gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  
  .dropdown li a:hover {
    background: rgba(255,208,0,0.08);
    color: var(--yellow);
    padding-left: 24px;
  }
  
  .nav-cta {
    background: var(--yellow) !important;
    color: var(--black) !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.2s !important;
    margin-left: 8px;
  }
  
  .nav-cta:hover { background: var(--yellow-dark) !important; }
  
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
  }
  
  .hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
  }
  
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  
  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 900;
  }
  
  .mobile-overlay.active { display: block; }
  
  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 60px 180px;
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255,208,0,0.06) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,208,0,0.04) 0%, transparent 50%);
  }
  
  .hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
  }
  
  .hero-content { position: relative; z-index: 2; max-width: 700px; }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,208,0,0.1);
    border: 1px solid rgba(255,208,0,0.3);
    color: var(--yellow);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 16px;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease both;
  }
  
  .hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }
  
  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 10vw, 140px);
    line-height: 0.92;
    letter-spacing: -1px;
    margin-bottom: 10px;
    animation: fadeUp 0.7s 0.1s ease both;
  }
  
  .hero h1 .highlight { color: var(--yellow); display: block; -webkit-text-stroke: 2px var(--yellow); }
  .hero h1 .outline { -webkit-text-stroke: 2px rgba(255,255,255,0.3); color: transparent; }
  
  .hero-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 28px;
    animation: fadeUp 0.7s 0.2s ease both;
  }
  
  .hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--light-gray);
    max-width: 500px;
    margin-bottom: 48px;
    animation: fadeUp 0.7s 0.3s ease both;
  }
  
  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.4s ease both;
  }
  
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--black);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 36px;
    text-decoration: none;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }
  
  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.3s;
  }
  
  .btn-primary:hover::after { transform: translateX(0); }
  
  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 17px 36px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
  }
  
  .btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
  
  .hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s 0.5s ease both;
  }
  
  .gorilla-graphic {
    font-size: 280px;
    opacity: 0.08;
    filter: grayscale(1);
    user-select: none;
    animation: float 6s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
  }
  
  .hero-stats {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
    display: flex;
    gap: 60px;
    z-index: 2;
    animation: fadeUp 0.7s 0.6s ease both;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 40px;
    flex-wrap: wrap;
  }
  
  .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--yellow); line-height: 1; }
  .stat-label { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 4px; }
  
  /* TICKER */
  .ticker { background: var(--yellow); padding: 14px 0; overflow: hidden; white-space: nowrap; }
  .ticker-inner { display: inline-flex; animation: ticker 22s linear infinite; }
  .ticker-item { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 3px; color: var(--black); padding: 0 40px; display: flex; align-items: center; gap: 16px; }
  .ticker-dot { width: 6px; height: 6px; background: rgba(0,0,0,0.3); border-radius: 50%; flex-shrink: 0; }
  
  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* QUOTE SECTION */
  .quote-section {
    background: var(--charcoal);
    border-top: 4px solid var(--yellow);
    padding: 100px 60px;
  }
  
  .quote-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .quote-desc {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-top: 20px;
    max-width: 380px;
  }
  
  .quote-phone {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--yellow);
    text-decoration: none;
    letter-spacing: 2px;
    margin: 28px 0 20px;
    transition: opacity 0.2s;
  }
  
  .quote-phone:hover { opacity: 0.8; }
  
  .quote-promise { display: flex; flex-direction: column; gap: 10px; }
  
  .promise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--light-gray);
  }
  
  .promise-item span { color: var(--yellow); font-weight: 900; font-size: 16px; }
  
  .quote-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid #2a2a2a;
    padding: 40px;
  }
  
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  
  .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
  
  .form-group label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-gray);
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
  }
  
  .form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
  }
  
  .form-group select option { background: #1a1a1a; color: var(--white); }
  .form-group input::placeholder, .form-group textarea::placeholder { color: #555; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--yellow); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  
  .btn-submit {
    width: 100%;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 32px;
    border: none;
    cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: background 0.2s;
    margin-top: 8px;
  }
  
  .btn-submit:hover { background: var(--yellow-dark); }
  .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
  
  .form-note { font-size: 11px; color: #555; margin-top: 12px; text-align: center; }
  
  .form-success {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255,208,0,0.05);
    border: 1px solid rgba(255,208,0,0.2);
  }
  
  .success-icon {
    width: 64px;
    height: 64px;
    background: var(--yellow);
    color: var(--black);
    font-size: 28px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
  }
  
  .form-success h3 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 2px; margin-bottom: 12px; }
  .form-success p { color: var(--gray); font-size: 15px; line-height: 1.6; }
  .form-success a { color: var(--yellow); }
  
  /* SERVICES */
  .services { padding: 120px 60px; position: relative; }
  .section-header { margin-bottom: 70px; }
  
  .section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .section-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--yellow); }
  
  .section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 6vw, 80px); line-height: 0.95; letter-spacing: 1px; }
  
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  
  .service-card {
    background: var(--charcoal);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.3s;
    border: 1px solid #222;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }
  
  .service-card:hover { transform: translateY(-4px); }
  .service-card:hover::before { transform: scaleX(1); }
  
  .service-icon { font-size: 44px; margin-bottom: 20px; display: block; }
  .service-num { position: absolute; top: 20px; right: 24px; font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: rgba(255,255,255,0.04); line-height: 1; user-select: none; }
  .service-title { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; color: var(--white); }
  .service-desc { font-size: 14px; line-height: 1.7; color: var(--gray); }
  .service-arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: var(--yellow); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: gap 0.2s; }
  .service-arrow:hover { gap: 14px; }
  
  /* WHY US */
  .why-us { background: var(--charcoal); padding: 120px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; border-top: 1px solid #222; border-bottom: 1px solid #222; }
  .why-visual { position: relative; }
  .why-big-text { font-family: 'Bebas Neue', sans-serif; font-size: clamp(80px, 12vw, 180px); line-height: 0.85; -webkit-text-stroke: 1px rgba(255,208,0,0.2); color: transparent; user-select: none; position: relative; }
  
  .why-badge {
    position: absolute; bottom: 20px; right: -20px;
    background: var(--yellow); color: var(--black);
    width: 120px; height: 120px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 1.5px; text-align: center; line-height: 1.3;
    animation: spin-slow 12s linear infinite;
  }
  
  .why-badge-inner { font-size: 22px; display: block; }
  
  @keyframes spin-slow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
  
  .features-list { list-style: none; margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
  
  .feature-item { display: flex; gap: 18px; align-items: flex-start; padding: 18px; border: 1px solid rgba(255,255,255,0.06); transition: border-color 0.3s; }
  .feature-item:hover { border-color: rgba(255,208,0,0.3); }
  .feature-check { width: 30px; height: 30px; background: var(--yellow); color: var(--black); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 900; flex-shrink: 0; clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%); }
  .feature-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
  .feature-text p { font-size: 13px; color: var(--gray); line-height: 1.5; }
  
  /* DOOR TYPES */
  .door-types { padding: 120px 60px; }
  .doors-scroll { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 60px; }
  
  .door-card { background: var(--charcoal); border: 1px solid #222; padding: 32px 24px; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
  .door-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(255,208,0,0.06), transparent 70%); opacity: 0; transition: opacity 0.3s; }
  .door-card:hover { border-color: rgba(255,208,0,0.4); transform: translateY(-6px); }
  .door-card:hover::after { opacity: 1; }
  .door-emoji { font-size: 48px; display: block; margin-bottom: 14px; }
  .door-name { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
  .door-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }
  
  /* PROCESS */
  .process { background: var(--charcoal); padding: 120px 60px; border-top: 1px solid #222; }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; position: relative; }
  .process-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right, var(--yellow), rgba(255,208,0,0.1)); }
  .step { padding: 0 24px; text-align: center; position: relative; }
  .step-circle { width: 64px; height: 64px; background: var(--black); border: 3px solid var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--yellow); position: relative; z-index: 1; }
  .step h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
  .step p { font-size: 13px; color: var(--gray); line-height: 1.6; }
  
  /* TESTIMONIALS */
  .testimonials { padding: 120px 60px; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 70px; }
  .testimonial-card { background: var(--charcoal); border: 1px solid #222; padding: 32px; transition: border-color 0.3s; }
  .testimonial-card:hover { border-color: rgba(255,208,0,0.25); }
  .quote-mark { font-family: 'Bebas Neue', sans-serif; font-size: 72px; color: var(--yellow); line-height: 0.6; margin-bottom: 14px; opacity: 0.6; }
  .testimonial-text { font-size: 14px; line-height: 1.75; color: var(--light-gray); margin-bottom: 24px; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar { width: 42px; height: 42px; background: var(--yellow); color: var(--black); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 18px; clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%); flex-shrink: 0; }
  .author-name { font-weight: 700; font-size: 14px; }
  .author-loc { font-size: 12px; color: var(--gray); letter-spacing: 1px; }
  .stars { color: var(--yellow); font-size: 13px; margin-bottom: 14px; }
  
  /* FOOTER */
  footer { background: var(--charcoal); border-top: 1px solid #222; padding: 70px 60px 40px; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 3px; color: var(--white); margin-bottom: 14px; }
  .footer-logo span { color: var(--yellow); }
  .footer-tagline { font-size: 14px; color: var(--gray); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
  .footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--light-gray); margin-bottom: 10px; text-decoration: none; transition: color 0.2s; }
  .footer-contact-item:hover { color: var(--yellow); }
  .footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { color: var(--gray); text-decoration: none; font-size: 13px; transition: color 0.2s; }
  .footer-links a:hover { color: var(--yellow); }
  .footer-bottom { border-top: 1px solid #222; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-bottom p { font-size: 12px; color: #555; }
  .footer-bottom-links { display: flex; gap: 24px; }
  .footer-bottom-links a { font-size: 12px; color: #555; text-decoration: none; transition: color 0.2s; }
  .footer-bottom-links a:hover { color: var(--gray); }
  
  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  
  /* RESPONSIVE */
  @media (max-width: 1100px) {
    nav { padding: 16px 28px; }
    .nav-links > li > a { font-size: 12px; padding: 8px 8px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .quote-inner { grid-template-columns: 1fr; gap: 50px; }
  }
  
  @media (max-width: 768px) {
    nav { padding: 14px 20px; }
    .hamburger { display: flex; }
  
    .nav-links {
      position: fixed;
      top: 0; right: -100%;
      width: min(320px, 85vw);
      height: 100vh;
      background: #111;
      border-left: 1px solid #222;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding: 80px 0 40px;
      overflow-y: auto;
      transition: right 0.35s ease;
      z-index: 1000;
    }
  
    .nav-links.open { right: 0; }
    .nav-links > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-links > li > a { padding: 16px 24px; font-size: 14px; width: 100%; color: var(--white); }
    .nav-links > li > a:hover { color: var(--yellow); background: rgba(255,208,0,0.05); }
  
    .has-dropdown .dropdown {
      position: static;
      opacity: 1; visibility: visible; transform: none;
      border: none;
      border-top: 1px solid rgba(255,255,255,0.06);
      background: rgba(0,0,0,0.3);
      display: none;
      grid-template-columns: 1fr;
    }
  
    .has-dropdown.mobile-open .dropdown { display: block; }
    .dropdown li a { padding: 12px 36px; font-size: 13px; }
    .dropdown-wide { grid-template-columns: 1fr; }
  
    .nav-cta {
      margin: 16px 20px 0 !important;
      clip-path: none !important;
      padding: 14px 20px !important;
      text-align: center;
      width: calc(100% - 40px);
      justify-content: center;
    }
  
    .hero { padding: 90px 24px 200px; }
    .hero h1 { font-size: clamp(60px, 16vw, 90px); }
    .hero-desc { font-size: 15px; }
    .hero-visual { display: none; }
    .hero-stats { left: 24px; right: 24px; bottom: 40px; gap: 24px; padding-top: 28px; }
    .stat-num { font-size: 36px; }
    .stat-label { font-size: 10px; }
  
    .quote-section { padding: 60px 20px; }
    .quote-inner { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .quote-form { padding: 24px 18px; }
    .quote-phone { font-size: 28px; }
  
    .services { padding: 70px 20px; }
    .services-grid { grid-template-columns: 1fr; gap: 2px; }
  
    .why-us { grid-template-columns: 1fr; padding: 70px 20px; gap: 40px; }
    .why-visual { display: none; }
  
    .door-types { padding: 70px 20px; }
    .doors-scroll { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 40px; }
  
    .process { padding: 70px 20px; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
    .process-steps::before { display: none; }
    .step { padding: 0 8px; }
  
    .testimonials { padding: 70px 20px; }
    .testimonials-grid { grid-template-columns: 1fr; }
  
    footer { padding: 50px 20px 32px; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
    .section-title { font-size: clamp(36px, 9vw, 56px); }
  }
  
  @media (max-width: 400px) {
    .hero h1 { font-size: 54px; }
    .doors-scroll { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
  }
  
  /* ===========================
     STICKY PHONE BAR
  =========================== */
  .sticky-phone-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--charcoal);
    border-top: 3px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 12px 40px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  }
  
  .sticky-phone-call {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  
  .sticky-phone-call:hover { opacity: 0.85; }
  
  .sticky-phone-icon {
    font-size: 22px;
    animation: pulse 2s infinite;
  }
  
  .sticky-phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
  
  .sticky-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
  }
  
  .sticky-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--white);
    letter-spacing: 2px;
  }
  
  .sticky-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
  }
  
  .sticky-phone-email {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 0 32px;
  }
  
  .sticky-phone-email:hover { color: var(--yellow); }
  
  .sticky-phone-cta {
    background: var(--yellow);
    color: var(--black);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 28px;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.2s;
    white-space: nowrap;
  }
  
  .sticky-phone-cta:hover { background: var(--yellow-dark); }
  
  /* Push page content up so sticky bar doesn't cover footer */
  body { padding-bottom: 68px; }
  
  /* Mobile sticky bar — phone only */
  @media (max-width: 768px) {
    .sticky-phone-bar {
      padding: 0;
      gap: 0;
    }
  
    .sticky-phone-email { display: none; }
  
    .sticky-phone-call {
      flex: 1;
      justify-content: center;
      padding: 14px 16px;
      background: var(--charcoal);
      border-right: 1px solid rgba(255,255,255,0.1);
    }
  
    .sticky-num { font-size: 22px; }
    .sticky-label { font-size: 9px; }
  
    .sticky-phone-cta {
      flex: 1;
      text-align: center;
      justify-content: center;
      padding: 14px 16px;
      clip-path: none;
      font-size: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    body { padding-bottom: 60px; }
  }
  img.logo-icon {
    height: 44px;
    width: auto;
    display: block;
  }