/* ═══════════════════════════════════════
   THEME VARIABLES
═══════════════════════════════════════ */
[data-theme="dark"] {
    --bg:        #000d26;
    --surface:   #001540;
    --card:      #002060;
    --card-mid:  #002d82;
    --border:    #0a3070;
    --nav-bg:    rgba(0,21,64,0.96);
    --text:      #f0f4ff;
    --text-muted:#7a99cc;
    --text-light:#b8cce8;
    --stats-bg:  rgba(0,13,38,0.75);
    --shadow:    0 20px 60px rgba(0,0,0,0.5);
    --img-filter:brightness(0.85);
    --grid-line: rgba(255,255,255,0.015);
    --overlay-l: rgba(0,21,64,1);
  }
  [data-theme="light"] {
    --bg:        #ffffff;
    --surface:   #f5f8ff;
    --card:      #c8d8f8;
    --card-mid:  #b0c4ee;
    --border:    #8aace0;
    --nav-bg:    rgba(220,232,255,0.97);
    --text:      #001540;
    --text-muted:#2a5090;
    --text-light:#1a3a6e;
    --stats-bg:  rgba(210,228,255,0.9);
    --shadow:    0 20px 60px rgba(0,21,64,0.15);
    --img-filter:brightness(1.05) saturate(0.9);
    --grid-line: rgba(0,21,64,0.04);
    --overlay-l: rgba(220,232,255,0.98);
  }
  :root {
    --amber:      #FFD909;
    --amber-dark: #ccad00;
    --amber-glow: rgba(255,217,9,0.14);
    --trans: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Barlow', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    transition: var(--trans);
  }
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--surface); }
  ::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }
  
  /* ═══════════════════════════════════════
     NAV
  ═══════════════════════════════════════ */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
    transition: var(--trans);
  }
  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .logo-icon {
    width: 38px; height: 38px; background: var(--amber);
    clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; color: #000d26; font-size: 16px; flex-shrink: 0;
  }
  .logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 3px; color: var(--text); line-height: 1; transition: color 0.3s; }
  .logo-text span { color: var(--amber); }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; color: var(--text-light);
    text-decoration: none; position: relative; transition: color 0.2s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--amber); transition: width 0.25s;
  }
  .nav-links a:hover { color: var(--amber); }
  .nav-links a:hover::after { width: 100%; }
  .nav-right { display: flex; align-items: center; gap: 14px; }
  
  /* ── Theme Toggle ── */
  .theme-toggle {
    width: 52px; height: 26px; background: var(--card);
    border: 1px solid var(--border); border-radius: 13px;
    cursor: pointer; position: relative;
    transition: background 0.3s, border-color 0.3s;
    flex-shrink: 0; display: flex; align-items: center;
  }
  .theme-toggle-knob {
    position: absolute; left: 3px;
    width: 18px; height: 18px; background: var(--amber);
    border-radius: 50%; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
  }
  [data-theme="light"] .theme-toggle-knob { transform: translateX(26px); }
  .theme-toggle-bg {
    position: absolute; right: 6px; font-size: 11px; opacity: 0.5;
    transition: opacity 0.3s;
  }
  [data-theme="light"] .theme-toggle-bg { right: auto; left: 6px; }
  
  .btn-quote {
    font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; background: var(--amber); color: #000d26;
    border: none; cursor: pointer; padding: 9px 22px;
    clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
    transition: background 0.2s, transform 0.2s; text-decoration: none;
  }
  .btn-quote:hover { background: #ffe642; transform: translateY(-1px); }
  
  /* ═══════════════════════════════════════
     HERO — SPLIT SLIDER
  ═══════════════════════════════════════ */
  #home {
    position: relative; height: 100vh; min-height: 680px; overflow: hidden;
    padding-top: 68px;
  }
  .slider-track {
    display: flex; height: 100%;
    transition: transform 0.9s cubic-bezier(0.77,0,0.175,1);
    will-change: transform;
  }
  .slide {
    min-width: 100%; height: 100%; position: relative;
    display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
  }
  
  /* ── Left: text ── */
  .slide-text-panel {
    position: relative; z-index: 2;
    background: var(--surface);
    display: flex; flex-direction: column; justify-content: center;
    padding: 60px 56px 100px 80px;
    overflow: hidden; transition: background 0.4s;
  }
  .slide-text-panel::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image:
      repeating-linear-gradient(0deg,transparent,transparent 50px,var(--grid-line) 50px,var(--grid-line) 51px),
      repeating-linear-gradient(90deg,transparent,transparent 50px,var(--grid-line) 50px,var(--grid-line) 51px);
  }
  .slide-text-panel::after {
    content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(180deg,transparent,var(--amber),transparent);
    animation: linePulse 3s ease-in-out infinite;
  }
  @keyframes linePulse { 0%,100%{opacity:.3} 50%{opacity:1} }
  
  /* ── Right: image ── */
  .slide-img-panel { position: relative; overflow: hidden; }
  .slide-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.12); transition: transform 9s ease;
    filter: var(--img-filter);
  }
  .slide.active .slide-img { transform: scale(1); }
  .slide-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--overlay-l) 0%, transparent 45%);
    transition: background 0.4s;
  }
  .slide-num-bg {
    position: absolute; right: 12px; bottom: 8px;
    font-family: 'Bebas Neue', sans-serif; font-size: 150px; line-height: 1;
    color: rgba(255,217,9,0.055); user-select: none; z-index: 1; letter-spacing: -6px;
  }
  .slide-tag {
    position: absolute; bottom: 28px; left: 28px; z-index: 5;
    background: var(--amber); color: #000d26;
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.6s ease 0.85s, transform 0.6s ease 0.85s;
  }
  .slide.active .slide-tag { opacity: 1; transform: translateY(0); }
  
  /* ── Slide content ── */
  .slide-content {
    position: relative; z-index: 2;
    opacity: 0; transform: translateX(-32px);
    transition: opacity 0.75s ease 0.3s, transform 0.75s ease 0.3s;
  }
  .slide.active .slide-content { opacity: 1; transform: translateX(0); }
  
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; color: var(--amber);
    border: 1px solid var(--amber); padding: 5px 14px; margin-bottom: 22px;
  }
  .hero-badge::before {
    content: ''; width: 6px; height: 6px; background: var(--amber);
    border-radius: 50%; animation: blink 1.5s infinite;
  }
  @keyframes blink { 0%,100%{opacity:1}50%{opacity:0.2} }
  
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px,5.2vw,86px);
    line-height: 0.93; letter-spacing: 2px; color: var(--text); margin-bottom: 20px;
  }
  .hero-title span { color: var(--amber); }
  .hero-tagline {
    font-size: 15px; font-weight: 300; color: var(--text-muted);
    line-height: 1.8; max-width: 420px; margin-bottom: 34px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  
  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; background: var(--amber); color: #000d26;
    border: none; cursor: pointer; padding: 13px 32px;
    clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
    text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: #ffe642; transform: translateY(-2px); }
  
  .btn-outline {
    font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; background: transparent;
    color: var(--text); border: 1px solid var(--border); cursor: pointer; padding: 13px 32px;
    clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
    text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s, transform 0.2s;
  }
  .btn-outline:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
  
  /* ── Arrows ── */
  .slider-arrow {
    position: absolute; top: 50%; z-index: 20; transform: translateY(-50%);
    width: 48px; height: 48px; background: var(--surface); border: 1px solid var(--border);
    color: var(--text); font-size: 18px; line-height: 48px; text-align: center;
    cursor: pointer; user-select: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    backdrop-filter: blur(8px);
  }
  .slider-arrow:hover { background: var(--amber); color: #000d26; border-color: var(--amber); }
  .slider-arrow.prev { left: 20px; }
  .slider-arrow.next { right: 20px; }
  
  /* ── Dots ── */
  .slider-dots {
    position: absolute; bottom: 90px; left: 25%;
    display: flex; gap: 10px; z-index: 20;
  }
  .dot { width: 28px; height: 4px; background: var(--border); cursor: pointer; transition: background 0.3s, width 0.3s; }
  .dot.active { background: var(--amber); width: 52px; }
  
  /* ── Counter ── */
  .slider-counter {
    position: absolute; bottom: 82px; right: 36px; z-index: 20;
    font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 3px; color: var(--text-muted);
  }
  .slider-counter span { color: var(--amber); font-size: 20px; }
  
  /* ── Stats ── */
  .hero-stats {
    position: absolute; bottom: 0; left: 0; right: 0; display: flex; z-index: 15;
    border-top: 1px solid var(--border); background: var(--stats-bg); backdrop-filter: blur(12px);
    transition: var(--trans);
  }
  .stat { flex: 1; text-align: center; padding: 15px 10px; border-right: 1px solid var(--border); }
  .stat:last-child { border-right: none; }
  .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 2px; color: var(--amber); line-height: 1; }
  .stat-label { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 3px; }
  
  /* ── Progress ── */
  .slider-progress {
    position: absolute; top: 0; left: 0; height: 3px; width: 0%; background: var(--amber); z-index: 16;
    transition: width linear;
  }
  
  /* ═══════════════════════════════════════
     SECTIONS
  ═══════════════════════════════════════ */
  section { padding: 100px 80px; transition: var(--trans); }
  
  .section-tag {
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase; color: var(--amber);
    margin-bottom: 14px; display: flex; align-items: center; gap: 12px;
  }
  .section-tag::before { content: ''; width: 32px; height: 2px; background: var(--amber); }
  .section-title {
    font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px,5vw,60px);
    letter-spacing: 2px; line-height: 1; margin-bottom: 18px; color: var(--text);
  }
  .amber-divider { width: 48px; height: 3px; background: var(--amber); margin-bottom: 20px; }
  
  /* ── About ── */
  #about { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
  .about-img-wrap { position: relative; }
  .about-img-placeholder {
    width: 100%; aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--card), var(--card-mid));
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .about-img-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg,transparent,transparent 18px,rgba(255,217,9,0.03) 18px,rgba(255,217,9,0.03) 19px);
  }
  .about-img-placeholder::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(105deg,transparent 25%,rgba(255,217,9,0.05) 50%,transparent 75%);
    animation: shimmer 3.5s ease-in-out infinite;
  }
  @keyframes shimmer { 0%,100%{transform:translateX(-120%)} 60%{transform:translateX(120%)} }
  .about-img-icon { font-size: 80px; opacity: 0.12; color: var(--amber); position: relative; z-index: 1; }
  .about-corner { position: absolute; width: 60px; height: 60px; border: 3px solid var(--amber); }
  .about-corner.tl { top:-12px; left:-12px; border-right:none; border-bottom:none; }
  .about-corner.br { bottom:-12px; right:-12px; border-left:none; border-top:none; }
  .about-badge {
    position: absolute; bottom: 28px; right: -28px;
    background: var(--amber); color: #000d26; padding: 18px 22px; text-align: center;
  }
  .about-badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; line-height: 1; }
  .about-badge-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-top: 3px; }
  .about-para { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--text-light); margin-bottom: 24px; }
  .about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .about-list li {
    display: flex; align-items: center; gap: 14px;
    font-size: 14px; font-weight: 500; color: var(--text-light);
    opacity: 0; transform: translateX(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .about-list.list-visible li { opacity: 1; transform: translateX(0); }
  .about-list li:nth-child(1){transition-delay:0.1s}
  .about-list li:nth-child(2){transition-delay:0.2s}
  .about-list li:nth-child(3){transition-delay:0.3s}
  .about-list li:nth-child(4){transition-delay:0.4s}
  .about-list li:nth-child(5){transition-delay:0.5s}
  .about-list li::before {
    content: '✓'; width: 22px; height: 22px; min-width: 22px;
    background: var(--amber-glow); border: 1px solid var(--amber);
    display: flex; align-items: center; justify-content: center;
    color: var(--amber); font-size: 11px; font-weight: 700;
  }
  
  /* ── Industries ── */
  #industries { background: var(--bg); }
  .industries-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
  .industries-header .section-tag { justify-content: center; }
  .industries-header .section-tag::before { display: none; }
  .industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; max-width: 1200px; margin: 0 auto; }
  .industry-card {
    background: var(--card); border: 1px solid var(--border); padding: 32px 18px;
    text-align: center; cursor: default;
    transition: background 0.3s, border-color 0.3s, transform 0.35s, box-shadow 0.35s;
    position: relative; overflow: hidden;
  }
  .industry-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--amber); transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
  }
  .industry-card:hover { background: var(--card-mid); border-color: var(--amber); transform: translateY(-6px); box-shadow: 0 12px 32px rgba(255,217,9,0.1); }
  .industry-card:hover::after { transform: scaleX(1); }
  .industry-icon { font-size: 32px; margin-bottom: 12px; display: block; transition: transform 0.35s; }
  .industry-card:hover .industry-icon { transform: scale(1.22) rotate(-6deg); }
  .industry-name {
    font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); transition: color 0.2s;
  }
  .industry-card:hover .industry-name { color: var(--amber); }
  
  /* ── Career ── */
  #career {
    background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    text-align: center; position: relative; overflow: hidden;
  }
  .career-shape {
    position: absolute; border-radius: 50%; pointer-events: none;
    animation: floatShape 7s ease-in-out infinite;
  }
  .career-shape:nth-child(1) { width: 360px; height: 360px; top: -100px; right: -80px; background: radial-gradient(circle,rgba(255,217,9,0.07),transparent 65%); }
  .career-shape:nth-child(2) { width: 220px; height: 220px; bottom: -50px; left: 8%; background: radial-gradient(circle,rgba(255,217,9,0.05),transparent 65%); animation-delay: 2.5s; }
  @keyframes floatShape { 0%,100%{transform:translateY(0) rotate(0deg)}50%{transform:translateY(-22px) rotate(8deg)} }
  .career-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
  .career-inner .section-tag { justify-content: center; }
  .career-inner .section-tag::before { display: none; }
  .career-desc { font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--text-muted); margin-bottom: 40px; }
  
  /* ── Contact ── */
  #contact { background: var(--bg); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; max-width: 1200px; margin: 0 auto; }
  .contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; font-size: 14px; color: var(--text-light); line-height: 1.6; }
  .contact-icon {
    width: 36px; height: 36px; background: var(--amber-glow); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; font-size: 14px;
    flex-shrink: 0; color: var(--amber); position: relative; transition: border-color 0.3s, background 0.3s;
  }
  .contact-detail:hover .contact-icon { background: var(--amber-glow); border-color: var(--amber); transform: scale(1.1); }
  .map-placeholder {
    width: 100%; height: 220px; background: var(--card); border: 1px solid var(--border);
    margin-top: 28px; display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 13px; position: relative; overflow: hidden;
  }
  .map-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background:
      repeating-linear-gradient(0deg,transparent,transparent 28px,var(--grid-line) 28px,var(--grid-line) 29px),
      repeating-linear-gradient(90deg,transparent,transparent 28px,var(--grid-line) 28px,var(--grid-line) 29px);
  }
  .map-pin { font-size: 32px; display: block; margin-bottom: 8px; }
  
  /* ── Forms ── */
  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; background: var(--card); border: 1px solid var(--border); color: var(--text);
    font-family: 'Barlow', sans-serif; font-size: 14px; padding: 13px 16px;
    outline: none; transition: border-color 0.2s, background 0.2s; appearance: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--amber); background: var(--card-mid); }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-group select option { background: var(--card); color: var(--text); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .btn-submit {
    font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; background: var(--amber); color: #000d26;
    border: none; cursor: pointer; padding: 15px 40px; width: 100%;
    clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
    transition: background 0.2s, transform 0.2s; margin-top: 8px;
  }
  .btn-submit:hover { background: #ffe642; transform: translateY(-2px); }
  
  /* ── Modal ── */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.82); backdrop-filter: blur(6px);
    align-items: center; justify-content: center; padding: 20px;
  }
  .modal-overlay.active { display: flex; }
  .modal { background: var(--surface); border: 1px solid var(--border); width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; animation: modalIn 0.3s ease; }
  @keyframes modalIn { from{opacity:0;transform:translateY(20px) scale(0.97)} to{opacity:1;transform:none} }
  .modal-header { padding: 28px 32px 0; display: flex; justify-content: space-between; align-items: flex-start; }
  .modal-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 34px; letter-spacing: 2px; color: var(--text); }
  .modal-header p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
  .modal-close {
    background: var(--card); border: 1px solid var(--border); color: var(--text);
    cursor: pointer; width: 36px; height: 36px; font-size: 18px; line-height: 36px;
    text-align: center; flex-shrink: 0; transition: background 0.2s, color 0.2s;
  }
  .modal-close:hover { background: var(--amber); color: #000d26; }
  .modal-body { padding: 24px 32px 32px; }
  .file-upload-label {
    display: flex; align-items: center; gap: 12px; background: var(--card);
    border: 1px dashed var(--border); padding: 18px 20px; cursor: pointer;
    transition: border-color 0.2s; font-size: 13px; color: var(--text-muted);
  }
  .file-upload-label:hover { border-color: var(--amber); color: var(--text-light); }
  .file-upload-label input { display: none; }
  .file-icon { font-size: 22px; }
  
  /* ── Footer ── */
  footer { background: var(--surface); border-top: 1px solid var(--border); padding: 64px 80px 32px; transition: var(--trans); }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto 48px; }
  .footer-about p { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--text-muted); margin-top: 18px; max-width: 280px; }
  .footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--amber); }
  .footer-contact-item { display: flex; gap: 10px; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
  .footer-contact-item span:first-child { color: var(--amber); }
  .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
  .footer-bottom p { font-size: 12px; color: var(--text-muted); }
  .footer-bottom strong { color: var(--amber); }
  
  /* ── Success ── */
  .success-msg {
    display: none; background: var(--amber-glow); border: 1px solid var(--amber);
    color: var(--amber); padding: 14px 18px; font-size: 13px; font-weight: 600;
    letter-spacing: 1px; margin-top: 12px; text-align: center;
  }
  .success-msg.show { display: block; }
  
  /* ═══════════════════════════════════════
     SCROLL ANIMATIONS
  ═══════════════════════════════════════ */
  .anim-fade-up {
    opacity: 0; transform: translateY(44px);
    transition: opacity 0.75s ease, transform 0.75s ease;
  }
  .anim-fade-left {
    opacity: 0; transform: translateX(-44px);
    transition: opacity 0.75s ease, transform 0.75s ease;
  }
  .anim-fade-right {
    opacity: 0; transform: translateX(44px);
    transition: opacity 0.75s ease, transform 0.75s ease;
  }
  .anim-scale {
    opacity: 0; transform: scale(0.88);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .anim-in { opacity: 1 !important; transform: none !important; }
  
  /* Industry card stagger */
  .industry-card { opacity: 0; transform: translateY(30px); transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s, border-color 0.3s, box-shadow 0.3s; }
  .industry-card.anim-in { opacity: 1; transform: translateY(0); }
  .industry-card:nth-child(1){transition-delay:0.04s}.industry-card:nth-child(2){transition-delay:0.08s}
  .industry-card:nth-child(3){transition-delay:0.12s}.industry-card:nth-child(4){transition-delay:0.16s}
  .industry-card:nth-child(5){transition-delay:0.20s}.industry-card:nth-child(6){transition-delay:0.24s}
  .industry-card:nth-child(7){transition-delay:0.28s}.industry-card:nth-child(8){transition-delay:0.32s}
  .industry-card:nth-child(9){transition-delay:0.36s}.industry-card:nth-child(10){transition-delay:0.40s}
  .industry-card:nth-child(11){transition-delay:0.44s}.industry-card:nth-child(12){transition-delay:0.48s}
  .industry-card:nth-child(13){transition-delay:0.52s}.industry-card:nth-child(14){transition-delay:0.56s}
  
  /* ═══════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════ */
  @media (max-width: 1024px) {
    nav { padding: 0 28px; }
    section { padding: 80px 32px; }
    .slide-text-panel { padding: 40px 36px 100px 40px; }
    .slider-arrow.prev { left: 10px; }
    .slider-arrow.next { right: 10px; }
    .about-grid, .contact-grid { gap: 48px; }
    .industries-grid { grid-template-columns: repeat(3,1fr); }
    footer { padding: 56px 32px 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .slide { grid-template-columns: 1fr; }
    .slide-img-panel { display: none; }
    .slide-text-panel { padding: 36px 28px 100px; }
    .slider-arrow { display: none; }
    .slider-counter { display: none; }
    .slider-dots { left: 50%; transform: translateX(-50%); bottom: 88px; }
    .hero-stats { flex-wrap: wrap; }
    .stat { flex: 1 1 50%; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-badge { right: 0; bottom: 10px; }
    section { padding: 60px 24px; }
    .industries-grid { grid-template-columns: repeat(2,1fr); }
    footer { padding: 48px 24px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
  }