/* ============================================================
   Uplink Technologies — Professional Design System v2.0
   ============================================================ */
:root {
  --navy: #0a0e1a;
  --navy-2: #0f1424;
  --cyan: #1fd3e0;
  --cyan-strong: #19b8d8;
  --blue: #4f7cff;
  --blue-deep: #2b5cff;
  --ink: #0b1220;
  --slate: #5b6478;
  --slate-light: #8a93a6;
  --line: #e7eaf0;
  --bg: #ffffff;
  --bg-soft: #f4f6fb;
  --card: #f7f9fc;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 10px 40px -12px rgba(15, 23, 42, 0.18);
  --shadow-sm: 0 4px 18px -8px rgba(15, 23, 42, 0.18);
  --maxw: 1240px;
  --hero-gradient: linear-gradient(155deg, #eef3ff 0%, #dbe6ff 45%, #b9cdff 100%);
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ============== Running Headline Ticker ============== */
.ticker-bar {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  z-index: 101;
}
.ticker-content {
  display: flex;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-content span {
  display: inline-block;
  padding: 0 40px;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.ticker-content span i {
  color: var(--cyan);
  margin-right: 8px;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============== Professional Navbar ============== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 20px -5px rgba(15,23,42,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 1.22rem; letter-spacing: -.02em; }
.brand .logo-img {
  width: auto; height: 40px; display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(31,211,224,.28));
  transition: transform .25s ease;
}
.brand:hover .logo-img { transform: translateY(-1px) scale(1.03); }
.brand .brand-text { color: var(--ink); line-height: 1; }
.brand .brand-text-accent {
  background: linear-gradient(135deg, var(--blue-deep), var(--cyan-strong));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
@media (max-width: 480px) {
  .brand .brand-text-accent { display: none; }
  .brand .logo-img { height: 36px; }
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 10px 18px; border-radius: 10px; font-weight: 500; font-size: .95rem;
  color: var(--slate); transition: .2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--bg-soft); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 3px; border-radius: 3px; background: var(--blue-deep);
}
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep)) !important;
  color: #fff !important;
  padding: 12px 24px !important; border-radius: 11px !important; font-weight: 600 !important;
  box-shadow: 0 6px 20px -6px rgba(43,92,255,.4);
  transition: .25s !important;
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 10px 30px -8px rgba(43,92,255,.5) !important; }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--ink); }

/* Mega dropdown for services */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 20px 60px -15px rgba(15,23,42,.2); padding: 12px; opacity: 0; visibility: hidden;
  transition: .25s ease;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 10px; color: var(--slate); font-size: .92rem; transition: .15s;
}
.dropdown a:hover { background: var(--bg-soft); color: var(--ink); }
.dropdown a i {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  font-size: .85rem; color: #fff; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}
.dropdown a .dd-purple i { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.dropdown a .dd-green i { background: linear-gradient(135deg, #34d399, #059669); }

/* ============== Buttons ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 1rem;
  cursor: pointer; border: 0; transition: .25s; font-family: var(--font);
}
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #1b2233; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-light { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-cyan { background: linear-gradient(135deg, var(--cyan), var(--cyan-strong)); color: #062a30; }
.btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(31,211,224,.7); }
.btn-blue { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff; }
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(43,92,255,.5); }

/* ============== Hero Slider ============== */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(.4,.0,.2,1);
}
.slide {
  min-width: 100%;
  position: relative;
  padding: 100px 0 110px;
  display: flex;
  align-items: center;
}
.slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,14,26,.92) 0%, rgba(10,14,26,.6) 50%, rgba(10,14,26,.3) 100%);
  z-index: 1;
  pointer-events: none;
}
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  pointer-events: none;
}
.slide-content {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding: 0 40px;
  color: #fff;
}
.slide-content .eyebrow {
  background: rgba(31,211,224,.15); color: var(--cyan);
  border: 1px solid rgba(31,211,224,.3);
}
.slide-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.08;
  letter-spacing: -.03em; margin-bottom: 20px; max-width: 700px;
}
.slide-content h1 .grad {
  background: linear-gradient(120deg, var(--cyan), var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.slide-content p {
  max-width: 560px; font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 30px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider controls */
.slider-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 10px;
}
.slider-dots button {
  width: 12px; height: 12px; border-radius: 12px; border: 2px solid rgba(255,255,255,.5);
  background: transparent; cursor: pointer; transition: .3s; padding: 0;
}
.slider-dots button.active {
  background: var(--cyan); border-color: var(--cyan); width: 32px;
}
.slider-arrows {
  position: absolute; top: 50%; z-index: 10; width: 100%;
  display: flex; justify-content: space-between; padding: 0 20px;
  transform: translateY(-50%); pointer-events: none;
}
.slider-arrows button {
  width: 48px; height: 48px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  color: #fff; font-size: 1.2rem; cursor: pointer;
  transition: .2s; pointer-events: all;
}
.slider-arrows button:hover { background: rgba(255,255,255,.3); }

/* ============== Eyebrow ============== */
.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-deep); background: rgba(79,124,255,.12);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 20px;
}

