/* ============================================================
   SKYPHOT.COM — Premium Drone Media & Inspection Website
   Main Stylesheet
   ============================================================ */

/* Google Fonts loaded via <link> in HTML */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --navy:        #0B1628;
  --navy-light:  #132035;
  --navy-mid:    #1a2d4a;
  --blue:        #0EA5E9;
  --blue-light:  #38BDF8;
  --blue-dark:   #0369A1;
  --blue-glow:   rgba(14,165,233,0.15);
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-600:    #475569;
  --gray-800:    #1E293B;
  --charcoal:    #2D3748;
  --text-dark:   #0F172A;
  --text-body:   #334155;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w:    1200px;
  --max-w-sm: 860px;

  --ease:      cubic-bezier(.4,0,.2,1);
  --trans:     0.3s var(--ease);
  --trans-fast:0.15s var(--ease);

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.18), 0 4px 10px rgba(0,0,0,.10);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.25), 0 8px 20px rgba(0,0,0,.15);
  --shadow-blue: 0 8px 30px rgba(14,165,233,.35);

  --radius-sm: .375rem;
  --radius:    .625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select {
  font-family: var(--font);
  font-size: 1rem;
}

/* ── Utility ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm { max-width: var(--max-w-sm); margin: 0 auto; padding: 0 1.5rem; }
.section      { padding: 6rem 0; }
.section-sm   { padding: 4rem 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-navy-light { background: var(--navy-light); color: var(--white); }
.section-gray { background: var(--gray-50); }
.text-center  { text-align: center; }
.text-white   { color: var(--white); }
.text-blue    { color: var(--blue); }
.text-muted   { color: var(--gray-500); }
.fw-700       { font-weight: 700; }
.fw-800       { font-weight: 800; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  background: rgba(14,165,233,.12);
  color: var(--blue-light);
  border: 1px solid rgba(14,165,233,.25);
  border-radius: var(--radius-full);
  padding: .3rem .9rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-dark {
  background: rgba(14,165,233,.08);
  color: var(--blue);
  border-color: rgba(14,165,233,.2);
}

/* ── Section Header ─────────────────────────────────────────── */
.section-header {
  margin-bottom: 3.5rem;
}
.section-header .badge { margin-bottom: 1rem; }
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.section-dark .section-title,
.section-navy-light .section-title { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}
.section-dark .section-subtitle,
.section-navy-light .section-subtitle { color: var(--gray-400); }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(14,165,233,.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy-light);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}
.btn-sm {
  padding: .55rem 1.25rem;
  font-size: .85rem;
}
.btn-icon {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ── HEADER / NAV ───────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--trans);
  padding: .5rem 0;
}
.header.transparent {
  background: transparent;
}
.header.scrolled {
  background: rgba(11,22,40,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  padding: .25rem 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.nav-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.03em;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-logo span { color: var(--blue); }
.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: .375rem;
  flex-shrink: 0;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  padding: .5rem .875rem;
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--trans-fast);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white) !important;
  padding: .55rem 1.25rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  margin-left: .5rem;
  box-shadow: 0 4px 14px rgba(14,165,233,.4);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14,165,233,.5) !important;
  background: rgba(255,255,255,.08) !important; /* override */
  background: linear-gradient(135deg, var(--blue-light), var(--blue)) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 60% 40%, rgba(14,165,233,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(3,105,161,.25) 0%, transparent 50%),
    linear-gradient(160deg, #0B1628 0%, #0d1f3c 40%, #0c2040 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.3);
  color: var(--blue-light);
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.25rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.7);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .25rem;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-drone-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.hero-drone-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(14,165,233,.08) 0%, transparent 60%);
  pointer-events: none;
}
.drone-svg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.pill {
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.2);
  color: var(--blue-light);
  padding: .35rem .85rem;
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 500;
}
.hero-floating-badge {
  position: absolute;
  background: rgba(14,165,233,.95);
  color: var(--white);
  padding: .6rem 1rem;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .4rem;
  box-shadow: 0 8px 24px rgba(14,165,233,.4);
  animation: float 4s ease-in-out infinite;
}
.hero-floating-badge-2 {
  animation-delay: 2s;
  background: rgba(11,22,40,.9);
  border: 1px solid rgba(255,255,255,.12);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-item svg { color: var(--blue); flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.1);
}

/* ── SERVICES GRID ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--trans);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(14,165,233,.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(14,165,233,.06));
  border: 1px solid rgba(14,165,233,.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
  font-size: 1.5rem;
  transition: var(--trans);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-color: var(--blue);
  color: var(--white);
  transform: scale(1.08);
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.service-card .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--trans-fast);
}
.service-card .link-arrow:hover { gap: .625rem; }

/* Dark service cards */
.service-card-dark {
  background: var(--navy-mid);
  border-color: rgba(255,255,255,.07);
}
.service-card-dark h3 { color: var(--white); }
.service-card-dark p  { color: var(--gray-400); }
.service-card-dark:hover { border-color: rgba(14,165,233,.3); }

