


    * { box-sizing: border-box; }

    html, body {
      margin: 0;
      padding: 0;
      font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      color: var(--text-dark);
      background: #fff;
      line-height: 1.5;
    }

    img { max-width: 100%; display: block; height: auto; }

    .lazy-fade {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .lazy-fade.visible {
      opacity: 1;
      transform: translateY(0);
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; margin: 0; padding: 0; }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    .btn {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      border-radius: var(--radius);
      font-weight: 700;
      font-size: 0.95rem;
      transition: transform 0.15s ease, background 0.15s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { background: var(--stanley-yellow); color: var(--btn-text-color); }
    .btn-primary:hover { background: var(--stanley-yellow-dark); color: var(--btn-text-color-hover); }
    .btn-outline { border: 2px solid #fff; color: #fff; }
    .btn-outline:hover { background: #fff; color: var(--stanley-black); }
    .btn-dark-outline { border: 2px solid var(--stanley-black); color: var(--stanley-black); }
    .btn-dark-outline:hover { background: var(--stanley-black); color: #fff; }

    /* Header */
    header { background: var(--header-bg);
      color: var(--header-text-color);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 900;
      letter-spacing: 1px;
      font-size: 1.5rem;
    }
    .logo-mark {
      width: 36px; height: 36px;
      background: var(--stanley-yellow); color: var(--btn-text-color);
      display: flex; align-items: center; justify-content: center;
      border-radius: 4px;
      font-size: 1.1rem;
    }
    .nav-links { display: flex; gap: 2rem; align-items: center; }
    .nav-links a { font-size: 0.95rem; font-weight: 600; opacity: 0.85; transition: opacity 0.15s; }
    .nav-links a:hover { opacity: 1; }
    .menu-toggle { display: none; cursor: pointer; background: none; border: none; padding: 0; width: 28px; height: 22px; position: relative; z-index: 1001; }
    .menu-toggle span { display: block; position: absolute; height: 3px; width: 100%; background: var(--header-text-color); border-radius: 2px; transition: all 0.25s ease; left: 0; }
    .menu-toggle span:nth-child(1) { top: 0; }
    .menu-toggle span:nth-child(2) { top: 9px; }
    .menu-toggle span:nth-child(3) { top: 18px; }
    .menu-toggle.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }
    .header-actions {
      display: flex;
      gap: clamp(0.75rem, 2vw, 1.5rem);
      align-items: center;
    }
    .header-contact {
      display: flex;
      align-items: center;
      gap: clamp(0.25rem, 0.6vw, 0.45rem);
      color: #fff;
      font-size: clamp(0.72rem, 1.1vw, 0.88rem);
      font-weight: 600;
      opacity: 0.9;
      transition: opacity 0.15s, color 0.15s;
      white-space: nowrap;
    }
    .header-contact:hover {
      opacity: 1;
      color: var(--stanley-yellow);
    }
    .header-contact svg {
      width: clamp(15px, 1.4vw, 18px);
      height: clamp(15px, 1.4vw, 18px);
      flex-shrink: 0;
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      color: #fff;
      overflow: hidden;
      isolation: isolate;
    }
    .hero-carousel {
      position: absolute;
      inset: 0;
      z-index: 1; 
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
    }
    .hero-slide.active {
      opacity: 1;
      animation: kenBurns 6s ease-out forwards;
    }
    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    @keyframes kenBurns {
      0%   { transform: scale(1); }
      100% { transform: scale(1.06); }
    }
    .hero-overlay {
      position: absolute; 
      inset: 0;
      background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.2) 100%);
      z-index: 2; 
    }
    .hero-content { 
      max-width: 640px; 
      position: relative;
      z-index: 3;
      margin-top: 150px;
      margin-left: 200px;
    }
    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4.2rem);
      line-height: 1.05;
      margin: 0 0 1rem;
      font-weight: 900;
	  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    .hero p {
      font-size: clamp(1.05rem, 2vw, 1.35rem);
      margin: 0 0 2rem;
      opacity: 0.92;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .hero-indicators {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.6rem;
      z-index: 4;
    }
    .hero-indicators button {
      width: 12px; height: 12px;
      border-radius: 50%;
      border: 2px solid #fff;
      background: transparent;
      cursor: pointer;
      padding: 0;
      transition: background 0.3s, transform 0.3s;
    }
    .hero-indicators button:hover { transform: scale(1.25); }
    .hero-indicators button.active {
      background: var(--stanley-yellow);
      border-color: var(--stanley-yellow);
    }
    .hero-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 4;
      background: rgba(0,0,0,0.35);
      border: none;
      color: #fff;
      width: 48px; height: 48px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .hero-arrow:hover { background: rgba(0,0,0,0.6); }
    .hero-arrow svg { width: 24px; height: 24px; }
    .hero-arrow--prev { left: 1.25rem; }
    .hero-arrow--next { right: 1.25rem; }

    /* Sections */
    section { padding: 4rem 0; }
    .section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 0.5rem; }
    .section-subtitle { color: var(--gray); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 700px; }
    .section-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
    .section-header a { font-weight: 700; color: var(--stanley-black); border-bottom: 2px solid var(--stanley-yellow); padding-bottom: 2px; }

    .categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
    .category-card { position: relative; border-radius: 50%; overflow: hidden; aspect-ratio: 1 / 1; box-shadow: var(--shadow); border: 4px solid #fff; transition: transform 0.3s ease; }
    .category-card:hover { transform: translateY(-6px); }
    .category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
    .category-card:hover img { transform: scale(1.05); }
    .category-card span { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem 0.5rem; background: rgba(0,0,0,0.6); color: #fff; font-weight: 800; font-size: 1.05rem; text-align: center; }

    .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .product-card { border: 1px solid #e5e5e5; border-radius: var(--radius); overflow: hidden; background: #fff; transition: box-shadow 0.2s, transform 0.2s; }
    .product-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
    .product-image { position: relative; aspect-ratio: 1 / 1; background: var(--light-gray); overflow: hidden; }
    .product-image img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; }
    .product-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--stanley-yellow); color: var(--btn-text-color); font-size: 0.7rem; font-weight: 800; padding: 0.25rem 0.5rem; border-radius: 3px; text-transform: uppercase; }
    .product-info { padding: 1rem; }
    .product-category { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); font-weight: 700; margin-bottom: 0.25rem; }
    .product-name { font-weight: 800; font-size: 1.05rem; margin-bottom: 0.75rem; line-height: 1.3; }
    .product-link { font-weight: 700; font-size: 0.9rem; color: var(--stanley-black); border-bottom: 2px solid var(--stanley-yellow); padding-bottom: 2px; }

    .promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; }
    .promo-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 520px; }
    .promo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .promo-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem; color: #fff; background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 80%); z-index: 2; }
    .promo-content h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 1rem; font-weight: 900; }
    .promo-content p { font-size: 1.05rem; opacity: 0.92; margin-bottom: 1.5rem; }
    .promo-text { display: flex; flex-direction: column; justify-content: center; padding: 1rem 0; }
    .promo-text h3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 900; margin: 0 0 1rem; }
    .promo-text p { color: var(--gray); margin-bottom: 1.5rem; }

    .banner { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 360px; display: flex; align-items: center; color: #fff; }
    .banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
    .banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 100%); z-index: -1; }
    .banner-content { max-width: 600px; padding: 2.5rem; position: relative; z-index: 2; }
    .banner h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 0 0 1rem; font-weight: 900; }
    .banner p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 1.5rem; }

    .features-bar { background: var(--light-gray); padding: 2rem 0; }
    .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
    .feature { font-weight: 800; font-size: 0.95rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
    .feature svg { width: 36px; height: 36px; color: var(--stanley-black); }

    footer { background: var(--footer-bg); color: var(--footer-text-muted); padding: 3rem 0 1.5rem; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
    .footer-brand .logo { color: var(--footer-text-color); margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.95rem; line-height: 1.6; max-width: 320px; }
    .footer-links h4 { color: var(--footer-text-color); font-size: 1rem; margin-bottom: 1rem; font-weight: 800; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a:hover { color: var(--footer-text-color); }
    .newsletter { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
    .newsletter input { padding: 0.65rem 0.9rem; border: none; border-radius: var(--radius); flex: 1; min-width: 180px; font-size: 0.95rem; }
    .newsletter button { border: none; cursor: pointer; }
    .footer-bottom { border-top: 1px solid #333; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; }
    .socials { display: flex; gap: 1rem; }
    .socials a { opacity: 0.7; transition: opacity 0.15s; }
    .socials a:hover { opacity: 1; }
    .socials svg { width: 22px; height: 22px; }

    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 1024px) {
      .products-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 900px) {
      .promo-grid, .footer-grid { grid-template-columns: 1fr; }
      .promo-card { min-height: 420px; }
    }
    @media (max-width: 768px) {
      .categories-grid { grid-template-columns: repeat(2, 1fr); }
      .nav-links {
          color:#ffff;
        position: fixed; inset: 64px 0 0 0;
        background: var(--stanley-black);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1.25rem;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
      }
      .nav-links.open { transform: translateX(0); }
      .menu-toggle { display: flex; }
      .products-grid, .features-grid { grid-template-columns: 1fr; }
      .hero { min-height: 70vh; }
      .hero-content { text-align: center; margin: 100px auto; }
      .hero-arrow { display: none; }
      .header-actions { gap: 0.75rem; }
      .header-contact span { display: none; }
      .header-contact svg { width: 22px; height: 22px; }
    }


    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--text-dark); background: #fff; line-height: 1.5; }
    img { max-width: 100%; display: block; height: auto; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; margin: 0; padding: 0; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
    .btn { display: inline-block; padding: 1.25rem 1.5rem; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; transition: transform 0.15s ease, background 0.15s ease; cursor: pointer; border: none; }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { background: var(--stanley-yellow); color: var(--btn-text-color); }
    .btn-primary:hover { background: var(--stanley-yellow-dark); color: var(--btn-text-color-hover); }
    .btn-outline { border: 2px solid #fff; color: #fff; }
    .btn-outline:hover { background: #fff; color: var(--stanley-black); }
    .btn-dark-outline { border: 2px solid var(--stanley-black); color: var(--stanley-black); background: transparent; }
    .btn-dark-outline:hover { background: var(--stanley-black); color: #fff; }
  
    /* Header */
    header { background: var(--header-bg); color: var(--header-text-color); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
    .header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
    .logo { display: flex; align-items: center; gap: 0.6rem; font-weight: 900; letter-spacing: 1px; font-size: 1.5rem; }
    .logo-mark { width: 36px; height: 36px; background: var(--stanley-yellow); color: var(--btn-text-color); display: flex; align-items: center; justify-content: center; border-radius: 4px; font-size: 1.1rem; }
    .nav-links { display: flex; gap: 2rem; align-items: center; }
    .nav-links a { font-size: 0.95rem; font-weight: 600; opacity: 0.85; transition: opacity 0.15s; }
    .nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--stanley-yellow); }
    .header-actions { display: flex; gap: clamp(0.75rem, 2vw, 1.5rem); align-items: center; }
    .header-contact { display: flex; align-items: center; gap: clamp(0.25rem, 0.6vw, 0.45rem); color: var(--header-text-color); font-size: clamp(0.72rem, 1.1vw, 0.88rem); font-weight: 600; opacity: 0.85; transition: opacity 0.15s, color 0.15s; white-space: nowrap; }
    .header-contact:hover { opacity: 1; color: var(--stanley-yellow); }
    .header-contact svg { width: clamp(15px, 1.4vw, 18px); height: clamp(15px, 1.4vw, 18px); flex-shrink: 0; }
  
    /* Page Hero */
    .page-hero { position: relative; min-height: 360px; display: flex; align-items: center; color: #fff; overflow: hidden; }
    .page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
    .page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.2) 100%); z-index: 2; }
    .page-hero-content { position: relative; z-index: 3; max-width: 640px; padding: 3rem 0; }
    .page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); line-height: 1.05; margin: 0 0 1rem; font-weight: 900; }
    .page-hero p { font-size: clamp(1rem, 1.8vw, 1.25rem); opacity: 0.92; margin: 0; }
    .breadcrumb { font-size: 0.85rem; opacity: 0.7; margin-bottom: 0.75rem; }
    .breadcrumb a:hover { color: var(--stanley-yellow); }
  
    /* Sections */
    section { padding: 4rem 0; }
    .section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 0.5rem; }
    .section-subtitle { color: var(--gray); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 700px; }
  
    /* Contact Grid */
    .contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; }
    
    /* Form */
    .contact-form-wrapper { background: #fff; border: 1px solid #e5e5e5; border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
    .contact-form-wrapper h2 { font-size: 1.5rem; font-weight: 900; margin: 0 0 0.5rem; }
    .contact-form-wrapper > p { color: var(--gray); margin-bottom: 2rem; font-size: 0.95rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .form-group { margin-bottom: 1rem; }
    .form-group label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.4rem; }
    .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 2px solid #e5e5e5; border-radius: var(--radius); font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s; background: #fff; }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--stanley-yellow); }
    .form-group textarea { resize: vertical; min-height: 120px; }
  
    /* Contact Info Cards */
    .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
    .info-card { background: var(--light-gray); border-radius: var(--radius); padding: 2rem; border-left: 4px solid var(--stanley-yellow); }
    .info-card-icon { width: 48px; height: 48px; background: var(--stanley-black); color: var(--stanley-yellow); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
    .info-card-icon svg { width: 24px; height: 24px; }
    .info-card h3 { font-size: 1.15rem; font-weight: 800; margin: 0 0 0.5rem; }
    .info-card p { color: var(--gray); margin: 0.25rem 0; font-size: 0.95rem; }
    .info-card a { color: var(--text-dark); font-weight: 600; }
    .info-card a:hover { color: var(--stanley-yellow-dark); }
  
	.captcha-img { margin-top:25px ; border: 1px solid #ccc; cursor: pointer; border-radius: 4px; transition: opacity 0.2s; }
	.captcha-img:hover { opacity: 0.8; }
  
    /* Map */
    .map-section { padding: 0; }
    .map-wrapper { width: 100%; height: 400px; background: var(--light-gray); position: relative; overflow: hidden; }
    .map-wrapper iframe { width: 100%; height: 100%; border: 0; }
  
    /* Department Cards */
    .dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .dept-card { padding: 2rem; border: 1px solid #e5e5e5; border-radius: var(--radius); transition: box-shadow 0.2s, transform 0.2s; }
    .dept-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
    .dept-icon { width: 52px; height: 52px; background: var(--stanley-yellow); color: var(--btn-text-color); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
    .dept-icon svg { width: 28px; height: 28px; }
    .dept-card h3 { font-size: 1.15rem; font-weight: 800; margin: 0 0 0.5rem; }
    .dept-card p { color: var(--gray); font-size: 0.9rem; margin: 0.25rem 0; }
    .dept-card a { color: var(--text-dark); font-weight: 600; }
  
    /* Features Bar */
    .features-bar { background: var(--light-gray); padding: 2rem 0; }
    .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
    .feature { font-weight: 800; font-size: 0.95rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
    .feature svg { width: 36px; height: 36px; color: var(--stanley-black); }
  
    /* FAQ */
    .faq-list { max-width: 800px; margin: 0 auto; }
    .faq-item { border: 1px solid #e5e5e5; border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; }
    .faq-question { padding: 1.25rem 1.5rem; font-weight: 700; font-size: 1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #fff; transition: background 0.2s; }
    .faq-question:hover { background: var(--light-gray); }
    .faq-question .arrow { transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
    .faq-item.open .faq-question .arrow { transform: rotate(180deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 1.5rem; }
    .faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.25rem; }
    .faq-answer p { color: var(--gray); line-height: 1.6; margin: 0; }
  
    /* Footer */
    footer { background: var(--footer-bg); color: var(--footer-text-muted); padding: 3rem 0 1.5rem; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
    .footer-brand .logo { color: var(--footer-text-color); margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.95rem; line-height: 1.6; max-width: 320px; }
    .footer-links h4 { color: var(--footer-text-color); font-size: 1rem; margin-bottom: 1rem; font-weight: 800; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a:hover { color: var(--footer-text-color); }
    .newsletter { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
    .newsletter input { padding: 0.65rem 0.9rem; border: none; border-radius: var(--radius); flex: 1; min-width: 180px; font-size: 0.95rem; }
    .newsletter button { border: none; cursor: pointer; }
    .footer-bottom { border-top: 1px solid #333; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; }
  
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
     @keyframes fadeInUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
     @keyframes bounce{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(10px)}}

    @media (max-width: 1024px) { .dept-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }
    @media (max-width: 768px) {
      .nav-links { position: fixed; inset: 64px 0 0 0; background: var(--stanley-black); flex-direction: column; align-items: flex-start; padding: 1.5rem; gap: 1.25rem; transform: translateX(-100%); transition: transform 0.25s ease; }
      .nav-links.open { transform: translateX(0); }
      .header-contact span { display: none; }
      .header-contact svg { width: 22px; height: 22px; }
      .dept-grid { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
    }
	