/* ─── RESET & TOKENS ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue:         #19376D;
  --blue-dark:    #0F172A;
  --blue-mid:     #1E3A6E;
  --blue-light:   #2C4E8A;
  --orange:       #F68B1F;
  --orange-lt:    #FFA94D;
  --orange-dk:    #D4731A;
  --bg-light:     #F0F4FB;
  --bg-dark:      #0F172A;
  --card:         #FFFFFF;
  --card-dark:    #1E293B;
  --text:         #12264D;
  --text-sec:     #475569;
  --text-muted:   #64748B;
  --success:      #16A34A;
  --warning:      #D97706;
  --error:        #DC2626;
  --inprog:       #2563EB;
  --r-xs: 4px; --r-sm: 8px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px;
  --ease:         cubic-bezier(0.23,1,0.32,1);
  --ease-reveal:  cubic-bezier(.2,.8,.2,1);
  --shadow-sm:    0 2px 8px rgba(25,55,109,.06);
  --shadow-md:    0 4px 16px rgba(25,55,109,.08);
  --shadow-lg:    0 12px 40px rgba(25,55,109,.10);
  --shadow-xl:    0 24px 60px rgba(25,55,109,.12);
  --glass:        rgba(255,255,255,.04);
  --glass-border: rgba(255,255,255,.08);
}
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family:'Inter',sans-serif; background:var(--bg-light);
  color:var(--text); -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
img { display:block; max-width:100%; }
a   { text-decoration:none; color:inherit; }
ul  { list-style:none; }
button { font-family:inherit; cursor:pointer; }
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--bg-dark); }
::-webkit-scrollbar-thumb { background:var(--orange); border-radius:3px; }

:focus-visible { outline:2px solid var(--orange); outline-offset:3px; border-radius:4px; }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container { max-width:1280px; margin:0 auto; padding:0 40px; }

section { padding: 60px 0 !important; scroll-margin-top: 80px; }
#hero { padding: 80px 0 !important; }
#trust { padding: 30px 0 !important; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.tag {
  display:inline-flex; align-items:center; gap:8px;
  font-family:'DM Mono',monospace; font-size:10.5px;
  font-weight:500; letter-spacing:.13em; text-transform:uppercase;
  color:var(--orange); padding:6px 14px;
  border:1px solid rgba(246,139,31,.25); border-radius:2px;
  background:rgba(246,139,31,.05);
}
.tag::before { content:''; width:5px; height:5px; background:var(--orange); border-radius:50%; }

.section-head {
  font-family:'Playfair Display',serif;
  font-size:clamp(32px,3.8vw,50px);
  font-weight:900; line-height:1.08; letter-spacing:-.025em;
  color:var(--text);
}
.section-head em { font-style:italic; color:var(--blue); }
.section-head.light { color:#fff; }
.section-head.light em { color:var(--orange); }
.section-sub { font-size:15px; line-height:1.8; color:var(--text-sec); max-width:540px; }
.section-sub.light { color:rgba(255,255,255,.6); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--orange); color:#fff; font-weight:600; font-size:14px;
  padding:14px 28px; border-radius:var(--r-sm); border:none;
  transition:all .35s var(--ease);
  letter-spacing:.02em; white-space:nowrap;
  box-shadow:0 4px 12px rgba(246,139,31,.25);
}
.btn-primary:hover {
  background:var(--orange-lt); transform:translateY(-2px);
  box-shadow:0 12px 36px rgba(246,139,31,.35);
}
.btn-primary .arr { transition:transform .3s ease; }
.btn-primary:hover .arr { transform:translateX(4px); }

.btn-ghost {
  display:inline-flex; align-items:center; gap:10px;
  background:transparent; color:rgba(255,255,255,.8); font-weight:500; font-size:14px;
  padding:14px 28px; border-radius:var(--r-sm);
  border:1px solid rgba(255,255,255,.18);
  transition:all .3s ease;
  white-space:nowrap;
}
.btn-ghost:hover { border-color:var(--orange); color:var(--orange); background:rgba(246,139,31,.06); }

.btn-outline {
  display:inline-flex; align-items:center; gap:9px;
  background:transparent; color:var(--blue); font-weight:600; font-size:13px;
  padding:10px 22px; border-radius:var(--r-sm);
  border:1.5px solid var(--blue);
  transition:background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn-outline:hover { background:var(--blue); color:#fff; }

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.rv    { opacity:0; transform:translateY(32px); transition:opacity .6s var(--ease-reveal), transform .6s var(--ease-reveal); }
.rv-l  { opacity:0; transform:translateX(-40px); transition:opacity .6s var(--ease-reveal), transform .6s var(--ease-reveal); }
.rv-r  { opacity:0; transform:translateX(40px); transition:opacity .6s var(--ease-reveal), transform .6s var(--ease-reveal); }
.rv.on, .rv-l.on, .rv-r.on { opacity:1; transform:none; }
@media(prefers-reduced-motion:reduce) {
  .rv,.rv-l,.rv-r { opacity:1; transform:none; transition:none; }
}

/* ─── SCROLL PROGRESS ────────────────────────────────────────── */
#sp { position:fixed; top:0; left:0; height:2.5px; background:linear-gradient(90deg,var(--orange),var(--orange-lt)); z-index:9999; width:0; border-radius:0 2px 2px 0; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
#nav {
  position:fixed; top:16px; left:24px; right:24px; z-index:1000;
  padding:0 32px; transition:all .45s var(--ease);
  border-radius:var(--r-lg);
  background:transparent;
  width: auto;
  max-width: calc(100% - 48px);
}
#nav.scrolled {
  background:rgba(15,23,42,.88);
  backdrop-filter:blur(24px) saturate(1.6);
  -webkit-backdrop-filter:blur(24px) saturate(1.6);
  box-shadow:0 4px 24px rgba(0,0,0,.12), 0 0 0 1px rgba(255,255,255,.06);
  top:8px; border-radius:var(--r-lg);
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; height:64px; }
.nav-logo { display:flex; align-items:center; gap:11px; }
.logo-mark {
  width:36px; height:36px; background:var(--orange);
  clip-path:polygon(0 20%,100% 0,100% 80%,0 100%);
  position:relative; display:flex; align-items:center; justify-content:center;
}
.logo-mark::after { content:'K'; font-family:'Playfair Display',serif; font-weight:900; font-size:17px; color:#fff; position:absolute; }
.logo-text { font-family:'Playfair Display',serif; font-size:21px; font-weight:900; color:#fff; letter-spacing:-.01em; }
.logo-text span { color:var(--orange); }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  color: rgba(255,255,255,.65); transition: color .25s; position: relative;
}
.nav-links a:hover { color:#fff; }
.nav-links a::after {
  content:''; position:absolute; bottom:-6px; left:50%; width:0; height:2px;
  background:var(--orange); border-radius:1px;
  transition:width .3s var(--ease), left .3s var(--ease);
}
.nav-links a:hover::after { width:100%; left:0; }
.nav-cta {
  background:var(--orange)!important; color:#fff!important;
  padding:10px 22px; border-radius:var(--r-sm); font-weight:600!important;
  letter-spacing:.04em; transition:all .25s ease!important;
  box-shadow:0 2px 8px rgba(246,139,31,.3);
}
.nav-cta:hover { background:var(--orange-lt)!important; transform:translateY(-1px)!important; box-shadow:0 6px 20px rgba(246,139,31,.4)!important; }
.nav-cta::after { display:none!important; }
.hamburger { display:none; flex-direction:column; gap:5px; padding:5px; background:transparent; border:none; }
.hamburger span { display:block; width:22px; height:2px; background:#fff; border-radius:2px; transition:.35s var(--ease); }

#drawer {
  display:none; position:fixed; top:0; left:0; right:0; bottom:0; z-index:999;
  background:rgba(9,16,32,.97); backdrop-filter:blur(28px);
  -webkit-backdrop-filter:blur(28px);
  flex-direction:column; padding:80px 40px 40px; gap:0;
  overflow-y:auto;
}
#drawer.open { display:flex; }
#drawer a {
  font-size:20px; font-weight:600; color:rgba(255,255,255,.75);
  padding:18px 0; border-bottom:1px solid rgba(255,255,255,.05);
  letter-spacing:-.01em; transition:color .2s, padding-left .3s;
}

/* ─── HERO ───────────────────────────────────────────────────── */
#hero {
  position:relative; min-height:100vh; background:var(--bg-dark);
  display:flex; flex-direction: column; align-items:center; justify-content: center; overflow:hidden;
  padding: 100px 0;
}
.hero-grid-bg {
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(246,139,31,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(246,139,31,.025) 1px,transparent 1px);
  background-size:72px 72px;
}
.hero-glow {
  position:absolute; width:700px; height:700px; border-radius:50%;
  background:radial-gradient(circle,rgba(25,55,109,.4) 0%,transparent 70%);
  top:-200px; right:-80px; pointer-events:none;
}
.hero-glow2 {
  position:absolute; width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle,rgba(246,139,31,.08) 0%,transparent 70%);
  bottom:160px; left:-60px; pointer-events:none;
}
.hero-glow3 {
  position:absolute; width:300px; height:300px; border-radius:50%;
  background:radial-gradient(circle,rgba(246,139,31,.06) 0%,transparent 70%);
  top:30%; left:40%; pointer-events:none;
}

