/* ============================================================
   CSS VARIABLES — Change these to retheme the whole site
   ============================================================ */
:root {
  --black:    #080810;
  --black2:   #0f0f1a;
  --black3:   #161625;
  --black4:   #1e1e30;
  --blue:     #1e6fff;
  --blue-glow:#1e6fff40;
  --blue-light:#4d94ff;
  --red:      #e8192c;
  --red-glow: #e8192c30;
  --purple:   #7c3aed;
  --purple-glow: #7c3aed35;
  --green:    #00c851;
  --white:    #eeeef8;
  --muted:    #7a7a9a;
  --muted2:   #55556a;
  --radius:   16px;
  --radius-sm:10px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Section label pill */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-glow);
  border: 1px solid rgba(30,111,255,0.35);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 52px;
  font-size: 0.97rem;
}
.section-header { text-align: center; }

/* ============================================================
   SCROLL REVEAL ANIMATION
   Elements start invisible and slide up into view
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn-red:hover { background: #c8101f; transform: translateY(-2px); box-shadow: 0 8px 30px var(--red-glow); }

.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px var(--blue-glow);
}
.btn-blue:hover { background: #0055e0; transform: translateY(-2px); box-shadow: 0 8px 30px var(--blue-glow); }

.btn-purple {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 20px var(--purple-glow);
}
.btn-purple:hover { background: #6521d4; transform: translateY(-2px); box-shadow: 0 8px 30px var(--purple-glow); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue-light); background: var(--blue-glow); }

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(8,8,16,0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo span { color: var(--blue); }
.logo-badge {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 16px var(--blue-glow);
  flex-shrink: 0;
}

/* Desktop nav */
nav { display: flex; gap: 28px; }
nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width var(--transition);
}
nav a:hover { color: var(--white); }
nav a:hover::after { width: 100%; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav { display: none; flex-direction: column; background: var(--black2); border-top: 1px solid rgba(255,255,255,0.06); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 15px 24px; color: var(--muted); font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color var(--transition), background var(--transition); }
.mobile-nav a:hover { color: var(--white); background: var(--black3); }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Animated background orbs */
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-drift 8s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: rgba(30,111,255,0.12); top: -100px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 350px; height: 350px; background: rgba(232,25,44,0.08); bottom: -50px; left: 10%; animation-delay: -3s; }
.orb-3 { width: 250px; height: 250px; background: rgba(124,58,237,0.1); top: 40%; left: -80px; animation-delay: -5s; }
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Grid lines background pattern */
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,111,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,111,255,0.06) 1px, transparent 1px);
  background-size: 70px 70px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Available badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(232,25,44,0.1);
  border: 1px solid rgba(232,25,44,0.35);
  color: #ff6b7a;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,25,44,0.5); }
  50% { box-shadow: 0 0 0 7px rgba(232,25,44,0); }
}

.hero-text h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); margin-bottom: 20px; }
.highlight { color: var(--blue-light); }
.hero-text p { color: var(--muted); font-size: 1.05rem; max-width: 450px; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.stat-num { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; }
.stat-num span { color: var(--blue); }
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-mockup {
  width: 230px;
  height: 460px;
  background: linear-gradient(160deg, var(--black3), var(--black2));
  border-radius: 38px;
  border: 1.5px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: float 5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-18px) rotate(1deg); } }

.phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 20px; background: var(--black); border-radius: 12px; z-index: 2;
}
.phone-screen {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0a1628, #0e2248, #1a3464);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 50px 20px 30px;
}
.phone-app-icon { font-size: 3rem; filter: drop-shadow(0 4px 12px rgba(30,111,255,0.5)); }
.phone-app-name { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; text-align: center; }
.phone-app-sub { font-size: 0.72rem; color: var(--muted); text-align: center; }
.phone-stars { font-size: 0.9rem; color: #ffd700; letter-spacing: 3px; }
.phone-shine {
  position: absolute; top: 0; left: -50%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
  animation: shine 4s ease-in-out infinite;
}
@keyframes shine { 0%, 100% { left: -50%; } 50% { left: 120%; } }

/* Floating tech badges around phone */
.tech-badge {
  position: absolute;
  background: rgba(22,22,37,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 9px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 7px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.tech-badge i { color: var(--blue); font-size: 0.9rem; }
.tb-1 { top: 60px; left: -60px; animation: float 5s ease-in-out infinite; animation-delay: -1s; }
.tb-2 { bottom: 120px; right: -70px; animation: float 5s ease-in-out infinite; animation-delay: -2.5s; }
.tb-3 { bottom: 40px; left: -50px; animation: float 5s ease-in-out infinite; animation-delay: -0.8s; }

/* ============================================================
   APPS SECTION
   ============================================================ */
#apps {
  padding: 110px 0;
  background: var(--black2);
  position: relative;
  overflow: hidden;
}
/* Decorative background gradient */
#apps::before {
  content: '';
  position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(30,111,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* App card */
.app-card {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Top highlight line on hover */
.app-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.app-card:hover { transform: translateY(-6px); border-color: rgba(30,111,255,0.25); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.app-card:hover::before { transform: scaleX(1); }

/* Featured (FocusGuard) card */
.app-card-featured { border-color: rgba(124,58,237,0.25); }
.app-card-featured::before { background: linear-gradient(90deg, var(--purple), #a855f7); }
.app-card-featured:hover { border-color: rgba(124,58,237,0.5); }

.new-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--purple);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 50px;
  box-shadow: 0 4px 12px var(--purple-glow);
}

/* App card top row */
.app-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

/* App icon */
.app-icon-large {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}
.icon-blue  { background: linear-gradient(135deg, #1e6fff, #00c6ff); box-shadow: 0 8px 20px rgba(30,111,255,0.35); }
.icon-green { background: linear-gradient(135deg, #00c851, #007e33); box-shadow: 0 8px 20px rgba(0,200,81,0.3); }
.icon-purple{ background: linear-gradient(135deg, #7c3aed, #a855f7); box-shadow: 0 8px 20px rgba(124,58,237,0.35); }

/* Thumbnail image (when added) */
.app-thumb-img { width: 60px; height: 60px; border-radius: 16px; object-fit: cover; }

/* Store badge */
.app-badge-store {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--black4);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 4px 10px;
  border-radius: 6px;
  display: flex; align-items: center; gap: 5px;
}
.apk-badge { color: #a78bfa; border-color: rgba(124,58,237,0.3); background: rgba(124,58,237,0.08); }

/* App card text */
.app-card h3 { font-size: 1.1rem; margin-top: 4px; }
.app-cat { font-size: 0.75rem; color: var(--blue-light); font-weight: 600; letter-spacing: 0.05em; }
.app-card p { font-size: 0.88rem; color: var(--muted); flex: 1; }

/* Features list (FocusGuard) */
.app-features { display: flex; flex-direction: column; gap: 6px; }
.app-features li {
  font-size: 0.82rem; color: var(--muted);
  display: flex; align-items: center; gap: 7px;
}
.app-features li i { color: var(--green); font-size: 0.75rem; }

/* App card footer */
.app-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.rating { display: flex; align-items: center; gap: 3px; font-size: 0.82rem; color: var(--muted); }
.rating i { color: #ffd700; font-size: 0.75rem; }
.rating span { margin-left: 4px; font-weight: 600; }
.apk-note { font-size: 0.78rem; color: #a78bfa; display: flex; align-items: center; gap: 5px; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  padding: 110px 0;
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--black2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
/* Blue glow overlay on hover */
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, var(--blue-glow), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(30,111,255,0.3); }
.service-card:hover::after { opacity: 1; }

.service-icon-wrap { margin-bottom: 18px; }
.service-icon {
  width: 48px; height: 48px;
  background: var(--blue-glow);
  border: 1px solid rgba(30,111,255,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--blue);
  transition: var(--transition);
  position: relative; z-index: 1;
}
.service-card:hover .service-icon { background: var(--blue); color: #fff; box-shadow: 0 6px 20px var(--blue-glow); border-color: var(--blue); }

.service-card h3 { font-size: 1rem; margin-bottom: 8px; position: relative; z-index: 1; }
.service-card p { font-size: 0.86rem; color: var(--muted); position: relative; z-index: 1; }

.service-arrow {
  margin-top: 16px;
  color: var(--muted2);
  font-size: 0.85rem;
  transition: var(--transition);
  position: relative; z-index: 1;
}
.service-card:hover .service-arrow { color: var(--blue); transform: translateX(4px); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  padding: 110px 0;
  background: var(--black2);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,111,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative; z-index: 1;
}
.contact-left h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 12px 0 14px; }
.contact-left > p { color: var(--muted); margin-bottom: 32px; font-size: 0.97rem; }

.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  color: var(--white);
}
.contact-row:hover { border-color: rgba(30,111,255,0.3); background: var(--black4); }

.contact-icon {
  width: 40px; height: 40px;
  background: var(--blue-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--blue);
  flex-shrink: 0;
  transition: var(--transition);
}
.wa-icon { background: rgba(37,211,102,0.15); color: #25d366; }
.contact-row:hover .contact-icon { background: var(--blue); color: #fff; }
.contact-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }

/* CV Card */
.cv-card {
  background: var(--black3);
  border: 1px solid rgba(232,25,44,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.cv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), #ff6b6b);
}
.cv-card-inner { padding: 32px; }
.cv-card-inner h3 { font-size: 1.4rem; margin: 10px 0 8px; }
.price {
  font-family: 'Syne', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: var(--red); line-height: 1;
  margin: 12px 0;
}
.price span { font-size: 1.8rem; }
.cv-card-inner > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }
.cv-perks { display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.cv-perks li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--muted); }
.cv-perks li i { color: var(--green); font-size: 0.9rem; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; }
.footer-copy { font-size: 0.83rem; color: var(--muted); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px;
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; color: var(--muted);
  transition: var(--transition);
}
.social-links a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  animation: wa-float 3s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1) !important; box-shadow: 0 10px 32px rgba(37,211,102,0.6); animation-play-state: paused; }
@keyframes wa-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.tooltip {
  position: absolute;
  right: 68px;
  background: var(--black2);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.whatsapp-float:hover .tooltip { opacity: 1; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  nav, .header-btn { display: none; }
  .hamburger { display: flex; }

  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text p { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; gap: 30px; }
  .hero-visual { order: -1; }
  .tech-badge { display: none; }

  .apps-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 36px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 2.2rem; }
  .price { font-size: 2.4rem; }
}