/* =============================================
   RightCyber Solutions — Main Stylesheet
   Brand: #29ABE2 | Deep Black | Dark Surfaces
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Outfit:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --brand-blue:    #29ABE2;
  --deep-black:    #0D0D0D;
  --dark-surface:  #111827;
  --darker-surface:#0a0f1e;
  --white:         #FFFFFF;
  --light-gray:    #94A3B8;
  --glow-blue:     rgba(41,171,226,0.15);
  --gradient:      linear-gradient(135deg,#29ABE2,#0ea5e9,#0284c7);
  --nav-height:    70px;
  --top-bar-height:44px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-blue) #1a1a1a;
}
::-webkit-scrollbar{width:7px;}
::-webkit-scrollbar-track{background:#1a1a1a;}
::-webkit-scrollbar-thumb{background:var(--brand-blue);border-radius:4px;}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--deep-black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ── */
h1,h2,h3{font-family:'Barlow Condensed',sans-serif;font-weight:800;line-height:1.05;letter-spacing:0.01em;}
h4,h5,h6{font-family:'Outfit',sans-serif;font-weight:600;line-height:1.3;}
h1{font-size:clamp(2.6rem,6vw,5.2rem);}
h2{font-size:clamp(2rem,4.5vw,3.8rem);}
h3{font-size:clamp(1.6rem,3vw,2.4rem);}
h4{font-size:1.25rem;}
p{font-family:'DM Sans',sans-serif;color:var(--light-gray);line-height:1.75;}
a{color:var(--brand-blue);text-decoration:none;transition:color .3s;}
a:hover{color:#fff;}
img{max-width:100%;height:auto;display:block;}

/* ── Layout ── */
.container{max-width:1280px;margin:0 auto;padding:0 1.5rem;}

/* ── Utility ── */
.section-tag{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'Outfit',sans-serif;font-size:.78rem;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;color:var(--brand-blue);
  margin-bottom:1rem;
}
.section-tag::before{
  content:'';display:inline-block;width:28px;height:2px;
  background:var(--brand-blue);flex-shrink:0;
}
.section-heading{margin-bottom:.75rem;color:var(--white);}
.section-heading span{color:var(--brand-blue);}
.section-subtext{font-size:1.05rem;color:var(--light-gray);max-width:640px;margin-bottom:3rem;}
.section-header{text-align:center;margin-bottom:4rem;}
.section-header .section-subtext{margin:0 auto 0;}

.glow-divider{
  width:100%;height:1px;
  background:linear-gradient(90deg,transparent,var(--brand-blue),transparent);
  opacity:.4;margin:0;
}
.text-blue{color:var(--brand-blue);}
.text-center{text-align:center;}

/* Scroll progress bar */
#scroll-progress{
  position:fixed;top:0;left:0;height:2px;width:0;
  background:var(--gradient);z-index:9999;
  transition:width .1s linear;
}

/* ── Buttons ── */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:.9rem 2.2rem;border-radius:6px;
  font-family:'Outfit',sans-serif;font-weight:700;font-size:.95rem;
  letter-spacing:.05em;transition:all .3s;cursor:pointer;
  border:none;text-decoration:none;white-space:nowrap;
}
.btn-primary{
  background:var(--gradient);color:#fff;
  box-shadow:0 0 24px rgba(41,171,226,.35);
}
.btn-primary:hover{
  box-shadow:0 0 42px rgba(41,171,226,.65);
  transform:translateY(-2px);color:#fff;
}
.btn-secondary{
  background:transparent;color:var(--brand-blue);
  border:1.5px solid var(--brand-blue);
}
.btn-secondary:hover{
  background:var(--glow-blue);
  box-shadow:0 0 22px rgba(41,171,226,.3);
  transform:translateY(-2px);color:var(--brand-blue);
}
.btn svg{width:18px;height:18px;flex-shrink:0;}

/* ── Top Bar ── */
.top-bar{
  background:var(--darker-surface);
  border-bottom:1px solid rgba(41,171,226,.18);
  height:var(--top-bar-height);display:flex;align-items:center;
}
.top-bar .container{
  display:flex;justify-content:center;
  align-items:center;gap:2rem;width:100%;
}
.top-bar-contact{
  display:flex;align-items:center;gap:2rem;
  font-size:1rem;font-family:'Outfit',sans-serif;letter-spacing:.03em;
}
.top-bar-contact .divider{color:rgba(148,163,184,.3);}
.top-bar-contact span{color:var(--light-gray);}
.top-bar-contact strong{color:var(--brand-blue);font-weight:700;font-size:1.05rem;}
.top-bar-contact a{color:var(--white);}
.top-bar-contact a:hover{color:var(--brand-blue);}