.shaft {
  position:absolute; right:17%; top:0; bottom:0; width:1px;
  background:linear-gradient(180deg,transparent,rgba(246,139,31,.25) 15%,rgba(246,139,31,.4) 50%,rgba(246,139,31,.25) 85%,transparent);
}
.e-car {
  position:absolute; right:calc(17% - 24px); width:48px; height:60px;
  border:1.5px solid var(--orange); border-radius:6px;
  background:rgba(246,139,31,.06); backdrop-filter:blur(2px);
  display:flex; align-items:center; justify-content:center;
  animation:eRide 9s ease-in-out infinite;
  box-shadow:0 0 20px rgba(246,139,31,.15);
}
.e-car::before { content:''; width:14px; height:24px; border:1px solid rgba(246,139,31,.4); border-radius:6px; }
.e-rail { position:absolute; right:calc(17% - 7px); top:0; width:1px; background:rgba(246,139,31,.2); height:100%; }
@keyframes eRide { 0%{top:72%} 30%{top:14%} 58%{top:52%} 82%{top:28%} 100%{top:72%} }

.hero-content { position:relative; z-index:2; text-align: left; max-width:820px; margin: 0 auto 64px; }
.hero-eyebrow {
  display:flex; align-items:center; justify-content: flex-start; gap:16px; margin-bottom:32px;
  opacity:0; animation:fadeUp .8s var(--ease-reveal) .3s forwards;
}
.hero-eyebrow-line { width:40px; height:1px; background:var(--orange); }
.hero-eyebrow-txt {
  font-family:'DM Mono',monospace; font-size:10.5px; letter-spacing:.15em;
  text-transform:uppercase; color:var(--orange);
}
.hero-h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(46px,6.2vw,82px);
  font-weight:900; line-height:1.02; color:#fff; letter-spacing:-.03em;
  margin-bottom:28px; opacity:0; animation:fadeUp .9s var(--ease-reveal) .5s forwards;
}
.hero-h1 em { font-style:italic; color:var(--orange); font-weight:700; }
.hero-sub {
  font-size:16.5px; line-height:1.85; color:rgba(255,255,255,.55);
  max-width:620px; margin: 0 0 44px;
  opacity:0; animation:fadeUp .9s var(--ease-reveal) .7s forwards;
}
.hero-actions {
  display:flex; gap:16px; flex-wrap:wrap; justify-content: flex-start;
  opacity:0; animation:fadeUp .9s var(--ease-reveal) .9s forwards;
}
.hero-apk-area {
  margin-top: 48px;
  opacity:0; animation:fadeUp .9s var(--ease-reveal) 1.05s forwards;
}
.mobile-portal {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 14px 32px;
  background: rgba(246,139,31,.15);
  border: 2px solid var(--orange);
  border-radius: 100px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all .3s var(--ease);
  box-shadow: 0 0 30px rgba(246,139,31,.15);
}
.mobile-portal:hover {
  background: rgba(246,139,31,.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(246,139,31,.2);
}
.apk-icon-wrap {
  width: 44px; height: 44px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.apk-icon-wrap svg { width: 22px; height: 22px; }
.apk-info { display: flex; flex-direction: column; text-align: left; }
.apk-title { font-size: 14px; font-weight: 800; color: #fff; line-height: 1.2; }
.apk-subtitle { font-size: 12px; color: rgba(255,255,255,.7); }
.apk-btn {
  font-size: 13px; font-weight: 700; color: var(--orange);
  margin-left: 8px; border-left: 1px solid rgba(255,255,255,.2);
  padding-left: 16px; transition: color .2s;
  text-transform: uppercase; letter-spacing: .05em;
}
.apk-btn:hover { color: var(--orange-lt); }

.hero-stats-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  opacity: 0;
  animation: fadeUp .9s var(--ease-reveal) 1.2s forwards;
}
.hero-trust {
  background: rgba(15,23,42,.8);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  box-shadow: 0 32px 64px rgba(0,0,0,.3);
  overflow: hidden;
}
.hero-trust-inner { display:flex; align-items:stretch; }
.ht-item {
  flex:1; padding:40px; border-right:1px solid rgba(255,255,255,.07);
  display:flex; flex-direction:column; gap:8px;
  text-align: center;
}
.ht-item:last-child { border-right:none; }
.ht-num { font-family:'Playfair Display',serif; font-size:42px; font-weight:900; color:#fff; line-height:1; }
.ht-num span { color:var(--orange); }
.ht-label { font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.5); font-weight:700; }

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }


/* ─── TRUSTED BY (ENTERPRISE REDESIGN) ────────────────────────── */
#trust { padding: 60px 0; background: var(--bg-light); border-bottom: 1px solid rgba(25,55,109,.04); }
.trust-header {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Immersive Showcase Redesign --- */
.showcase-full-width {
  max-width: 100% !important;
  padding: 0 40px !important;
}

.immersive-showcase-wrapper {
  position: relative;
  width: 100%;
  height: clamp(500px, 70vh, 650px);
  margin-top: 56px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
}

.showcase-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: immersiveFade 15s infinite;
}

.showcase-slide:nth-child(1) { animation-delay: 0s; }
.showcase-slide:nth-child(2) { animation-delay: 3s; }
.showcase-slide:nth-child(3) { animation-delay: 6s; }
.showcase-slide:nth-child(4) { animation-delay: 9s; }
.showcase-slide:nth-child(5) { animation-delay: 12s; }

@keyframes immersiveFade {
  0% { opacity: 0; z-index: 1; }
  5% { opacity: 1; z-index: 2; }
  20% { opacity: 1; z-index: 2; }
  25% { opacity: 0; z-index: 1; }
  100% { opacity: 0; }
}

.slide-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: slideKenBurns 15s infinite;
}

@keyframes slideKenBurns {
  0% { transform: scale(1.15); }
  20% { transform: scale(1); }
  100% { transform: scale(1); }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.4) 35%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 64px;
}

.slide-content {
  color: #fff;
  max-width: 900px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 20px;
  border-radius: 12px;
}

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.slide-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.slide-loc {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.slide-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.3);
}

