:root {
  --navy: #0F172A;
  --navy-light: #1E3A8A;
  --orange: #3B82F6;
  --orange-light: #60A5FA;
  --blue: #3B82F6;
  --blue-light: #93C5FD;
  --white: #ffffff;
  --bg: #F1F5F9;
  --text: #0F172A;
  --muted: #64748B;
  --border: #E2E8F0;
  --card: #ffffff;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 12px 48px rgba(15, 23, 42, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--bg);
}

.badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  color: var(--orange);
  border: 1px solid rgba(59, 130, 246, 0.3);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title span {
  color: var(--orange);
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--orange);
  color: white;
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--orange);
}

.btn-white:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  padding: 0.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--blue-light);
  text-decoration: none;
}

.topbar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  z-index: 1001;
  position: relative;
}

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

.nav-links {
  display: flex;
  gap: 0.2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--orange);
  background: rgba(59, 130, 246, 0.06);
}

.nav-cta {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

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

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile slide-down menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  z-index: 999;
  padding: 1.5rem 5% 2rem;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
  border-top: 1px solid var(--border);
  animation: slideDown 0.25s ease;
}

.mobile-menu.open {
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.mobile-menu ul li a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu ul li a:hover {
  color: var(--orange);
  padding-left: 0.5rem;
}

.mobile-menu .mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.mobile-menu .mobile-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 0.9rem;
  font-size: 0.95rem;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A8A 60%, #1e40af 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 65%);
}

.hero-glow2 {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  animation: fadeUp 0.9s ease both;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  color: var(--orange);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

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

.hero-trust {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.trust-item .check {
  width: 22px;
  height: 22px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: float 4s ease-in-out infinite;
}

.hero-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.5rem 1.8rem;
  color: white;
  min-width: 240px;
}

.hero-card .card-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.hero-card h4 {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.hero-card p {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.hero-card .price-ugx {
  font-size: 0.75rem;
  opacity: 0.6;
  font-weight: 400;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.5rem 1.5rem;
}

.tb-icon {
  display: flex;
  align-items: center;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

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

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transition: transform 0.3s;
  transform-origin: bottom;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(30, 58, 138, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-card a {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.service-card a:hover {
  text-decoration: underline;
}

/* ─── WHY CHOOSE US ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 2rem;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.3rem;
  border-radius: 12px;
  transition: background 0.2s;
}

.why-feature:hover {
  background: var(--bg);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon.orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.feature-icon.blue {
  background: linear-gradient(135deg, #1E3A8A, #3B82F6);
}

.why-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.why-feature p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.stat-box {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.stat-box.featured {
  background: var(--navy);
}

.stat-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
}

.stat-box p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.stat-box.featured p {
  color: rgba(255, 255, 255, 0.65);
}

/* ─── PRICING EXPLAINER ─── */
.pricing-explainer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(30, 58, 138, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 14px;
  padding: 1.4rem 1.8rem;
  margin: 2.5rem 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

.pe-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── WEB DEV PRICING ─── */
.dev-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.dev-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.dev-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dev-card-header {
  background: var(--navy);
  padding: 2rem;
  color: white;
  text-align: center;
}

.dev-card.featured .dev-card-header {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.dev-card-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.dev-card-header .price {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: rgba(255, 255, 255, 0.95);
}

.dev-card-header .price-note {
  font-size: 0.8rem;
  opacity: 0.7;
}

.dev-card-body {
  padding: 2rem;
}

.dev-card-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.dev-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.dev-card-body li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text);
}

.dev-card-body li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
}

.dev-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.28rem 1.1rem;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 2;
}

/* ─── CARE PLAN BOX ─── */
.care-plan-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--navy);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.cp-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
}

.cp-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.care-plan-box h3 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.4rem;
}

.care-plan-box h3 span {
  color: var(--orange);
}

.care-plan-box p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ─── PORTFOLIO ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.portfolio-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  z-index: 2;
}