/* ── Navbar ── */
.navbar{
  position:sticky;top:0;left:0;right:0;
  z-index:1000;height:var(--nav-height);display:flex;align-items:center;
  background:rgba(13,13,13,.96);
  border-bottom:1px solid rgba(41,171,226,.1);
  transition:all .4s ease;
}
.navbar.scrolled{
  background:rgba(10,15,30,.92);
  backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px);
  border-bottom-color:rgba(41,171,226,.25);
  box-shadow:0 4px 40px rgba(0,0,0,.6);
}
.nav-container{
  max-width:1280px;margin:0 auto;padding:0 1.5rem;
  display:flex;align-items:center;justify-content:space-between;width:100%;
}

/* Logo */
.nav-logo{display:flex;align-items:center;text-decoration:none;flex-shrink:0;}
.site-logo{height:95px;width:auto;display:block;flex-shrink:0;}
@media(max-width:768px){.site-logo{height:77px;}}

/* Nav menu */
.nav-menu{display:flex;align-items:center;gap:.15rem;list-style:none;}
.nav-item{position:relative;}
.nav-link{
  display:flex;align-items:center;gap:3px;
  padding:.5rem .85rem;color:var(--white);
  font-family:'Outfit',sans-serif;font-size:.88rem;font-weight:500;
  letter-spacing:.05em;text-decoration:none;
  transition:color .3s;border-radius:4px;white-space:nowrap;
}
.nav-link:hover,.nav-link.active{color:var(--brand-blue);}
.nav-link .chevron{width:13px;height:13px;transition:transform .3s;flex-shrink:0;}
.nav-item:hover .chevron{transform:rotate(180deg);}

/* Dropdown */
.dropdown{
  position:absolute;top:calc(100% + 10px);left:50%;
  min-width:250px;background:var(--dark-surface);
  border:1px solid rgba(41,171,226,.2);border-radius:10px;
  padding:.5rem;opacity:0;visibility:hidden;
  transform:translateX(-50%) translateY(-8px);
  transition:all .28s cubic-bezier(.4,0,.2,1);
  box-shadow:0 20px 60px rgba(0,0,0,.6),0 0 30px rgba(41,171,226,.08);
}
.nav-item:hover .dropdown{
  opacity:1;visibility:visible;
  transform:translateX(-50%) translateY(0);
}
.dropdown a{
  display:block;padding:.6rem 1rem;
  color:var(--light-gray);font-family:'DM Sans',sans-serif;font-size:.88rem;
  border-radius:5px;transition:all .2s;text-decoration:none;
}
.dropdown a:hover{color:var(--brand-blue);background:var(--glow-blue);}
.dropdown-divider{height:1px;background:rgba(41,171,226,.1);margin:.4rem 0;}

/* Hamburger */
.menu-toggle{
  display:none;background:none;border:none;cursor:pointer;
  flex-direction:column;gap:5px;padding:6px;
}
.menu-toggle span{
  display:block;width:24px;height:2px;background:var(--white);
  transition:all .3s;border-radius:2px;
}
.menu-toggle.active span:nth-child(1){transform:rotate(45deg) translate(5px,4px);}
.menu-toggle.active span:nth-child(2){opacity:0;transform:scaleX(0);}
.menu-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-4px);}

/* ============================================
   HERO SECTION
   ============================================ */
.hero{
  position:relative;min-height:92vh;display:flex;
  align-items:center;overflow:hidden;background:var(--deep-black);
  padding:3rem 0;
}
.hero-bg{position:absolute;inset:0;z-index:0;}
#hero-canvas{position:absolute;inset:0;width:100%;height:100%;}
.hero-grid-pattern{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(41,171,226,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(41,171,226,.025) 1px,transparent 1px);
  background-size:64px 64px;
}
.hero-orbital{
  position:absolute;right:-5%;top:50%;transform:translateY(-50%);
  opacity:.12;pointer-events:none;width:55%;max-width:720px;
}
.hero-content{position:relative;z-index:2;max-width:820px;}
.hero .container{width:100%;}