.slide-type {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.slide-details {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  display: flex;
  gap: 24px;
  align-items: center;
}

.slide-year {
  font-weight: 700;
  color: #fff;
  background: rgba(246, 139, 31, 0.2);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
}

.showcase-glow-accent {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(246, 139, 31, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 3;
}

@media (max-width: 992px) {
  .showcase-full-width { padding: 0 24px !important; }
  .immersive-showcase-wrapper { height: 500px; }
  .slide-overlay { padding: 40px; }
  .slide-title { font-size: 32px; }
}

@media (max-width: 768px) {
  .immersive-showcase-wrapper { height: 450px; border-radius: 18px; }
  .slide-overlay { padding: 30px; }
  .slide-title { font-size: 28px; }
  .slide-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .slide-divider { display: none; }
  .slide-details { flex-direction: column; align-items: flex-start; gap: 10px; }
  .slide-loc { font-size: 16px; }
}



/* Certification Showcase */
.certification-neo {
  display: flex;
  flex-wrap: wrap; justify-content: center;
  gap: 12px;
  padding-top: 40px;
}

.neo-card {
  background: var(--bg-light);
  border-radius: var(--r-xl);
  padding: 16px 12px; flex: 1 1 0; min-width: 180px;
  display: flex; gap: 10px;
  align-items: center;
  transition: all .4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 10px 10px 20px #d1d9e6, -10px -10px 20px #ffffff;
  border: 1px solid rgba(255,255,255,0.6);
  cursor: pointer;
}

.neo-card:hover {
  box-shadow: inset 8px 8px 16px #d1d9e6, inset -8px -8px 16px #ffffff;
  border-color: transparent;
}

.cert-icon-box {
  width: 32px; height: 32px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); flex-shrink: 0;
  box-shadow: inset 4px 4px 8px #d1d9e6, inset -4px -4px 8px #ffffff;
  transition: all .4s ease;
}

.neo-card:hover .cert-icon-box {
  box-shadow: 6px 6px 12px #d1d9e6, -6px -6px 12px #ffffff;
  transform: translateY(-2px);
}
.cert-title { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--blue); margin-bottom: 4px; }
.cert-desc { font-size: 10.5px; color: var(--text-muted); line-height: 1.5; }
.cert-desc strong { font-weight: 700; color: var(--text); }
.cert-badge-icon { font-size:17px; }
.cert-badge-text { font-size:11.5px; font-weight:600; color:var(--text); letter-spacing:.03em; }

/* ─── ANNOUNCEMENTS HERO REDESIGN ────────────────────────────────── */
#announcements {
  background: #020617;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.announcement-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decor-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.decor-glow.g1 {
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
}

.decor-glow.g2 {
  bottom: -150px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(246, 139, 31, 0.15) 0%, transparent 70%);
}

.decor-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.announcement-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.announcement-intro .section-head {
  font-size: clamp(36px, 5vw, 62px);
  margin: 16px 0;
}

.announcement-tag {
  background: rgba(246, 139, 31, 0.1);
  border-color: rgba(246, 139, 31, 0.3);
  color: var(--orange);
}

.view-all-link {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
}

.view-all-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(246, 139, 31, 0.3);
}

.announcements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.announcement-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Featured / First Card */
.announcement-card:first-of-type {
  grid-column: 1 / -1;
  flex-direction: row;
  min-height: 280px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}

.announcement-card:first-of-type::before {
  content: 'LATEST UPDATE';
  position: absolute;
  top: 24px; left: 24px;
  background: var(--orange);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 4px;
  z-index: 10;
  letter-spacing: 0.1em;
}