/* ============== Section ============== */
.section { padding: 92px 0; }
.section.alt { background: var(--bg-soft); }
.section.dark { background: var(--navy); color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow.center { color: var(--slate); background: transparent; letter-spacing: .14em; }
.section.dark .section-head .eyebrow.center { color: var(--cyan); }
.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 3.1rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; margin-bottom: 16px;
}
.section-head p { color: var(--slate); font-size: 1.08rem; }
.section.dark .section-head p { color: #aeb6c8; }

/* ============== Cards grid ============== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 30px; transition: .3s; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: #d7def0; }
.card .icon {
  width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center;
  font-size: 1.4rem; color: #fff; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}
.card h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 12px; }
.card p { color: var(--slate); font-size: .98rem; line-height: 1.65; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
  font-weight: 600; color: var(--blue-deep); font-size: .94rem;
}
.card .card-link i { transition: .2s; }
.card:hover .card-link i { transform: translateX(4px); }

/* Card with image */
.card-img {
  width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 20px;
}

.icon-cyan { background: linear-gradient(135deg, var(--cyan), var(--cyan-strong)) !important; color: #062a30 !important; }
.icon-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9) !important; }
.icon-green { background: linear-gradient(135deg, #34d399, #059669) !important; }
.icon-orange { background: linear-gradient(135deg, #fbbf24, #f97316) !important; }
.icon-pink { background: linear-gradient(135deg, #f472b6, #db2777) !important; }

/* ============== Stats ============== */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.stat .num {
  font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.03em;
  background: linear-gradient(120deg, var(--cyan), var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .label { color: #aeb6c8; margin-top: 6px; font-size: 1rem; }

/* ============== Feature / image split ============== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.split h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 18px; }
.split p { color: var(--slate); font-size: 1.05rem; margin-bottom: 16px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; color: #2a3349; }
.check-list li i { color: var(--cyan-strong); margin-top: 4px; }

/* ============== Page header ============== */
.page-hero { background: var(--hero-gradient); padding: 80px 0 70px; text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content:''; position:absolute; inset:0; background: radial-gradient(circle at 20% 0%, rgba(255,255,255,.55), transparent 50%); pointer-events: none; }
.page-hero .inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -.03em; }
.page-hero p { max-width: 620px; margin: 16px auto 0; color: #2a3349; font-size: 1.1rem; }
.breadcrumb { font-size: .9rem; color: var(--slate); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--blue-deep); }

/* Page hero with image background */
.page-hero-img {
  position: relative; padding: 100px 0 90px; text-align: center; overflow: hidden;
}
.page-hero-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,26,.85), rgba(10,14,26,.7));
  z-index: 1;
  pointer-events: none;
}
.page-hero-img .hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  pointer-events: none;
}
.page-hero-img .inner { position: relative; z-index: 2; color: #fff; }
.page-hero-img h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -.03em; color: #fff; }
.page-hero-img p { max-width: 620px; margin: 16px auto 0; color: rgba(255,255,255,.8); font-size: 1.1rem; }
.page-hero-img .breadcrumb { color: rgba(255,255,255,.6); }
.page-hero-img .breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero-img .breadcrumb a:hover { color: var(--cyan); }

/* ============== CTA band ============== */
.cta-band {
  background: linear-gradient(135deg, var(--navy), #161d35);
  border-radius: var(--radius-lg); padding: 60px 40px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::before { content:''; position:absolute; top:-50%; right:-10%; width:380px; height:380px; background: radial-gradient(circle, rgba(31,211,224,.25), transparent 70%); pointer-events: none; }
.cta-band::after { content:''; position:absolute; bottom:-30%; left:-10%; width:300px; height:300px; background: radial-gradient(circle, rgba(79,124,255,.2), transparent 70%); pointer-events: none; }
.cta-band h2 { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; letter-spacing: -.03em; position: relative; z-index: 2; }
.cta-band p { color: #b6bdd0; margin: 14px auto 28px; max-width: 560px; position: relative; z-index: 2; }
.cta-band .hero-actions { position: relative; z-index: 2; }

/* ============== Contact / forms ============== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 16px; transition: .2s; }
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.info-card .ic { width: 48px; height: 48px; flex: none; border-radius: 12px; display: grid; place-items: center; color:#fff; background: linear-gradient(135deg, var(--blue), var(--blue-deep)); font-size: 1.1rem; }
.info-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 3px; }
.info-card a, .info-card p { color: var(--slate); font-size: .98rem; }
.info-card a:hover { color: var(--blue-deep); }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 11px;
  font-family: var(--font); font-size: .98rem; background: var(--bg-soft); transition: .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(79,124,255,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .85rem; color: var(--slate-light); margin-top: 10px; text-align: center; }

/* ============== Google Map Embed ============== */
.map-container {
  width: 100%; height: 300px; border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 24px; border: 1px solid var(--line);
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ============== Footer ============== */
.footer { background: var(--navy); color: #fff; padding: 0 0 34px; }
.footer-accent { height: 4px; background: linear-gradient(90deg, var(--cyan), var(--blue), #8b5cf6); }
.footer-inner { padding-top: 64px; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer h3 { font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.footer .footer-brand { display: flex; align-items: center; gap: 12px; }
.footer .footer-logo { height: 38px; width: auto; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(31,211,224,.35)); }
.footer .tagline { color: #aeb6c8; max-width: 320px; }
.footer h5 { color: var(--cyan); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; }
.footer ul li a, .footer .contact-li { color: #d3d8e6; font-size: .96rem; transition: .2s; }
.footer ul li a:hover { color: var(--cyan); }
.footer .contact-li { display: block; margin-bottom: 11px; }
.footer .contact-li a { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 24px; color: #8a93a6; font-size: .9rem; text-align: center; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: .2s; }
.social a:hover { background: var(--cyan); color: var(--navy); transform: translateY(-3px); }

/* ============== Process steps ============== */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step { display: flex; gap: 20px; padding: 26px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); transition: .2s; }
.step:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.step .step-num { counter-increment: step; flex: none; width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; }
.step h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.step p { color: var(--slate); }

/* ============== Clients / trust logos ============== */
.clients-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.clients-bar p {
  text-align: center; font-size: .85rem; color: var(--slate-light);
  text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
  margin-bottom: 20px;
}
.clients-logos {
  display: flex; align-items: center; justify-content: center; gap: 50px;
  flex-wrap: wrap; opacity: .6;
}
.clients-logos span {
  font-size: 1.5rem; font-weight: 800; color: var(--slate);
  letter-spacing: -.02em;
}

/* ============== Testimonials ============== */
.testimonial-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 16px; left: 24px;
  font-size: 4rem; color: rgba(79,124,255,.15); font-family: Georgia, serif; line-height: 1;
}
.testimonial-card p { color: var(--slate); font-size: 1rem; line-height: 1.7; margin-bottom: 16px; }
.testimonial-card .author { font-weight: 700; font-size: .95rem; }
.testimonial-card .role { color: var(--slate-light); font-size: .85rem; }

/* ============== Admin ============== */
.admin-bar { background: var(--cyan); color: #062a30; text-align: center; padding: 9px; font-size: .9rem; font-weight: 600; }
.admin-bar a { text-decoration: underline; }
[data-editable] { transition: outline .2s; }
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--navy); color: #fff; padding: 14px 24px; border-radius: 12px; box-shadow: var(--shadow); z-index: 999; opacity: 0; transition: .3s; pointer-events: none; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ============== Booking Modal ============== */
.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.booking-modal.active { display: flex; }
.booking-modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px -15px rgba(0,0,0,.35);
  position: relative;
}
.booking-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--slate);
  transition: .2s;
}
.booking-close:hover { background: var(--bg-soft); color: var(--ink); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============== Responsive ============== */
@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 78px 0 auto 0; background: #fff; flex-direction: column; align-items: stretch; padding: 14px 22px 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-130%); transition: .3s; gap: 4px; z-index: 200; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 14px; }
  .nav-links a.active::after { display: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 14px; min-width: auto; }
  .has-dropdown:hover .dropdown { transform: none; }
  .menu-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 34px; }
  .section { padding: 64px 0; }
  .slide-content h1 { font-size: 2.2rem; }
  .slider-arrows { display: none; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .cta-band, .form { padding: 32px 22px; }
}