.hero-tag{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(41,171,226,.1);border:1px solid rgba(41,171,226,.3);
  border-radius:100px;padding:.4rem 1.1rem;
  font-family:'Outfit',sans-serif;font-size:.78rem;font-weight:700;
  letter-spacing:.16em;text-transform:uppercase;color:var(--brand-blue);
  margin-bottom:1.5rem;opacity:0;animation:fadeSlideUp .8s .2s forwards;
}
.hero h1{
  color:var(--white);margin-bottom:1.5rem;
  opacity:0;animation:fadeSlideUp .8s .4s forwards;
}
.hero h1 .accent{color:var(--brand-blue);}
.hero p{
  font-size:1.12rem;max-width:640px;margin-bottom:2.5rem;
  opacity:0;animation:fadeSlideUp .8s .6s forwards;
}
.hero-cta{
  display:flex;gap:1rem;flex-wrap:wrap;
  opacity:0;animation:fadeSlideUp .8s .8s forwards;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar{
  background:var(--dark-surface);
  border-top:1px solid rgba(41,171,226,.2);
  border-bottom:1px solid rgba(41,171,226,.2);
  padding:3.5rem 0;
}
.stats-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;
}
.stat-item{text-align:center;position:relative;}
.stat-item+.stat-item::before{
  content:'';position:absolute;left:0;top:20%;height:60%;
  width:1px;background:rgba(41,171,226,.15);
}
.stat-number{
  font-family:'Barlow Condensed',sans-serif;font-weight:800;
  font-size:3.6rem;color:var(--brand-blue);line-height:1;margin-bottom:.5rem;
}
.stat-label{
  font-family:'Outfit',sans-serif;font-size:.82rem;
  color:var(--light-gray);font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar{
  padding:2rem 0;background:var(--darker-surface);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.trust-bar .container{
  display:flex;justify-content:center;align-items:center;
  gap:3rem;flex-wrap:wrap;
}
.trust-badge{
  display:flex;align-items:center;gap:10px;
  opacity:.65;transition:opacity .3s;
  font-family:'Outfit',sans-serif;font-size:.82rem;font-weight:600;
  color:var(--light-gray);letter-spacing:.08em;text-transform:uppercase;
}
.trust-badge:hover{opacity:1;}
.trust-badge-icon{
  width:42px;height:42px;background:var(--glow-blue);
  border:1px solid rgba(41,171,226,.3);border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  color:var(--brand-blue);font-size:1.3rem;flex-shrink:0;
}

/* ============================================
   HOW WE HELP
   ============================================ */
.how-we-help{
  padding:6rem 0;background:var(--darker-surface);
  position:relative;overflow:hidden;
}
.how-we-help::before{
  content:'';position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,var(--brand-blue),transparent);
  opacity:.4;
}
.services-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(270px,1fr));gap:1.5rem;
}
.service-card{
  background:var(--dark-surface);border:1px solid rgba(41,171,226,.1);
  border-radius:12px;padding:2.5rem 2rem;transition:all .3s;
  cursor:pointer;text-decoration:none;display:block;
}
.service-card:hover{
  transform:translateY(-5px);
  border-color:rgba(41,171,226,.45);
  box-shadow:0 10px 45px rgba(41,171,226,.22),0 0 0 1px rgba(41,171,226,.1);
}
.service-card-icon{
  width:54px;height:54px;background:var(--glow-blue);
  border:1px solid rgba(41,171,226,.3);border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.5rem;color:var(--brand-blue);font-size:1.5rem;
}
.service-card h4{color:var(--white);margin-bottom:.65rem;}
.service-card p{font-size:.92rem;line-height:1.65;}
.learn-more{
  display:inline-flex;align-items:center;gap:5px;
  color:var(--brand-blue);font-family:'Outfit',sans-serif;
  font-weight:700;font-size:.8rem;margin-top:1.2rem;
  letter-spacing:.08em;text-transform:uppercase;
}
.learn-more svg{width:14px;height:14px;transition:transform .3s;}
.service-card:hover .learn-more svg{transform:translateX(4px);}

/* ============================================
   PHOTO STRIP
   ============================================ */