.announcement-card:first-of-type .announcement-img {
  width: 45%;
  height: auto;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.announcement-card:first-of-type .announcement-content {
  padding: 50px;
  justify-content: center;
}

.announcement-card:first-of-type .announcement-title {
  font-size: clamp(22px, 3.5vw, 36px);
  margin-bottom: 16px;
  background: linear-gradient(to right, #fff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.announcement-card:first-of-type .announcement-body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  -webkit-line-clamp: 2;
  margin-bottom: 24px;
}

/* Button indicator for Hero */
.announcement-card:first-of-type .announcement-content::after {
  content: 'Read More →';
  display: inline-block;
  font-weight: 700;
  color: var(--orange);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.announcement-card:first-of-type:hover .announcement-content::after {
  border-color: var(--orange);
  padding-left: 8px;
}

/* Smaller Cards */
.announcement-card:not(:first-of-type) {
  min-height: 280px;
}

.announcement-card:not(:first-of-type) .announcement-img {
  height: 200px;
  width: 100%;
}

.announcement-card:not(:first-of-type) .announcement-content {
  padding: 32px;
}

.announcement-card:hover {
  transform: translateY(-12px) scale(1.01);
  border-color: rgba(246, 139, 31, 0.4);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 20px rgba(246,139,31,0.1);
}

.announcement-img {
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.announcement-card:hover .announcement-img {
  transform: scale(1.08);
}

.announcement-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.announcement-date {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

.announcement-priority {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.priority-high { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.priority-medium { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.priority-low { background: rgba(255, 255, 255, 0.05); color: rgba(255,255,255,0.5); border: 1px solid rgba(255, 255, 255, 0.1); }

.announcement-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
}

.announcement-body {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.announcement-skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: announcementShimmer 1.5s infinite;
  border-radius: 28px;
  height: 480px;
}
.announcement-skeleton:not(:first-child) { height: 280px; }

@keyframes announcementShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

@media(max-width: 1024px) {
  .announcement-card:first-of-type .announcement-img { width: 45%; }
  .announcement-card:first-of-type .announcement-content { padding: 40px; }
}

@media(max-width: 768px) {
  #announcements { padding: 60px 0; }
  .announcement-header { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 40px; }
  .announcements-grid { grid-template-columns: 1fr; gap: 20px; }
  .announcement-card:first-of-type { flex-direction: column; min-height: auto; }
  .announcement-card:first-of-type .announcement-img { width: 100%; height: 240px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .announcement-card:first-of-type .announcement-content { padding: 32px 24px; }
  .announcement-card:first-of-type .announcement-title { font-size: 24px; margin-bottom: 12px; }
  .announcement-card:first-of-type .announcement-body { font-size: 15px; margin-bottom: 20px; -webkit-line-clamp: 3; }
  .announcement-card:first-of-type::before { top: 16px; left: 16px; }
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
#about { padding:120px 0; background:var(--bg-light); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-tag { margin-bottom:24px; }
.about-body { font-size:15px; line-height:1.9; color:var(--text-sec); margin-bottom:22px; }
.about-partnerships { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-top:12px; }
.partner-label { font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-muted); }
.partner-chip {
  display:inline-flex; align-items:center; gap:7px; padding:6px 14px;
  background:#fff; border-radius:24px; font-size:11.5px; font-weight:500;
  border:1px solid rgba(25,55,109,.08); box-shadow:var(--shadow-sm);
  transition:all .3s var(--ease);
}
.partner-chip:hover { border-color:var(--orange); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.about-specs { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.spec-card {
  background:#fff; border-radius:var(--r-md); padding:28px;
  border:1px solid rgba(25,55,109,.06); position:relative; overflow:hidden;
  transition:all .4s var(--ease);
}
.spec-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--blue),var(--orange));
  transform:scaleX(0); transform-origin:left; transition:transform .4s var(--ease);
}
.spec-card:hover::before { transform:scaleX(1); }
.spec-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.spec-icon { margin-bottom:14px; }
.spec-title { font-size:13.5px; font-weight:600; color:var(--text); margin-bottom:6px; }
.spec-text { font-size:12.5px; color:var(--text-sec); line-height:1.6; }
.product-belt { background:var(--blue); border-radius:var(--r-md); padding:24px; margin-top:16px; }
.belt-label { font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.4); margin-bottom:14px; }
.belt-pills { display:flex; flex-wrap:wrap; gap:8px; }
.belt-pill {
  font-size:11.5px; font-weight:500; padding:6px 14px;
  background:rgba(255,255,255,.08); color:rgba(255,255,255,.8);
  border-radius:24px; border:1px solid rgba(255,255,255,.1);
  transition:all .3s; cursor:default;
}
.belt-pill:hover { background:var(--orange); color:#fff; border-color:transparent; transform:translateY(-1px); }

.svg-icon { width:40px; height:40px; background:rgba(25,55,109,.06); border-radius:var(--r-sm); display:flex; align-items:center; justify-content:center; }
.svg-icon svg { width:20px; height:20px; }

/* ─── QUOTE FORM ─────────────────────────────────────────────── */
#quote { padding:0 0 120px; background:var(--bg-light); }
.quote-wrap {
  background:var(--blue); border-radius:var(--r-xl); padding:64px;
  position:relative; overflow:hidden;
  box-shadow:0 24px 60px rgba(25,55,109,.18);
}
.quote-wrap::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:40px 40px; pointer-events:none;
}
.quote-wrap::after {
  content:''; position:absolute; right:-120px; top:-120px; width:480px; height:480px;
  border-radius:50%; background:radial-gradient(circle,rgba(246,139,31,.1) 0%,transparent 70%);
  pointer-events:none;
}
.quote-inner { position:relative; z-index:1; display:grid; grid-template-columns:1.1fr 1.6fr; gap:64px; align-items:center; }
.quote-left .tag { margin-bottom:24px; }
.quote-heading {
  font-family:'Playfair Display',serif; font-size:clamp(28px,3.2vw,42px);
  font-weight:900; color:#fff; line-height:1.12; letter-spacing:-.02em; margin-bottom:18px;
}
.quote-heading em { font-style:italic; color:var(--orange); }
.quote-sub { font-size:14.5px; color:rgba(255,255,255,.55); line-height:1.8; margin-bottom:32px; }
.quote-promise { display:flex; flex-direction:column; gap:12px; }
.qp-row { display:flex; align-items:center; gap:12px; font-size:13.5px; color:rgba(255,255,255,.7); }
.qp-dot {
  width:20px; height:20px; border-radius:50%; background:rgba(246,139,31,.15);
  border:1.5px solid var(--orange);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.qp-dot svg { width:10px; height:10px; }

.quote-form {
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r-lg); padding:40px;
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.form-group { display:flex; flex-direction:column; gap:8px; }
.form-group label { font-size:11px; font-weight:600; letter-spacing:.07em; text-transform:uppercase; color:rgba(255,255,255,.5); }
.form-group input, .form-group select {
  padding:12px 16px; border-radius:var(--r-sm);
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
  color:#fff; font-size:14px; font-family:'Inter',sans-serif;
  transition:border-color .3s, background .3s, box-shadow .3s; outline:none;
}
.form-group input::placeholder { color:rgba(255,255,255,.3); }
.form-group select option { background:#1a2f55; color:#fff; }
.form-group input:focus, .form-group select:focus {
  border-color:var(--orange); background:rgba(255,255,255,.12);
  box-shadow:0 0 0 3px rgba(246,139,31,.15);
}
.form-submit {
  width:100%; padding:16px; margin-top:10px;
  background:var(--orange); color:#fff; font-size:15px; font-weight:700;
  border:none; border-radius:var(--r-sm); cursor:pointer;
  transition:all .3s; letter-spacing:.03em;
  box-shadow:0 4px 12px rgba(246,139,31,.25);
}
.form-submit:hover { background:var(--orange-lt); transform:translateY(-1px); box-shadow:0 8px 24px rgba(246,139,31,.35); }
.form-note { text-align:center; font-size:11.5px; color:rgba(255,255,255,.3); margin-top:12px; }

/* ─── INDUSTRIES ─────────────────────────────────────────────── */
#industries { padding:120px 0; background:#fff; }
.ind-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(360px, 1fr)); gap:24px; margin-top:56px; }
.ind-card { border-radius:var(--r-lg); overflow:hidden; background:#fff; border:1px solid rgba(25,55,109,.06); box-shadow:var(--shadow-sm); transition:all .4s var(--ease); display:flex; flex-direction:column; }
.ind-card:hover { transform:translateY(-8px); box-shadow:0 24px 48px rgba(25,55,109,.12); border-color:rgba(246,139,31,.2); }
.ind-visual { height:240px; position:relative; overflow:hidden; }
.ind-img { position:absolute; inset:0; background-size:cover; background-position:center; transition:transform .8s var(--ease); }
.ind-card:hover .ind-img { transform:scale(1.1); }
.ind-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(15,23,42,0.6) 0%, transparent 60%); }
.ind-tag { position:absolute; top:20px; left:20px; font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:6px 14px; border-radius:24px; color:#fff; z-index:2; }
.ind-body { padding:28px; flex-grow:1; display:flex; flex-direction:column; }
.ind-name { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; color:var(--text); margin-bottom:10px; }
.ind-desc { font-size:14px; color:var(--text-sec); line-height:1.6; }


/* ─── PRODUCTS ───────────────────────────────────────────────── */
#products { padding:120px 0; background:var(--bg-light); }
.prod-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:48px; flex-wrap:wrap; gap:24px; }
.filter-tabs { display:flex; gap:6px; flex-wrap:wrap; background:rgba(25,55,109,.04); padding:4px; border-radius:28px; }
.ftab {
  font-size:12.5px; font-weight:500; padding:9px 20px; border-radius:24px;
  border:1px solid transparent; background:transparent; color:var(--text-sec);
  cursor:pointer; transition:all .3s var(--ease);
}
.ftab:hover { color:var(--blue); background:#fff; }
.ftab.active { background:var(--blue); color:#fff; box-shadow:var(--shadow-sm); }
.products-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.pc {
  background:#fff; border-radius:var(--r-lg); overflow:hidden;
  border:1px solid rgba(25,55,109,.06);
  transition:all .4s var(--ease);
}
.pc:hover { transform:translateY(-8px); box-shadow:var(--shadow-xl); }
.pc-visual {
  height:200px; position:relative; overflow:hidden;
  transition:transform .6s var(--ease);
}
.pc:hover .pc-visual { transform:scale(1.04); }
.pc-body { padding:24px; }
.pc-name { font-family:'Playfair Display',serif; font-size:17px; font-weight:600; color:var(--text); margin-bottom:8px; }
.pc-desc { font-size:12.5px; line-height:1.7; color:var(--text-sec); margin-bottom:20px; }
.pc-cta {
  display:flex; align-items:center; gap:8px; margin-top:16px; padding-top:16px;
  border-top:1px solid rgba(25,55,109,.06); font-size:12.5px; font-weight:600;
  color:var(--blue); transition:all .3s; cursor:pointer;
}
.pc:hover .pc-cta { gap:14px; color:var(--orange); }

/* ─── SERVICES ───────────────────────────────────────────────── */
#services { padding:120px 0; background:var(--bg-dark); position:relative; overflow:hidden; }
#services::before {
  content:''; position:absolute; width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle,rgba(246,139,31,.06) 0%,transparent 70%);
  bottom:-150px; right:-80px; pointer-events:none;
}
.svc-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:80px; align-items:start; }
.svc-items { display:flex; flex-direction:column; gap:16px; }
.svc-item {
  display:grid; grid-template-columns:52px 1fr; gap:20px; align-items:start;
  padding:32px; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06);
  border-radius:var(--r-md); transition:all .4s; cursor:default;
}
.svc-item:hover { background:rgba(246,139,31,.05); border-color:rgba(246,139,31,.2); transform:translateX(6px); }
.svc-icon {
  width:52px; height:52px; background:rgba(246,139,31,.08); border-radius:var(--r-sm);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .3s;
}
.svc-icon svg { width:24px; height:24px; }
.svc-item:hover .svc-icon { background:rgba(246,139,31,.18); }
.svc-title { font-family:'Playfair Display',serif; font-size:17px; font-weight:600; color:#fff; margin-bottom:8px; }
.svc-text { font-size:13.5px; line-height:1.8; color:rgba(255,255,255,.5); }

.svc-contact {
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06);
  border-radius:var(--r-md); padding:32px; margin-top:28px;
}
.svc-contact-txt { font-size:13.5px; color:rgba(255,255,255,.55); line-height:1.75; margin-bottom:24px; }
.svc-contact-rows { display:flex; flex-direction:column; gap:12px; margin-bottom:28px; }
.scr { display:flex; align-items:center; gap:12px; font-size:13px; color:rgba(255,255,255,.65); }
.scr-icon { width:32px; height:32px; background:rgba(246,139,31,.1); border-radius:var(--r-sm); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.scr-icon svg { width:14px; height:14px; }

/* ─── PORTFOLIO ──────────────────────────────────────────────── */
#portfolio { padding:120px 0; background:var(--bg-light); }
.port-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:56px; gap:24px; flex-wrap:wrap; }
.port-grid { display:grid; grid-template-columns:1.35fr 1fr 1fr; grid-template-rows:auto auto; gap:20px; }
.port-item {
  border-radius:var(--r-lg); overflow:hidden; background:#fff;
  border:1px solid rgba(25,55,109,.06);
  transition:all .4s var(--ease); cursor:default;
}
.port-item:hover { transform:translateY(-6px); box-shadow:var(--shadow-xl); }
.port-item:nth-child(1) { grid-row:span 2; }
.port-visual { position:relative; background:linear-gradient(145deg,var(--blue) 0%,#2C4E8A 100%); overflow:hidden; }
.port-item:nth-child(1) .port-visual { height:320px; }
.port-item .port-visual { height:180px; }
.port-visual-inner {
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background-image:linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);
  background-size:20px 20px;
}
.port-visual-icon svg { width:64px; height:64px; opacity:.5; }
.port-item:nth-child(1) .port-visual-icon svg { width:96px; height:96px; }
.port-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(15,23,42,.6) 0%,transparent 50%); }
.port-badge {
  position:absolute; bottom:16px; left:16px; font-size:9.5px; font-weight:700;
  letter-spacing:.07em; text-transform:uppercase;
  background:var(--orange); color:#fff; padding:5px 12px; border-radius:24px;
  box-shadow:0 2px 8px rgba(246,139,31,.3);
}
.port-body { padding:20px 24px; }
.port-loc { font-family:'DM Mono',monospace; font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--orange); margin-bottom:6px; }
.port-name { font-family:'Playfair Display',serif; font-size:17px; font-weight:600; color:var(--text); margin-bottom:6px; }
.port-item:nth-child(1) .port-name { font-size:22px; }
.port-detail { font-size:12.5px; color:var(--text-sec); line-height:1.55; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
#testimonials { padding:120px 0; background:var(--bg-dark); position:relative; overflow:hidden; }
#testimonials::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(246,139,31,.015) 1px,transparent 1px),linear-gradient(90deg,rgba(246,139,31,.015) 1px,transparent 1px);
  background-size:72px 72px; pointer-events:none;
}
.test-header { text-align:center; margin-bottom:64px; }
.test-header .tag { margin:0 auto 20px; }
.test-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.test-card {
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06);
  border-radius:var(--r-lg); padding:40px 36px;
  backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  transition:all .4s;
}
.test-card:hover { border-color:rgba(246,139,31,.25); background:rgba(246,139,31,.04); transform:translateY(-6px); }
.stars { display:flex; gap:4px; margin-bottom:18px; }
.star { color:var(--orange); font-size:14px; }
.tq { font-family:'Playfair Display',serif; font-size:88px; font-weight:900; color:rgba(246,139,31,.08); line-height:.65; margin-bottom:18px; user-select:none; }
.test-text { font-size:14.5px; line-height:1.85; color:rgba(255,255,255,.68); margin-bottom:28px; font-style:italic; }
.test-div { width:32px; height:2px; background:var(--orange); margin-bottom:20px; border-radius:1px; }
.test-author { font-size:13px; font-weight:600; color:#fff; }
.test-role { font-size:11.5px; color:rgba(255,255,255,.35); margin-top:4px; }
#testimonials { padding:120px 0; background:var(--bg-dark); position:relative; overflow:hidden; }
#testimonials::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(246,139,31,.015) 1px,transparent 1px),linear-gradient(90deg,rgba(246,139,31,.015) 1px,transparent 1px);
  background-size:72px 72px; pointer-events:none;
}
.test-header { text-align:center; margin-bottom:64px; }
.test-header .tag { margin:0 auto 20px; }
.test-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.test-card {
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06);
  border-radius:var(--r-lg); padding:40px 36px;
  backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  transition:all .4s;
}
.test-card:hover { border-color:rgba(246,139,31,.25); background:rgba(246,139,31,.04); transform:translateY(-6px); }
.stars { display:flex; gap:4px; margin-bottom:18px; }
.star { color:var(--orange); font-size:14px; }
.tq { font-family:'Playfair Display',serif; font-size:88px; font-weight:900; color:rgba(246,139,31,.08); line-height:.65; margin-bottom:18px; user-select:none; }
.test-text { font-size:14.5px; line-height:1.85; color:rgba(255,255,255,.68); margin-bottom:28px; font-style:italic; }
.test-div { width:32px; height:2px; background:var(--orange); margin-bottom:20px; border-radius:1px; }
.test-author { font-size:13px; font-weight:600; color:#fff; }
.test-role { font-size:11.5px; color:rgba(255,255,255,.35); margin-top:4px; }

/* ─── FAQ ────────────────────────────────────────────────────── */
#faq { padding:120px 0; background:#fff; }
.faq-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:80px; align-items:start; margin-top:56px; }
.faq-list { display:flex; flex-direction:column; gap:12px; }
.faq-item { border:1px solid rgba(25,55,109,.08); border-radius:var(--r-md); overflow:hidden; transition:border-color .3s; }
.faq-item:hover { border-color:rgba(25,55,109,.15); }
.faq-q {
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 24px; cursor:pointer; font-size:14.5px; font-weight:600;
  color:var(--text); gap:16px; transition:background .25s; width:100%;
  background:transparent; border:none; text-align:left;
}
.faq-q:hover { background:var(--bg-light); }
.faq-icon {
  width:28px; height:28px; border-radius:50%;
  background:var(--bg-light); border:1px solid rgba(25,55,109,.1);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition:all .35s var(--ease);
}
.faq-icon svg { width:12px; height:12px; }
.faq-item.open .faq-icon { background:var(--orange); border-color:var(--orange); transform:rotate(45deg); }
.faq-item.open .faq-icon svg { color:#fff; }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq-a-inner { padding:0 24px 20px; font-size:13.5px; line-height:1.85; color:var(--text-sec); }
.faq-item.open .faq-a { max-height:240px; }

.config-card { background:var(--blue); border-radius:var(--r-lg); padding:40px; margin-top:36px; }
.config-title { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; color:#fff; margin-bottom:10px; }
.config-sub { font-size:13.5px; color:rgba(255,255,255,.55); margin-bottom:28px; line-height:1.7; }
.config-form { display:flex; flex-direction:column; gap:14px; }
.config-group { display:flex; flex-direction:column; gap:6px; }
.config-group label { font-size:10.5px; font-weight:600; letter-spacing:.07em; text-transform:uppercase; color:rgba(255,255,255,.4); }
.config-group select {
  padding:11px 14px; border-radius:var(--r-sm);
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
  color:#fff; font-size:13.5px; font-family:'Inter',sans-serif; outline:none;
  transition:border-color .3s;
}
.config-group select:focus { border-color:var(--orange); }
.config-group select option { background:#1a2f55; }
.config-result {
  margin-top:6px; padding:18px; background:rgba(246,139,31,.12);
  border:1px solid rgba(246,139,31,.25); border-radius:var(--r-sm); display:none;
}
.config-result.show { display:block; }
.config-result-name { font-weight:700; color:#fff; font-size:15px; margin-bottom:6px; }
.config-result-price { font-size:13px; color:rgba(255,255,255,.65); }

/* ─── TEAM ───────────────────────────────────────────────────── */
#team { padding:120px 0; background:var(--bg-light); }
.team-header { text-align:center; margin-bottom:64px; }
.team-header .tag { margin:0 auto 20px; }
.leaders-row { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; max-width:540px; margin:0 auto 32px; }
.leader-card {
  background:#fff; border-radius:var(--r-lg); padding:36px 28px; text-align:center;
  border:1px solid rgba(25,55,109,.06); position:relative; overflow:hidden;
  transition:all .4s var(--ease);
}
.leader-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--blue),var(--orange));
}
.leader-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:rgba(246,139,31,.2); }
.leader-av {
  width:84px; height:84px; border-radius:50%; margin:0 auto 16px;
  background:linear-gradient(135deg,var(--blue),#2C4E8A);
  display:flex; align-items:center; justify-content:center; position:relative;
  transition:all .4s var(--ease);
  box-shadow:0 4px 16px rgba(25,55,109,.15);
}
.leader-card:hover .leader-av { transform:scale(1.06) rotate(2deg); box-shadow:0 8px 24px rgba(25,55,109,.2); }
.leader-av svg { width:38px; height:38px; }
.leader-badge {
  position:absolute; bottom:0; right:0; width:24px; height:24px;
  background:var(--orange); border-radius:50%; border:2px solid #fff;
  display:flex; align-items:center; justify-content:center;
  font-size:9px; color:#fff; font-weight:700;
}
.team-name { font-family:'Playfair Display',serif; font-size:15px; font-weight:600; color:var(--text); margin-bottom:4px; }
.team-role { font-size:10.5px; color:var(--orange); font-weight:700; letter-spacing:.07em; text-transform:uppercase; margin-bottom:5px; }
.team-dept { font-size:11px; color:var(--text-muted); }
.team-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
.team-card {
  background:#fff; border-radius:var(--r-lg); padding:28px 16px; text-align:center;
  border:1px solid rgba(25,55,109,.06); transition:all .4s var(--ease); cursor:default;
}
.team-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:rgba(246,139,31,.15); }
.team-av {
  width:68px; height:68px; border-radius:50%; margin:0 auto 14px;
  display:flex; align-items:center; justify-content:center;
  transition:all .4s var(--ease);
  box-shadow:0 2px 8px rgba(25,55,109,.1);
}
.team-card:hover .team-av { transform:scale(1.08) rotate(2deg); box-shadow:0 8px 20px rgba(25,55,109,.15); }
.team-av svg { width:28px; height:28px; }

