/* ========================================
   BLUEPEAK — Main Stylesheet
   Version: 2.0 | Hostinger Ready
   ======================================== */

/* RESET & BASE */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy:    #080d1f;
  --navy2:   #0d1530;
  --navy3:   #060c1c;
  --cyan:    #00d4ff;
  --cyan2:   #00a8cc;
  --orange:  #ff6b35;
  --violet:  #7b2fff;
  --white:   #f0f6ff;
  --muted:   #8899bb;
  --card-bg: rgba(13, 21, 48, 0.85);
  --border:  rgba(0, 212, 255, 0.15);
  --border2: rgba(0, 212, 255, 0.08);
}

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* CANVAS */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* PROGRESS BAR */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* NAV */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(8, 13, 31, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  transition: background 0.3s, padding 0.3s;
}

#navbar.scrolled {
  background: rgba(8, 13, 31, 0.97);
  padding: 0.75rem 2.5rem;
}

.logo {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--white);
  cursor: pointer;
}

.logo span { color: var(--cyan); }

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #fff;
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6, 10, 20, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu ul a {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
}

.mobile-menu ul a:hover { color: var(--cyan); }
.mob-cta { margin-top: 1rem; padding: 0.8rem 2.5rem !important; font-size: 1rem !important; }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SECTION BASE */
section {
  position: relative;
  z-index: 1;
  padding: 6rem 2.5rem;
}

.section-dark { background: rgba(6, 10, 20, 0.6); }

.section-header { margin-bottom: 3rem; }

.section-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 520px;
}

/* BUTTONS */
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #fff;
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(240, 246, 255, 0.25);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-content { max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.75rem;
  font-size: 0.8rem;
  color: var(--cyan);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}

.hero-title .line2 { color: var(--cyan); display: block; }

.typewriter {
  color: var(--orange);
  display: inline-block;
  border-right: 3px solid var(--orange);
  padding-right: 4px;
  animation: blink-cursor 0.75s step-end infinite;
}

@keyframes blink-cursor {
  0%, 100% { border-color: var(--orange); }
  50% { border-color: transparent; }
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }

.stat-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--cyan);
  display: block;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.hero-visual {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  pointer-events: none;
  animation: float-anim 6s ease-in-out infinite;
}

@keyframes float-anim {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 16px)); }
}

/* DUAL PANEL */
#dual {
  padding: 0;
  z-index: 1;
}

.dual-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.panel {
  padding: 5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.panel-it {
  background: linear-gradient(135deg, #050a18 0%, #091220 100%);
  border-right: 1px solid rgba(0, 212, 255, 0.1);
}

.panel-dm {
  background: linear-gradient(135deg, #100720 0%, #180b2e 100%);
}

.circuit-svg {
  position: absolute;
  top: 0; right: 0;
  width: 140px;
  height: 100%;
  opacity: 0.08;
  pointer-events: none;
}

.panel-icon {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  display: block;
}

.panel-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.panel-title.cyan { color: var(--cyan); }
.panel-title.violet { color: var(--violet); }

.panel-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 360px;
}

.panel-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.panel-list li {
  font-size: 0.9rem;
  color: #aabbd4;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.panel-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.it-li::before { background: var(--cyan); }
.dm-li::before { background: var(--violet); }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.svc-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--glow, var(--cyan)), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.svc-it  { --glow: var(--cyan); }
.svc-dm  { --glow: var(--violet); }

.svc-card:hover {
  transform: translateY(-7px);
  border-color: var(--glow, var(--cyan));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.svc-card:hover::before { opacity: 1; }

.svc-icon { font-size: 1.8rem; margin-bottom: 0.9rem; display: block; }

.svc-name {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.svc-desc {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.65;
}

/* STATS BAND */
#stats {
  background: linear-gradient(135deg,
    rgba(0, 212, 255, 0.04),
    rgba(123, 47, 255, 0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2.5rem;
  z-index: 1;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.big-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--cyan);
  display: block;
  margin-bottom: 0.3rem;
}

.big-label {
  color: var(--muted);
  font-size: 0.85rem;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
}

.why-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

.why-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.why-desc {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

/* PROCESS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 21px;
  left: calc(10% + 22px);
  right: calc(10% + 22px);
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  opacity: 0.25;
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 0.88rem;
  margin: 0 auto 1rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  flex-shrink: 0;
}

.step-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.step-desc {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* TECH STACK */
.marquee-wrap {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
}

.marquee-track {
  overflow: hidden;
}

.marquee-row {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.marquee-track.reverse .marquee-row {
  animation-direction: reverse;
}

.marquee-track:hover .marquee-row { animation-play-state: paused; }

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tech-pill {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: #aabbd4;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
  white-space: nowrap;
}

.tech-pill:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* CONTACT */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #aabbd4;
  font-size: 0.92rem;
}

.ci-icon { font-size: 1rem; flex-shrink: 0; }

.contact-item a {
  color: #aabbd4;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--cyan); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.form-field {
  background: rgba(13, 21, 48, 0.9);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}

.form-field:focus { border-color: var(--cyan); }
.form-field::placeholder { color: var(--muted); }

select.form-field option {
  background: #0d1530;
  color: var(--white);
}

textarea.form-field {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #fff;
  border: none;
  padding: 0.95rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.28);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--cyan);
  font-size: 0.9rem;
  text-align: center;
}

/* FOOTER */
footer {
  background: #030710;
  border-top: 1px solid var(--border2);
  padding: 4rem 2.5rem 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo { margin-bottom: 0.75rem; }

.footer-tagline {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.25s;
}

.footer-socials a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.footer-col-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  color: var(--muted);
  font-size: 0.87rem;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border2);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom span { color: var(--muted); font-size: 0.82rem; }

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--muted);
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--cyan); }

/* FLOATING BUTTONS */
.float-wa {
  position: fixed;
  bottom: 5.5rem;
  left: 1.5rem;
  z-index: 500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: pulse-wa 2.5s infinite;
  transition: transform 0.2s;
}

.float-wa:hover { transform: scale(1.1); }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7); }
}

.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  background: linear-gradient(135deg, var(--orange), #e05000);
  color: #fff;
  border: none;
  padding: 0.72rem 1.35rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(255, 107, 53, 0.4);
  animation: pulse-cta 2.5s infinite;
  transition: transform 0.2s;
}

.float-cta:hover { transform: translateY(-2px); }

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 4px 24px rgba(255, 107, 53, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(255, 107, 53, 0.7); }
}

/* BACK TO TOP */
#back-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 500;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid var(--border);
  color: var(--cyan);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}

#back-top.show {
  opacity: 1;
  pointer-events: auto;
}

#back-top:hover {
  background: rgba(0, 212, 255, 0.25);
  transform: translateY(-2px);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1100px) {
  .hero-visual { width: 340px; height: 340px; right: 1.5rem; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-visual { display: none; }
  .dual-wrap { grid-template-columns: 1fr; }
  .panel-it { border-right: none; border-bottom: 1px solid rgba(0, 212, 255, 0.1); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  section { padding: 4rem 1.25rem; }
  #navbar { padding: 0.9rem 1.25rem; }
  #hero { padding: 7rem 1.25rem 4rem; }
  .hero-title { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns button { width: 100%; }
  .hero-stats { gap: 1.5rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .dual-wrap .panel { padding: 3rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-wa { bottom: 5rem; left: 1rem; width: 46px; height: 46px; }
  .float-cta { right: 1rem; bottom: 1rem; font-size: 0.78rem; padding: 0.65rem 1.1rem; }
  #back-top { right: 1rem; bottom: 4.5rem; }
}

@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