.photo-strip{
  padding:2.5rem 0;overflow:hidden;
  background:var(--dark-surface);
  border-top:1px solid rgba(41,171,226,.1);
  border-bottom:1px solid rgba(41,171,226,.1);
}
.strip-track{
  display:flex;gap:1.25rem;
  animation:marquee 48s linear infinite;
  width:max-content;
}
.strip-photo{
  width:280px;height:188px;border-radius:8px;
  object-fit:cover;flex-shrink:0;
  border:1px solid rgba(41,171,226,.1);
  background:var(--dark-surface);
}
@keyframes marquee{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* ============================================
   PAIN POINTS
   ============================================ */
.pain-points{padding:6rem 0;background:var(--deep-black);}
.pain-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
  gap:1.5rem;margin-top:3rem;
}
.pain-card{
  background:var(--dark-surface);border:1px solid rgba(255,255,255,.05);
  border-radius:12px;padding:2.2rem;transition:all .3s;
  position:relative;overflow:hidden;
}
.pain-card::before{
  content:'';position:absolute;top:0;left:0;
  width:3px;height:0;background:var(--gradient);
  transition:height .45s ease;
}
.pain-card:hover::before{height:100%;}
.pain-card:hover{
  border-color:rgba(41,171,226,.22);
  box-shadow:0 10px 35px rgba(0,0,0,.4);
  transform:translateY(-4px);
}
.pain-problem{
  font-family:'Outfit',sans-serif;font-size:.88rem;
  color:rgba(148,163,184,.75);margin-bottom:1rem;
  padding:.7rem 1rem;background:rgba(255,255,255,.03);
  border-radius:6px;border-left:2px solid rgba(255,255,255,.1);
  font-style:italic;line-height:1.5;
}
.pain-solution{
  font-family:'Barlow Condensed',sans-serif;font-size:1.3rem;
  font-weight:700;color:var(--white);line-height:1.3;
}
.pain-solution span{color:var(--brand-blue);}

/* ============================================
   SUCCESS STORIES
   ============================================ */
.success-stories{padding:6rem 0;background:var(--darker-surface);}
.stories-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1.5rem;margin-top:3rem;
}
.story-card{
  border-radius:12px;overflow:hidden;position:relative;
  cursor:pointer;text-decoration:none;display:block;
  transition:box-shadow .4s;
}
.story-card:hover{box-shadow:0 8px 40px rgba(41,171,226,.2);}
.story-img-wrap{position:relative;height:220px;overflow:hidden;}
.story-img-wrap img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .6s ease;
}
.story-card:hover .story-img-wrap img{transform:scale(1.08);}
.story-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.88) 0%,rgba(41,171,226,.2) 100%);
  opacity:0;transition:opacity .4s;
}
.story-card:hover .story-overlay{opacity:1;}
.story-info{
  padding:1.4rem 1.5rem;background:var(--dark-surface);
  border:1px solid rgba(41,171,226,.1);border-top:none;
  border-radius:0 0 12px 12px;
}
.story-tag{
  font-family:'Outfit',sans-serif;font-size:.72rem;
  color:var(--brand-blue);font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;margin-bottom:.4rem;
}
.story-info h4{color:var(--white);font-size:1rem;margin-bottom:.55rem;}
.story-icon-wrap{
  height:160px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--dark-surface) 0%,var(--darker-surface) 100%);
  border:1px solid rgba(41,171,226,.15);border-radius:12px 12px 0 0;border-bottom:none;
  font-size:3.2rem;
}
.story-desc{color:var(--text-muted);font-size:.875rem;line-height:1.65;margin:.55rem 0 1rem;}
.story-result{
  display:flex;align-items:center;gap:.55rem;
  font-size:.8rem;font-weight:700;color:var(--brand-blue);
}
.story-result::before{
  content:'';display:block;width:8px;height:8px;
  border-radius:50%;background:var(--brand-blue);flex-shrink:0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section{padding:6rem 0;background:var(--deep-black);}
.faq-list{max-width:800px;margin:3rem auto 0;}
.faq-item{
  border:1px solid rgba(41,171,226,.12);border-radius:9px;
  margin-bottom:.875rem;overflow:hidden;transition:border-color .3s;
}
.faq-item.active{border-color:rgba(41,171,226,.4);}
.faq-question{
  width:100%;background:var(--dark-surface);border:none;
  padding:1.2rem 1.5rem;display:flex;align-items:center;
  justify-content:space-between;cursor:pointer;transition:background .3s;
}
.faq-question:hover{background:rgba(41,171,226,.05);}
.faq-question span{
  font-family:'Outfit',sans-serif;font-size:.975rem;font-weight:600;
  color:var(--white);text-align:left;line-height:1.4;
}
.faq-icon{
  width:26px;height:26px;min-width:26px;
  border:1.5px solid rgba(41,171,226,.4);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin-left:1rem;color:var(--brand-blue);font-size:1.25rem;line-height:1;
  transition:transform .3s;
}
.faq-item.active .faq-icon{transform:rotate(45deg);}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .45s ease;}
.faq-answer.open{max-height:400px;}
.faq-answer p{
  padding:1.2rem 1.5rem;
  border-top:1px solid rgba(41,171,226,.1);
  background:var(--dark-surface);font-size:.95rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section{
  padding:6rem 0;background:var(--darker-surface);
  text-align:center;position:relative;overflow:hidden;
}
.cta-section::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 70% 70% at 50% 50%,rgba(41,171,226,.1) 0%,transparent 70%);
}
.cta-section .container{position:relative;z-index:1;}
.cta-section h2{margin-bottom:1rem;}
.cta-section p{max-width:600px;margin:0 auto 2.5rem;font-size:1.05rem;}
.cta-buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}