.po-label {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.po-days {
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
}

.portfolio-info {
  padding: 1.3rem 1.5rem;
}

.portfolio-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.portfolio-info p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.portfolio-tag {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  color: var(--orange);
  border: 1px solid rgba(59, 130, 246, 0.25);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-tag.ecom {
  background: rgba(245, 87, 108, 0.1);
  color: #f5576c;
  border-color: rgba(245, 87, 108, 0.25);
}

.portfolio-tag.biz {
  background: rgba(30, 58, 138, 0.1);
  color: #1E3A8A;
  border-color: rgba(30, 58, 138, 0.25);
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.author-role {
  font-size: 0.82rem;
  color: var(--muted);
}

.featured-testimonial {
  background: var(--navy);
  border-color: var(--navy);
}

.featured-testimonial p {
  color: rgba(255, 255, 255, 0.85);
}

.featured-testimonial .author-name {
  color: white;
}

.featured-testimonial .author-role {
  color: rgba(255, 255, 255, 0.55);
}

/* ─── PAYMENT ─── */
.payment-section {
  background: var(--navy);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.payment-section .section-title {
  color: white;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.payment-pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.payment-pill:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.payment-pill .pm-icon {
  display: flex;
  align-items: center;
}

/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(135deg, #1E3A8A, #3B82F6);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.2rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  padding: 0.5rem 1.4rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}

.cta-contact-pill:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  gap: 1rem;
}

.faq-question:hover {
  background: var(--bg);
}

.faq-toggle {
  font-size: 1.3rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 400;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 1rem 1.5rem 1.3rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-answer {
  display: block;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: white;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 0 5%;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  max-width: 260px;
}

.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
}

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

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.3rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-contact-list a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--orange);
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  cursor: pointer;
  z-index: 998;
  text-decoration: none;
  animation: pulse 2s ease-in-out infinite;
  transition: transform 0.2s;
}

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

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ─── MODAL ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  animation: fadeUp 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
}

.modal h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.modal p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group textarea {
  height: 100px;
  resize: none;
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s;
  border-left: 4px solid var(--orange);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 18px));
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8);
  }
}

/* ═══════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════ */

/* TABLET */
@media (max-width: 992px) {
  .hero-visual {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .dev-plans {
    grid-template-columns: 1fr 1fr;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  /* Topbar hide */
  .topbar {
    display: none;
  }

  /* Nav */
  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 60px 0 50px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .hero p {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  /* Trust bar */
  .trust-divider {
    display: none;
  }

  .trust-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.78rem;
  }

  /* Sections */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat-box h2 {
    font-size: 2rem;
  }

  .stat-box {
    padding: 1.5rem 1rem;
  }

  /* Pricing */
  .dev-plans {
    grid-template-columns: 1fr;
  }

  .pricing-explainer {
    flex-direction: column;
    font-size: 0.88rem;
    padding: 1.2rem;
  }

  .care-plan-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .cp-left {
    flex-direction: column;
    text-align: center;
  }

  .care-plan-box .btn {
    width: 100%;
    justify-content: center;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Payment */
  .payment-methods {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .payment-pill {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* CTA */
  .cta-section {
    padding: 60px 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .cta-contact-row {
    flex-direction: column;
    align-items: center;
  }

  .cta-contact-pill {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.88rem;
    padding: 1rem 1.2rem;
  }

  .faq-answer {
    font-size: 0.88rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand p {
    max-width: 100%;
  }

  footer {
    padding: 50px 0 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  /* WhatsApp */
  .whatsapp-float {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 50px;
    height: 50px;
  }

  /* Modal */
  .modal {
    padding: 1.8rem 1.4rem;
  }

  .modal h2 {
    font-size: 1.25rem;
  }

  /* Toast */
  .toast {
    width: 88%;
    text-align: center;
    font-size: 0.85rem;
    padding: 0.9rem 1.2rem;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .container {
    padding: 0 4%;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .dev-card-header .price {
    font-size: 1.9rem;
  }

  .btn-lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }

  .why-stats {
    gap: 0.8rem;
  }

  .stat-box h2 {
    font-size: 1.7rem;
  }
}