/* ─── FLOATING ACTIONS ───────────────────────────────────────── */
#fab { position:fixed; bottom:32px; right:32px; z-index:900; display:flex; flex-direction:column; gap:10px; align-items:flex-end; }
.fab-btn {
  display:flex; align-items:center; gap:10px; padding:12px 20px;
  border-radius:30px; border:none; font-size:13.5px; font-weight:600;
  cursor:pointer; box-shadow:0 4px 20px rgba(0,0,0,.2);
  transition:all .3s var(--ease); white-space:nowrap;
}
.fab-btn:hover { transform:translateY(-2px) scale(1.03); box-shadow:0 8px 28px rgba(0,0,0,.3); }
.fab-whatsapp { background:#25D366; color:#fff; }
.fab-call { background:var(--blue); color:#fff; }
.fab-quote { background:var(--orange); color:#fff; }
.fab-btn svg { width:18px; height:18px; flex-shrink:0; }

#btt {
  position:fixed; bottom:32px; left:32px; width:50px; height:50px;
  background:#F68B1F;
  border:2px solid white; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; z-index:9999; opacity:0; transform:translateY(14px);
  transition:all .35s;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  color: white;
}
#btt.vis { opacity:1; transform:none; }
#btt:hover { background:var(--orange-lt); transform: translateY(-3px); box-shadow:0 12px 32px rgba(246,139,31,.4); }
#btt svg { width:20px; height:20px; color:#fff; }

/* ─── FOOTER (PREMIUM REDESIGN) ──────────────────────────────── */
#footer { background: #060E1E; color: #fff; padding: 40px 0 0; position: relative; overflow: hidden; }
#footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent);
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-desc { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.5); margin-bottom: 20px; max-width: 300px; }
.footer-socials { display: flex; gap: 8px; }
.fsoc {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 13px;
}
.fsoc:hover {
  transform: translateY(-3px) scale(1.08);
  color: #fff;
}
.fsoc-facebook:hover { background: #1877F2; border-color: #1877F2; }
.fsoc-youtube:hover { background: #FF0000; border-color: #FF0000; }
.fsoc-linkedin:hover { background: #0A66C2; border-color: #0A66C2; }
.fsoc-instagram:hover { background: #E4405F; border-color: #E4405F; }

.footer-addr { font-size: 12.5px; color: rgba(255,255,255,0.6); line-height: 1.5; margin-bottom: 12px; }

.footer-visit-premium { padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.visit-header { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 32px; }
.visit-accent { width: 32px; height: 2px; background: var(--orange); border-radius: 2px; }
.visit-title { font-size: 11px; font-weight: 800; color: #fff; letter-spacing: 0.2em; text-transform: uppercase; }

.map-card-premium {
  position: relative;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  margin-bottom: 32px;
  transition: transform 0.3s ease;
}
.map-card-premium:hover { transform: translateY(-4px); }
.map-card-premium iframe { opacity: 1; transition: opacity 0.3s; }

.location-actions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.loc-action-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}
.loc-action-card:hover { border-color: rgba(246,139,31,0.3); background: rgba(255,255,255,0.05); }
.loc-card-main { display: flex; align-items: center; gap: 16px; }
.loc-card-icon { font-size: 20px; }
.loc-card-text { display: flex; flex-direction: column; }
.loc-card-label { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.loc-card-value { font-size: 12px; color: rgba(255,255,255,0.5); }
.loc-action-btn {
  background: var(--orange);
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.3s;
}
.loc-action-btn:hover { background: var(--orange-lt); }

.footer-contact-info p { font-size: 12.5px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.footer-contact-info a { color: var(--orange); font-weight: 500; transition: color 0.2s; }
.footer-contact-info a:hover { color: var(--orange-lt); }

.fcol-title {
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: #fff; margin-bottom: 16px;
}

.presence-section { padding: 30px 0; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.presence-title { font-size: 10px; font-weight: 800; color: rgba(255,255,255,0.4); letter-spacing: 0.2em; margin-bottom: 16px; }
.presence-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.presence-pill {
  padding: 5px 14px; border-radius: 20px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08); font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.7); transition: all 0.3s;
}
.presence-pill:hover { border-color: var(--orange); color: var(--orange); background: rgba(246,139,31,0.05); transform: translateY(-2px); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; align-items: center; gap: 16px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-legal a:hover { color: var(--orange); }
.footer-dot { width: 2px; height: 2px; border-radius: 50%; background: var(--orange); opacity: .3; }

.footer-mobile-info { display: none; }

/* ─── RESPONSIVENESS & WHITE SPACE REMOVAL ───────────────────── */
@media(max-width: 1400px) {
  .container { max-width: 1200px; }
}

@media(max-width: 1200px) {
  .container { max-width: 100%; padding: 0 30px; }
  .footer-main { gap: 30px; }
  .about-grid, .svc-grid, .faq-grid, .quote-inner { gap: 40px; }
}

@media(max-width: 992px) {
  #nav { left: 16px; right: 16px; padding: 0 20px; max-width: calc(100% - 32px); top: 12px; }
  .nav-inner { height: 56px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid, .svc-grid, .faq-grid, .quote-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-right { grid-column: span 2; }
  .hero-h1 { font-size: 48px; }
  .hero-content { text-align: center; margin-bottom: 40px; }
  .hero-eyebrow, .hero-actions { justify-content: center; }
  .hero-sub { margin: 0 auto 32px; }
  .ht-item { padding: 25px 15px; }
  .ht-num { font-size: 32px; }
}

@media(max-width: 768px) {
  section { padding: 40px 0 !important; }
  .container { padding: 0 20px; }
  .hero-h1 { font-size: 38px; }
  .test-grid { grid-template-columns: 1fr; gap: 20px; }
  .test-card { padding: 30px 24px; min-height: auto; }

  #footer { padding: 30px 0 0 !important; }
  .footer-main { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 15px; padding-bottom: 20px; }
  .footer-brand { max-width: 100%; }
  .footer-logo { justify-content: center; margin-bottom: 12px; }
  .footer-desc { display: none; } /* Hide long desktop desc */

  .footer-mobile-info { display: block; margin-bottom: 15px; }
  .footer-m-desc { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.6); margin-bottom: 12px; max-width: 280px; margin-left: auto; margin-right: auto; }
  .footer-m-contacts { font-size: 14px; font-weight: 600; color: var(--orange); margin-bottom: 8px; }
  .footer-m-contacts a { color: var(--orange); }
  .footer-m-loc { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.05em; }

  .footer-socials { justify-content: center; margin-top: 5px; }
  .footer-center, .footer-right { display: none !important; } /* Hide complex desktop columns */

  .presence-section { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.05); }

  /* Mobile Footer Location Redesign */
  .footer-visit-premium { padding: 25px 0; }
  .visit-header { margin-bottom: 16px; }
  .map-card-premium { display: block; height: 130px; border-radius: 16px; margin-bottom: 16px; }
  .map-card-premium iframe { opacity: 1; filter: none; }
  .location-actions-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .loc-action-card { padding: 14px; border-radius: 16px; gap: 12px; }
  .loc-card-label { font-size: 12px; }
  .loc-card-value { font-size: 10px; }
  .loc-action-btn { width: fit-content; padding: 8px 14px; border-radius: 999px; font-size: 11px; }

  @media(max-width: 380px) {
    .location-actions-grid { grid-template-columns: 1fr; }
  }

  .presence-title { font-size: 10px; margin-bottom: 12px; }
  .presence-pills { gap: 8px; }
  .presence-pill { font-size: 11px; padding: 5px 12px; }

  #fab { right: 12px; bottom: 90px; gap: 10px; }
  .fab-btn {
    width: 52px; height: 52px; padding: 0; justify-content: center;
    border-radius: 50%; opacity: 0.85; backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); box-shadow: 0 8px 24px rgba(0,0,0,.2);
  }
  .fab-btn span { display: none; }
  .fab-btn svg { width: 24px; height: 24px; margin: 0; }
  .fab-btn:active, .fab-btn:hover { opacity: 1; }
  .fab-call { background: #1E4FA3 !important; }
  .fab-quote { background: #F68B1F !important; }

  #btt { left: 16px; right: auto; bottom: 16px; opacity: 1 !important; transform: none !important; }
  .footer-bottom { flex-direction: column; gap: 10px; padding: 15px 0; text-align: center; }
  .footer-legal { justify-content: center; gap: 15px; }
  .footer-copy { font-size: 10.5px; }

  .port-grid { grid-template-columns: 1fr !important; grid-template-rows: auto !important; gap: 25px; width: 100%; }
  .port-item { width: 100% !important; max-width: 100% !important; }
  .port-item:nth-child(1) { grid-row: auto !important; }
  .port-item:nth-child(1) .port-visual { height: 220px; }
  .port-item .port-visual { height: 200px; }
  .port-name { font-size: 16px !important; }
  .port-item:nth-child(1) .port-name { font-size: 18px !important; }
  .port-header { flex-direction: column !important; align-items: center !important; text-align: center !important; margin-bottom: 40px; gap: 15px; }
  .port-header .section-sub { text-align: center !important; margin: 0 auto !important; max-width: 100% !important; }

  .hero-trust-inner { flex-wrap: wrap; }
  .ht-item { flex: 0 0 50%; padding: 20px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .ht-item:nth-child(2) { border-right: none; }
  .ht-item:nth-child(3) { border-bottom: none; }
  .ht-item:nth-child(4) { border-bottom: none; border-right: none; }

  .leaders-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}

@media(max-width: 576px) {
  section { padding: 40px 0 !important; }
  .hero-h1 { font-size: 36px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .ind-grid, .products-grid, .team-grid { grid-template-columns: 1fr; }
  .port-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .quote-wrap { padding: 40px 20px; }
  .quote-form { padding: 24px; }
  .footer-desc { font-size: 13px; }
  .fcol-title { margin-bottom: 15px; }
}

@media(max-width: 480px) {
  .hero-h1 { font-size: 32px; }
  .tag { font-size: 9px; padding: 4px 10px; }
  .section-head { font-size: 28px; }
  .ht-num { font-size: 28px; }
  .ht-label { font-size: 9px; }
}

@media(max-width: 390px) {
  .hero-h1 { font-size: 28px; }
  .container { padding: 0 15px; }
  .footer-brand, .footer-center, .footer-right { font-size: 13px; }
}

/* ─── APP DOWNLOAD SECTION ───────────────────────────────────── */
#mobile-ecosystem {
  background:var(--bg-dark); padding:120px 0;
  position:relative; overflow:hidden;
}
#mobile-ecosystem .hero-glow { top:-120px; left:-120px; opacity:.3; }
#mobile-ecosystem .hero-glow2 { bottom:-120px; right:-120px; opacity:.12; }
.app-features-list { display:flex; flex-direction:column; gap:20px; margin-bottom:44px; padding-left:0; }
.app-feature-item { display:flex; align-items:flex-start; gap:16px; font-size:15px; color:rgba(255,255,255,.8); line-height:1.7; }
.app-feature-icon {
  width:24px; height:24px; border-radius:50%;
  background:rgba(22,163,74,.12); border:1.5px solid var(--success);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:4px;
}
.app-feature-icon svg { width:10px; height:10px; }
.app-download-container { display:flex; align-items:center; gap:28px; flex-wrap:wrap; }
.ecosystem-link {
  padding:16px 32px; font-size:15px; font-weight:700;
  background:linear-gradient(135deg,var(--orange),var(--orange-dk));
  border-radius:var(--r-sm); color:#fff;
  display:inline-flex; align-items:center; gap:10px;
  box-shadow:0 8px 28px rgba(246,139,31,.25);
  transition:all .35s var(--ease);
  position:relative; overflow:hidden;
}
.ecosystem-link::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,transparent,rgba(255,255,255,.1));
  opacity:0; transition:opacity .3s;
}
.ecosystem-link:hover::after { opacity:1; }
.ecosystem-link:hover {
  transform:translateY(-3px);
  box-shadow:0 14px 40px rgba(246,139,31,.35);
}
.ecosystem-link svg { width:20px; height:20px; }
.app-qr-box {
  display:flex; align-items:center; gap:16px;
  background:rgba(255,255,255,.03); padding:14px 20px;
  border-radius:var(--r-md); border:1px solid rgba(255,255,255,.06);
}
.app-qr-image {
  background:#fff; padding:8px; border-radius:var(--r-sm);
  width:68px; height:68px; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
}
.app-qr-image svg { width:100%; height:100%; }
.app-qr-info { font-size:11.5px; color:rgba(255,255,255,.4); line-height:1.55; font-family:'DM Mono',monospace; }
.app-mockup-wrapper { display:flex; justify-content:center; position:relative; z-index:2; }
.app-mockup-glow {
  position:absolute; width:340px; height:340px;
  background:radial-gradient(circle,rgba(246,139,31,.12) 0%,transparent 65%);
  top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none;
}
.app-phone-mockup {
  width:270px; height:520px; border-radius:40px;
  background:linear-gradient(135deg,rgba(255,255,255,.07),rgba(255,255,255,.02));
  border:4px solid rgba(255,255,255,.1);
  box-shadow:0 24px 60px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
  padding:18px; display:flex; flex-direction:column; overflow:hidden;
  position:relative; backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
}
.app-phone-notch {
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:110px; height:16px; background:#060E1E;
  border-bottom-left-radius:12px; border-bottom-right-radius:12px; z-index:10;
}
.app-phone-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; margin-top:8px; }
.app-phone-logo { display:flex; align-items:center; gap:8px; }
.app-phone-logo-icon {
  width:28px; height:28px; background:var(--orange); border-radius:6px;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:900; color:#fff;
}
.app-phone-logo-text { font-size:13px; font-weight:700; color:#fff; }
.app-phone-status { width:8px; height:8px; border-radius:50%; background:var(--success); box-shadow:0 0 8px var(--success); }
.app-phone-card {
  background:rgba(255,255,255,.03); border-radius:var(--r-md);
  padding:14px; border:1px solid rgba(255,255,255,.05); margin-bottom:14px;
}
.app-phone-card-label { font-size:10.5px; color:rgba(255,255,255,.4); text-transform:uppercase; letter-spacing:.05em; margin-bottom:4px; }
.app-phone-card-val { font-size:18px; font-weight:700; color:#fff; }
.app-phone-card-row { display:flex; gap:6px; margin-top:10px; }
.app-phone-pill-success { flex:1; background:rgba(22,163,74,.08); border:1px solid rgba(22,163,74,.15); border-radius:4px; padding:6px; text-align:center; }
.app-phone-pill-success-title { font-size:11px; font-weight:700; color:var(--success); }
.app-phone-pill-success-sub { font-size:8.5px; color:rgba(255,255,255,.4); margin-top:2px; }
.app-phone-pill-orange { flex:1; background:rgba(246,139,31,.08); border:1px solid rgba(246,139,31,.15); border-radius:4px; padding:6px; text-align:center; }
.app-phone-pill-orange-title { font-size:11px; font-weight:700; color:var(--orange); }
.app-phone-pill-orange-sub { font-size:8.5px; color:rgba(255,255,255,.4); margin-top:2px; }
.app-phone-diagnostics-card {
  background:rgba(255,255,255,.03); border-radius:var(--r-md);
  padding:14px; border:1px solid rgba(255,255,255,.05);
  margin-bottom:14px; flex-grow:1; display:flex; flex-direction:column;
}
.app-phone-diag-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.app-phone-diag-title { font-size:10.5px; color:rgba(255,255,255,.4); text-transform:uppercase; letter-spacing:.05em; }
.app-phone-diag-badge {
  font-size:9px; padding:2px 6px;
  background:rgba(37,99,235,.12); border:1px solid rgba(37,99,235,.2);
  color:var(--inprog); border-radius:10px; font-weight:600;
}
.app-phone-lift-viewport {
  flex-grow:1; background:rgba(0,0,0,.15); border-radius:var(--r-sm);
  position:relative; border:1px solid rgba(255,255,255,.03);
  overflow:hidden; display:flex; align-items:center; justify-content:center;
  min-height:120px;
}
.app-phone-lift-wire { position:absolute; top:0; bottom:0; width:1px; background:rgba(255,255,255,.08); }
.app-phone-lift-car {
  width:44px; height:50px; background:rgba(246,139,31,.12);
  border:1.5px solid var(--orange); border-radius:var(--r-sm);
  position:absolute; top:35%; display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  box-shadow:0 0 14px rgba(246,139,31,.2);
  animation:phoneCarRide 12s ease-in-out infinite;
}
@keyframes phoneCarRide { 0%{top:70%} 35%{top:15%} 70%{top:45%} 100%{top:70%} }
.app-phone-lift-car-lbl { font-size:8px; color:rgba(255,255,255,.45); text-transform:uppercase; }
.app-phone-lift-car-val { font-size:18px; font-weight:900; color:#fff; line-height:1; margin-top:1px; }
.app-phone-lift-indicators { position:absolute; right:14px; font-size:9px; color:rgba(255,255,255,.25); display:flex; flex-direction:column; gap:8px; font-family:monospace; }
.app-phone-lift-indicators span { transition:color .3s; }
.app-phone-footer-status { display:flex; justify-content:space-between; align-items:center; margin-top:10px; font-size:11px; }
.app-phone-footer-status-lbl { color:rgba(255,255,255,.45); }
.app-phone-footer-status-val { color:#fff; font-weight:600; }
.app-phone-actions { display:flex; gap:8px; margin-bottom:4px; }
.app-phone-btn-submit { flex:1; padding:11px; background:var(--orange); border:none; border-radius:var(--r-sm); color:#fff; font-size:11px; font-weight:700; cursor:default; }
.app-phone-btn-icon { padding:11px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.06); border-radius:var(--r-sm); color:#fff; font-size:11px; display:flex; align-items:center; justify-content:center; width:40px; cursor:default; }

/* ─── SECTION TRANSITIONS ────────────────────────────────────── */
#trust { position:relative; }
#trust::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,rgba(25,55,109,.1),transparent); }
#about::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,rgba(25,55,109,.08),transparent); }
#industries::after { content:''; position:absolute; bottom:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,rgba(25,55,109,.06),transparent); }


.cert-icon-box svg { width: 16px; height: 16px; }

/* --- Icon Animations --- */
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulseSubtle {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
@keyframes floatSubtle {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}
@keyframes swingSubtle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(12deg); }
  75% { transform: rotate(-12deg); }
  100% { transform: rotate(0deg); }
}

.icon-spin { animation: spinSlow 8s linear infinite; transform-origin: center; }
.icon-pulse { animation: pulseSubtle 3s ease-in-out infinite; transform-origin: center; }
.icon-float { animation: floatSubtle 3s ease-in-out infinite; transform-origin: center; }
.icon-swing { animation: swingSubtle 4s ease-in-out infinite; transform-origin: top center; }

/* ─── MICRO INTERACTIONS & ANIMATIONS ──────────────────────────── */
#cursor-glow {
  position:fixed; width:280px; height:280px; border-radius:50%;
  background:radial-gradient(circle,rgba(246,139,31,.06) 0%,transparent 60%);
  pointer-events:none; z-index:9998; transform:translate(-50%,-50%);
  mix-blend-mode:screen; transition:width .3s, height .3s;
}

.pc .pc-visual { transition:transform .6s cubic-bezier(.25,1,.5,1); }
.pc:hover .pc-visual { transform:scale(1.06); }

.ind-card { transition:transform .5s var(--ease), box-shadow .5s var(--ease); }
.ind-card:hover { transform:translateY(-8px); box-shadow:0 20px 48px rgba(25,55,109,.12); }

@keyframes pulseGlow {
  0% { box-shadow:0 0 0 0 rgba(246,139,31,.35); }
  70% { box-shadow:0 0 0 14px rgba(246,139,31,0); }
  100% { box-shadow:0 0 0 0 rgba(246,139,31,0); }
}
.btn-primary:hover, .fab-quote:hover { animation:pulseGlow 1.5s infinite; }

.nav-links a::after {
  content:''; position:absolute; bottom:-6px; left:50%; width:0; height:2px;
  background:var(--orange); border-radius:1px;
  transition:width .3s var(--ease), left .3s var(--ease);
}
.nav-links a:hover::after { width:100%; left:0; }
.nav-cta::after { display:none; }

/* ─── CALLBACK POPUP ─────────────────────────────────────────────── */
.cb-overlay {
  position:fixed; inset:0; background:rgba(0,0,0,.55); z-index:9999;
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .35s;
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
}
.cb-overlay.show { opacity:1; pointer-events:auto; }
.cb-modal {
  background:linear-gradient(145deg,#0d1a2f,#0a1220);
  color:#fff; width:90%; max-width:400px;
  border-radius:var(--r-lg); padding:36px; box-sizing:border-box;
  border:1px solid rgba(246,139,31,.2);
  box-shadow:0 24px 60px rgba(0,0,0,.4);
  transform:translateY(24px) scale(.96);
  transition:transform .35s cubic-bezier(.175,.885,.32,1.275);
}
.cb-overlay.show .cb-modal { transform:translateY(0) scale(1); }
.cb-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:20px; }
.cb-icon { color:var(--orange); }
.cb-close-btn { background:none; border:none; color:rgba(255,255,255,.4); font-size:28px; line-height:1; cursor:pointer; padding:0; margin-top:-8px; transition:color .2s; }
.cb-close-btn:hover { color:#fff; }
.cb-title { font-size:20px; font-weight:700; margin:0 0 10px 0; }
.cb-subtitle { font-size:14px; color:rgba(255,255,255,.6); line-height:1.6; margin:0 0 28px 0; }
.cb-form { display:flex; flex-direction:column; gap:18px; }
.cb-input-group { position:relative; }
.cb-input-icon { position:absolute; left:16px; top:50%; transform:translateY(-50%); color:rgba(255,255,255,.4); }
.cb-input-group input {
  width:100%; box-sizing:border-box; padding:14px 16px 14px 44px;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r-sm); color:#fff; font-size:16px; outline:none;
  transition:border-color .3s, box-shadow .3s;
}
.cb-input-group input:focus { border-color:var(--orange); box-shadow:0 0 0 3px rgba(246,139,31,.15); }
.cb-submit-btn {
  background:var(--orange); color:#fff; padding:16px;
  border:none; border-radius:var(--r-sm); font-size:16px; font-weight:700;
  cursor:pointer; transition:all .3s;
  box-shadow:0 4px 12px rgba(246,139,31,.25);
}

/* ─── PREMIUM BRAND SHOWCASE & WHY KROLTS ───────────────────── */
.brand-showcase-section {
  position: relative;
  padding: 120px 0;
  background: #0F172A;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(246,139,31,0.05) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(25,55,109,0.2) 0%, transparent 50%);
  overflow: hidden;
}

.brand-showcase-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.showcase-overlay-elements .arch-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(246,139,31,0.02) 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.5;
}

.glow-point {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.glow-point.p1 { top: -100px; left: -100px; background: rgba(246,139,31,0.08); }
.glow-point.p2 { bottom: -100px; right: -100px; background: rgba(25,55,109,0.3); }

.showcase-top {
  max-width: 800px;
  margin: 0 auto 100px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.premium-eyebrow {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 24px;
}

.showcase-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.showcase-heading em {
  font-style: italic;
  color: var(--orange);
  display: block;
  font-size: 0.8em;
  margin-top: 10px;
}

.showcase-subheading {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}

/* Why Choose Section */
.why-choose-area {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.why-heading {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.why-heading::after {
  content: '';
  position: absolute;
  bottom: -16px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 2px;
  background: var(--orange);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  transition: all 0.4s var(--ease);
}

.why-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(246,139,31,0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.why-icon {
  width: 54px; height: 54px;
  background: rgba(246,139,31,0.1);
  color: var(--orange);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--orange);
  color: #fff;
}

.why-icon svg { width: 26px; height: 26px; }

.why-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.why-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 992px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .showcase-heading { font-size: 40px; }
  .showcase-subheading { font-size: 16px; }
  .why-card { padding: 32px 24px; }
  .brand-showcase-section { padding: 80px 0; }
}