/* ============================================
   INNER PAGE HERO
   ============================================ */
.page-hero{
  padding:5rem 0 4.5rem;background:var(--darker-surface);
  position:relative;overflow:hidden;
}
.page-hero::after{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 80% 60% at 50% 100%,rgba(41,171,226,.08) 0%,transparent 60%);
}
.page-hero-grid{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(41,171,226,.022) 1px,transparent 1px),
    linear-gradient(90deg,rgba(41,171,226,.022) 1px,transparent 1px);
  background-size:44px 44px;
}
.page-hero .container{position:relative;z-index:2;}
.breadcrumb{
  display:flex;align-items:center;gap:8px;
  font-family:'Outfit',sans-serif;font-size:.82rem;
  color:var(--light-gray);margin-bottom:1.75rem;
}
.breadcrumb a{color:var(--light-gray);}
.breadcrumb a:hover{color:var(--brand-blue);}
.breadcrumb .sep{color:rgba(148,163,184,.4);}
.breadcrumb .current{color:var(--brand-blue);}
.page-hero h1{margin-bottom:1rem;}
.page-hero h1 span{color:var(--brand-blue);}
.page-hero p{font-size:1.1rem;max-width:660px;margin-bottom:2rem;}

/* ============================================
   SERVICES OVERVIEW PAGE
   ============================================ */
.services-overview{padding:6rem 0;background:var(--deep-black);}
.services-full-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem;
}
.service-full-card{
  background:var(--dark-surface);border:1px solid rgba(41,171,226,.1);
  border-radius:12px;padding:2.5rem 2rem;transition:all .3s;
  display:flex;flex-direction:column;text-decoration:none;
}
.service-full-card:hover{
  transform:translateY(-5px);border-color:rgba(41,171,226,.45);
  box-shadow:0 10px 45px rgba(41,171,226,.22);
}
.service-full-card .card-icon{
  width:54px;height:54px;background:var(--glow-blue);
  border:1px solid rgba(41,171,226,.3);border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  color:var(--brand-blue);font-size:1.5rem;
}
.service-full-card h3{font-size:1.5rem;color:var(--white);margin:1.4rem 0 .7rem;}
.service-full-card p{font-size:.92rem;flex:1;}
.service-full-card .card-link{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--brand-blue);font-family:'Outfit',sans-serif;
  font-weight:700;font-size:.8rem;margin-top:1.5rem;
  letter-spacing:.08em;text-transform:uppercase;
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */
.service-detail{padding:6rem 0;background:var(--deep-black);}
.service-intro{
  display:grid;grid-template-columns:1fr 1fr;gap:5rem;
  align-items:center;margin-bottom:5rem;
}
.service-intro-img{
  border-radius:12px;overflow:hidden;
  border:1px solid rgba(41,171,226,.2);
  aspect-ratio:4/3;background:var(--dark-surface);
}
.service-intro-img img{width:100%;height:100%;object-fit:cover;}
.service-features{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
  gap:1.5rem;margin-top:1rem;
}
.feature-card{
  background:var(--dark-surface);border:1px solid rgba(41,171,226,.1);
  border-radius:12px;padding:2rem;transition:all .3s;
}
.feature-card:hover{
  border-color:rgba(41,171,226,.35);
  box-shadow:0 6px 25px rgba(41,171,226,.1);
}
.feature-icon{
  width:44px;height:44px;background:var(--glow-blue);
  border:1px solid rgba(41,171,226,.3);border-radius:9px;
  display:flex;align-items:center;justify-content:center;
  color:var(--brand-blue);font-size:1.2rem;margin-bottom:1rem;
}
.feature-card h4{color:var(--white);margin-bottom:.5rem;}
.feature-card p{font-size:.9rem;}