/* ── INDUSTRIES GRID ───────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.industry-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
}
.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,165,233,.08), transparent);
  opacity: 0;
  transition: var(--trans);
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14,165,233,.3);
  box-shadow: 0 12px 40px rgba(14,165,233,.12);
}
.industry-card:hover::after { opacity: 1; }
.industry-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: block;
}
.industry-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.industry-card p {
  font-size: .875rem;
  color: var(--gray-400);
  line-height: 1.65;
}
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
  margin-top: 1rem;
}
.industry-tag {
  background: rgba(14,165,233,.1);
  color: var(--blue-light);
  border-radius: var(--radius-full);
  padding: .2rem .65rem;
  font-size: .72rem;
  font-weight: 500;
}

/* ── WHY US / FEATURES ─────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
}
.feature-icon-wrap {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(14,165,233,.15), rgba(14,165,233,.05));
  border: 1px solid rgba(14,165,233,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 1.25rem;
}
.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .375rem;
}
.feature-text p {
  font-size: .875rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--trans);
}
.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(14,165,233,.2);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px rgba(14,165,233,.4);
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.step-card p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── STATS BAR ─────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-card {
  padding: 2rem 1rem;
}
.stat-number {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: .85rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .5rem;
  font-weight: 500;
}

/* ── GALLERY GRID ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.05);
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; }
.gallery-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,22,40,.9) 0%, transparent 50%);
  opacity: 0;
  transition: var(--trans);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-info h4 {
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
}
.gallery-info p {
  color: var(--gray-400);
  font-size: .8rem;
  margin-top: .25rem;
}
.gallery-placeholder-bg {
  position: absolute;
  inset: 0;
}

/* gallery placeholder gradients */
.gp-1 { background: linear-gradient(135deg, #1a3a5c, #0c6291, #2d8ab5); }
.gp-2 { background: linear-gradient(135deg, #1a2e1a, #2d6a2d, #3d8c3d); }
.gp-3 { background: linear-gradient(135deg, #2c1a1a, #6b2d2d, #8c3d3d); }
.gp-4 { background: linear-gradient(135deg, #1a1a2c, #2d2d6b, #3d3d8c); }
.gp-5 { background: linear-gradient(135deg, #2c2a1a, #6b692d, #8c8a3d); }
.gp-6 { background: linear-gradient(135deg, #1a2c2c, #2d6b6b, #3d8c8c); }
.gp-7 { background: linear-gradient(135deg, #0b1628, #132035, #0ea5e9); }
.gp-8 { background: linear-gradient(135deg, #1a1a1a, #2d2d2d, #4d4d4d); }
.gp-9 { background: linear-gradient(135deg, #1c1a2c, #3d2d6b, #5d4d8c); }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s var(--ease);
}
.testimonial-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  min-width: calc(33.333% - 1rem);
  flex-shrink: 0;
  transition: var(--trans);
}
.testimonial-card:hover {
  border-color: rgba(14,165,233,.25);
  box-shadow: 0 8px 30px rgba(14,165,233,.1);
}
.testimonial-stars {
  display: flex;
  gap: .25rem;
  color: #F59E0B;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.testimonial-text {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: .95rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  color: var(--white);
  font-size: .925rem;
}
.testimonial-role {
  font-size: .8rem;
  color: var(--gray-400);
  margin-top: .125rem;
}
.slider-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-fast);
}
.slider-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.slider-dots {
  display: flex;
  gap: .5rem;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: var(--trans-fast);
  cursor: pointer;
}
.slider-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ── PRICING ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  position: relative;
  transition: var(--trans);
}
.pricing-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--blue);
  background: var(--navy);
  transform: scale(1.03);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  padding: .3rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.pricing-plan-name {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  margin-bottom: .75rem;
}
.pricing-featured-name { color: var(--blue-light); }
.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .5rem;
}
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0;
}
.pricing-card.featured .pricing-price span { color: var(--gray-400); }
.pricing-desc {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-card.featured .pricing-desc {
  color: var(--gray-400);
  border-bottom-color: rgba(255,255,255,.1);
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  color: var(--text-body);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,.8); }
.pricing-check {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: .1rem;
  font-size: 1.1rem;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
}
.faq-item.open {
  border-color: rgba(14,165,233,.3);
  box-shadow: 0 4px 16px rgba(14,165,233,.08);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .975rem;
  color: var(--text-dark);
  transition: var(--trans-fast);
  gap: 1rem;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gray-600);
  transition: var(--trans);
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.form-grid .full { grid-column: 1 / -1; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.form-input {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .95rem;
  color: var(--text-dark);
  transition: var(--trans-fast);
  width: 100%;
}
.form-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14,165,233,.15);
}
.form-input::placeholder { color: var(--gray-400); }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input { appearance: none; cursor: pointer; }
.form-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-note {
  font-size: .8rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: .375rem;
}

/* Dark form variant */
.form-dark .form-label { color: rgba(255,255,255,.85); }
.form-dark .form-input {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: var(--white);
}
.form-dark .form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14,165,233,.2);
}
.form-dark .form-input::placeholder { color: rgba(255,255,255,.3); }

/* ── PORTAL SECTION ───────────────────────────────────────── */
.portal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.portal-feature {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--trans);
}
.portal-feature:hover {
  background: rgba(14,165,233,.08);
  border-color: rgba(14,165,233,.25);
  transform: translateY(-3px);
}
.portal-feature-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  display: block;
}
.portal-feature h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .375rem;
}
.portal-feature p {
  font-size: .8rem;
  color: var(--gray-400);
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0c2d50 50%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 5rem 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(14,165,233,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(14,165,233,.1) 0%, transparent 50%);
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── SERVICE AREA ─────────────────────────────────────────── */
.service-area-wrap {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--gray-200);
}
.service-area-map {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
  height: 200px;
  background: linear-gradient(135deg, #d1e8f5, #a8d4ed, #7fc0e5);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-area-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,.08) 1px, transparent 0);
  background-size: 20px 20px;
}
.area-pin {
  position: relative;
  font-size: 2.5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.3));
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.area-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: .4rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: .375rem;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.03em;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--blue); }
.footer-brand p {
  font-size: .875rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: var(--trans-fast);
}
.footer-col a:hover { color: var(--white); }
.footer-col .footer-contact-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}
.footer-col .footer-contact-item svg { color: var(--blue); flex-shrink: 0; }
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--trans-fast);
}
.social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: var(--blue); }
.footer-cert {
  display: flex;
  align-items: center;
  gap: .375rem;
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(14,165,233,.12) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, #0d1f3c 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  max-width: 540px;
  line-height: 1.75;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--blue-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .4; }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--navy-mid), var(--blue-dark));
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14,165,233,.2);
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 30px 30px;
}
.about-visual-content { position: relative; z-index: 1; text-align: center; }
.about-visual-content .big-icon { font-size: 5rem; display: block; margin-bottom: 1rem; }
.about-icon-label {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  font-weight: 500;
}
.about-text .section-title { text-align: left; }
.about-text p {
  font-size: .975rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  margin-top: 1.5rem;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: .375rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700, #374151);
}
.cert-badge span { font-size: 1rem; }