/* ============================================
   INDUSTRY PAGES
   ============================================ */
.industry-section{padding:6rem 0;background:var(--deep-black);}
.industry-intro{
  display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start;
  margin-bottom:5rem;
}
.industry-img{
  border-radius:12px;overflow:hidden;
  border:1px solid rgba(41,171,226,.2);
  aspect-ratio:4/3;background:var(--dark-surface);
}
.industry-img img{width:100%;height:100%;object-fit:cover;}
.list-section h3{margin-bottom:1.5rem;}
.check-list{list-style:none;margin-top:.5rem;}
.check-list li{
  display:flex;align-items:flex-start;gap:.9rem;
  padding:.85rem 0;border-bottom:1px solid rgba(255,255,255,.04);
  color:var(--light-gray);font-size:.95rem;line-height:1.6;
}
.check-list li:last-child{border-bottom:none;}
.check-list .icon{
  width:22px;height:22px;min-width:22px;
  background:var(--glow-blue);border:1px solid rgba(41,171,226,.3);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  color:var(--brand-blue);font-size:.7rem;font-weight:700;margin-top:1px;
}
.warn-list{list-style:none;}
.warn-list li{
  display:flex;align-items:flex-start;gap:.9rem;
  padding:.85rem 0;border-bottom:1px solid rgba(255,255,255,.04);
  color:var(--light-gray);font-size:.95rem;line-height:1.6;
}
.warn-list li:last-child{border-bottom:none;}
.warn-list .icon{
  width:22px;height:22px;min-width:22px;
  background:rgba(239,68,68,.1);border:1px solid rgba(239,68,68,.3);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  color:#ef4444;font-size:.7rem;font-weight:700;margin-top:1px;
}
.industry-features{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:1.5rem;padding:5rem 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section{padding:6rem 0;background:var(--deep-black);}
.about-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:5rem;align-items:center;margin-bottom:5rem;
}
.about-img{
  border-radius:12px;overflow:hidden;
  border:1px solid rgba(41,171,226,.2);
  aspect-ratio:4/3;background:var(--dark-surface);
}
.about-img img{width:100%;height:100%;object-fit:cover;}
.values-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.5rem;margin-top:3rem;
}
.value-card{
  background:var(--dark-surface);border:1px solid rgba(41,171,226,.1);
  border-radius:12px;padding:2rem;transition:all .3s;
}
.value-card:hover{
  transform:translateY(-4px);border-color:rgba(41,171,226,.35);
  box-shadow:0 8px 30px rgba(41,171,226,.12);
}
.value-icon{
  font-size:2rem;margin-bottom:1rem;
  width:52px;height:52px;background:var(--glow-blue);
  border:1px solid rgba(41,171,226,.3);border-radius:10px;
  display:flex;align-items:center;justify-content:center;
}
.value-card h4{color:var(--white);margin-bottom:.5rem;}
.team-section{padding:0 0 6rem;background:var(--deep-black);}
.team-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:2rem;margin-top:3rem;
}
.team-card{
  background:var(--dark-surface);border:1px solid rgba(41,171,226,.1);
  border-radius:12px;overflow:hidden;text-align:center;transition:all .3s;
}
.team-card:hover{transform:translateY(-4px);border-color:rgba(41,171,226,.3);}
.team-photo{
  width:100%;height:200px;object-fit:cover;
  background:var(--darker-surface);display:flex;align-items:center;
  justify-content:center;color:var(--brand-blue);font-size:3rem;
}
.team-info{padding:1.4rem;}
.team-info h4{color:var(--white);margin-bottom:.25rem;}
.team-info p{font-size:.82rem;color:var(--brand-blue);}
#careers{padding:6rem 0;background:var(--darker-surface);}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section{padding:6rem 0;background:var(--deep-black);}
.contact-grid{display:grid;grid-template-columns:1fr 1.6fr;gap:5rem;}
.contact-info h3{color:var(--white);margin-bottom:1.5rem;}
.contact-detail{
  display:flex;align-items:flex-start;gap:1rem;margin-bottom:1.75rem;
}
.contact-icon{
  width:48px;height:48px;min-width:48px;
  background:var(--glow-blue);border:1px solid rgba(41,171,226,.3);
  border-radius:10px;display:flex;align-items:center;justify-content:center;
  color:var(--brand-blue);font-size:1.2rem;
}
.contact-detail-text strong{
  display:block;font-family:'Outfit',sans-serif;
  font-weight:600;color:var(--white);margin-bottom:.25rem;font-size:.9rem;
}
.contact-detail-text a,.contact-detail-text span{color:var(--light-gray);font-size:.9rem;}
.contact-detail-text a:hover{color:var(--brand-blue);}
.contact-form{
  background:var(--dark-surface);border:1px solid rgba(41,171,226,.15);
  border-radius:16px;padding:3rem;
}
.form-group{margin-bottom:1.4rem;}
.form-group label{
  display:block;font-family:'Outfit',sans-serif;font-size:.82rem;
  font-weight:700;color:var(--white);margin-bottom:.5rem;letter-spacing:.05em;
}
.form-group input,
.form-group textarea,
.form-group select{
  width:100%;background:rgba(255,255,255,.04);
  border:1px solid rgba(41,171,226,.2);border-radius:8px;
  padding:.85rem 1rem;color:var(--white);
  font-family:'DM Sans',sans-serif;font-size:.95rem;
  transition:all .3s;outline:none;
}
.form-group input::placeholder,
.form-group textarea::placeholder{color:rgba(148,163,184,.45);}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  border-color:var(--brand-blue);
  box-shadow:0 0 0 3px rgba(41,171,226,.15);
  background:rgba(41,171,226,.04);
}
.form-group textarea{min-height:140px;resize:vertical;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
.map-section{padding:0 0 6rem;background:var(--deep-black);}
.map-embed{
  border-radius:12px;overflow:hidden;
  border:1px solid rgba(41,171,226,.1);height:420px;
}
.map-embed iframe{width:100%;height:100%;border:none;filter:grayscale(1) invert(1) brightness(.85);}

/* ============================================
   FOOTER
   ============================================ */
.site-footer{
  background:var(--deep-black);
  border-top:1px solid rgba(41,171,226,.2);
  padding:5rem 0 2rem;
}
.footer-grid{
  display:grid;grid-template-columns:2fr repeat(4,1fr);
  gap:3rem;margin-bottom:4rem;
}
.footer-brand p{margin-top:1rem;font-size:.88rem;line-height:1.7;max-width:300px;}
.footer-social{display:flex;gap:.875rem;margin-top:1.5rem;}
.social-link{
  width:38px;height:38px;border:1px solid rgba(41,171,226,.25);border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  color:var(--light-gray);transition:all .3s;text-decoration:none;
}
.social-link:hover{border-color:var(--brand-blue);color:var(--brand-blue);background:var(--glow-blue);}
.footer-col h5{
  font-family:'Outfit',sans-serif;font-size:.72rem;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;color:var(--white);margin-bottom:1.2rem;
}
.footer-col ul{list-style:none;}
.footer-col ul li{margin-bottom:.55rem;}
.footer-col ul li a{color:var(--light-gray);font-size:.88rem;text-decoration:none;transition:color .3s;}
.footer-col ul li a:hover{color:var(--brand-blue);}
.footer-contact p{font-size:.88rem;margin-bottom:.5rem;}
.footer-contact a{color:var(--light-gray);transition:color .3s;}
.footer-contact a:hover{color:var(--brand-blue);}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.05);padding-top:2rem;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:1rem;
}
.footer-bottom p{font-size:.82rem;color:rgba(148,163,184,.55);}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeSlideUp{
  from{opacity:0;transform:translateY(32px);}
  to{opacity:1;transform:translateY(0);}
}
@keyframes pulseGlow{
  0%,100%{box-shadow:0 0 22px rgba(41,171,226,.3);}
  50%{box-shadow:0 0 45px rgba(41,171,226,.65);}
}

.reveal{
  opacity:0;transform:translateY(38px);
  transition:opacity .7s ease,transform .7s ease;
}
.reveal.visible{opacity:1;transform:translateY(0);}
.reveal-delay-1{transition-delay:.1s;}
.reveal-delay-2{transition-delay:.2s;}
.reveal-delay-3{transition-delay:.3s;}
.reveal-delay-4{transition-delay:.4s;}
.reveal-delay-5{transition-delay:.5s;}

.underline-accent{position:relative;display:inline-block;}
.underline-accent::after{
  content:'';position:absolute;bottom:-4px;left:0;
  height:3px;width:0;background:var(--gradient);
  transition:width .7s cubic-bezier(.4,0,.2,1);
}
.underline-accent.visible::after{width:100%;}

/* ============================================
   LEGAL PAGES (TOS / PRIVACY)
   ============================================ */
.legal-section{padding:5rem 0 7rem;background:var(--deep-black);}
.legal-prose{max-width:820px;margin:0 auto;}
.legal-meta{font-size:.85rem;color:var(--text-muted);margin-bottom:3rem;padding-bottom:1.5rem;border-bottom:1px solid rgba(41,171,226,.12);}
.legal-prose h2{
  color:var(--white);font-size:1.35rem;margin:2.75rem 0 .75rem;
  padding-bottom:.5rem;border-bottom:1px solid rgba(41,171,226,.12);
}
.legal-prose h3{color:var(--brand-blue);font-size:1rem;margin:1.6rem 0 .5rem;font-weight:700;}
.legal-prose p{color:var(--light-gray);line-height:1.8;margin-bottom:1rem;font-size:.97rem;}
.legal-prose ul,.legal-prose ol{
  color:var(--light-gray);line-height:1.8;margin:.5rem 0 1rem 1.5rem;font-size:.97rem;
}
.legal-prose li{margin-bottom:.4rem;}
.legal-prose a{color:var(--brand-blue);text-decoration:underline;}
.legal-prose a:hover{color:var(--white);}
.legal-prose strong{color:var(--white);}

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width:1100px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:2.5rem;}
  .service-intro,.industry-intro,.about-grid,.contact-grid{
    grid-template-columns:1fr;gap:3rem;
  }
}
@media(max-width:768px){
  :root{--nav-height:60px;}
  .nav-menu{
    position:fixed;top:var(--nav-height);left:0;right:0;bottom:0;
    background:rgba(13,13,13,.98);flex-direction:column;
    align-items:flex-start;padding:1.5rem;
    overflow-y:auto;transform:translateX(-100%);
    transition:transform .4s ease;gap:0;
    border-top:1px solid rgba(41,171,226,.15);
  }
  .nav-menu.open{transform:translateX(0);}
  .nav-item{width:100%;}
  .nav-link{
    padding:.95rem 0;font-size:1rem;
    border-bottom:1px solid rgba(255,255,255,.05);width:100%;
  }
  .dropdown{
    position:static;transform:none;opacity:1;visibility:visible;
    background:rgba(255,255,255,.03);border:none;border-radius:0;
    padding:0 0 0 1rem;box-shadow:none;display:none;width:100%;min-width:0;
  }
  /* Override higher-specificity hover rule so touch-hover can't re-apply transform */
  .nav-item:hover .dropdown{position:static;transform:none;}
  .nav-item.open .dropdown{display:block;}
  .menu-toggle{display:flex;}
  .stats-grid{grid-template-columns:repeat(2,1fr);}
  .hero{min-height:80vh;padding:3rem 0;}
  .hero p{font-size:1rem;}
  .site-footer{padding:2.5rem 0 1.25rem;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:1.25rem 1.5rem;margin-bottom:1.5rem;}
  .footer-brand{grid-column:1/-1;}
  .footer-tagline,.footer-col-extras,.footer-serving{display:none;}
  .footer-col h5{margin-bottom:.6rem;font-size:.68rem;}
  .footer-col ul li{margin-bottom:.3rem;}
  .footer-col ul li a{font-size:.82rem;}
  .footer-contact p{font-size:.82rem;margin-bottom:.35rem;}
  .top-bar-contact{gap:.8rem;font-size:.88rem;}
  .form-row{grid-template-columns:1fr;}
  .contact-form{padding:2rem;}
  .footer-bottom{flex-direction:column;text-align:center;}
  .page-hero{padding:3.5rem 0 3rem;}
  .stat-item+.stat-item::before{display:none;}
}
@media(max-width:480px){
  .hero-cta{flex-direction:column;}
  .btn{width:100%;justify-content:center;}
  .top-bar{display:none;}
  .cta-buttons{flex-direction:column;align-items:center;}
  .trust-bar .container{gap:1.5rem;}
}