/* ── DETAIL PAGE SERVICES ────────────────────────────────── */
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.service-detail-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(14,165,233,.2);
  transform: translateY(-4px);
}
.service-detail-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.service-detail-icon {
  width: 56px;
  height: 56px;
  background: rgba(14,165,233,.15);
  border: 1px solid rgba(14,165,233,.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}
.service-detail-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.service-detail-header p {
  font-size: .8rem;
  color: var(--gray-400);
  margin-top: .25rem;
}
.service-detail-body {
  padding: 2rem;
  flex: 1;
}
.service-detail-body p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.service-detail-list li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
  color: var(--gray-700, #374151);
}
.service-detail-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── INDUSTRIES DETAIL ────────────────────────────────────── */
.industry-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.industry-detail-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.industry-detail-header {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(14,165,233,.1), transparent);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.industry-detail-icon { font-size: 2.5rem; }
.industry-detail-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.industry-detail-body { padding: 2rem; }
.industry-detail-body p {
  font-size: .9rem;
  color: var(--gray-400);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.industry-solution-list {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.industry-solution-list li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  color: rgba(255,255,255,.75);
}
.industry-solution-list li span:first-child { color: var(--blue); flex-shrink: 0; }

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--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; }

/* ── DIVIDER ──────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
  margin: 0;
}
.divider-dark {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .about-grid { gap: 2.5rem; }
  .testimonial-card { min-width: calc(50% - .75rem); }
}
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: rgba(11,22,40,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: .25rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -4px 0 40px rgba(0,0,0,.5);
    z-index: 999;
    border-left: 1px solid rgba(255,255,255,.06);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { width: 100%; padding: .75rem 1rem; font-size: 1rem; }
  .nav-cta { margin-left: 0; margin-top: .5rem; }
  .nav-toggle { display: flex; z-index: 1001; position: relative; }
  .hero-title { font-size: clamp(1.9rem, 7vw, 3rem); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: 1; }
  .gallery-item.tall { grid-row: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .industry-detail-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
  .testimonial-card { min-width: calc(100% - 0px); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: auto; }
  .hero-stats { gap: 1.5rem; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .trust-bar-inner { gap: 1.25rem; }
  .trust-divider { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ── DRONE SVG ────────────────────────────────────────────── */
.drone-svg { filter: drop-shadow(0 8px 24px rgba(14,165,233,.5)); }

/* ── NOTIFICATION TOAST ───────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy-mid);
  border: 1px solid rgba(14,165,233,.3);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  color: var(--white);
  font-size: .9rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-xl);
  transform: translateX(120%);
  transition: transform .4s var(--ease);
}
.toast.show { transform: translateX(0); }
.toast-icon { color: var(--blue); font-size: 1.25rem; }
