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

:root {
  --bg: #0a0a0f;
  --bg2: #10101a;
  --accent: #6c63ff;
  --accent2: #a78bfa;
  --gold: #f59e0b;
  --text: #e8e8f0;
  --muted: #8888aa;
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/* never let an image or embedded widget exceed its container */
img, iframe { max-width: 100%; }

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

/* ─── ANNOUNCE BAR ─── */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  height: 42px; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 1rem;
  background: linear-gradient(90deg, #6c63ff, #8b5cf6);
  color: #fff; font-size: 0.85rem; font-weight: 500;
  overflow: hidden; white-space: nowrap;
}
.announce-bar strong { font-weight: 800; }
.announce-short { display: none; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 42px; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.35rem; font-weight: 800; text-decoration: none;
  background: linear-gradient(135deg, #fff 0%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* hamburger (mobile only) */
.nav-toggle {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.95rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

/* contact link lives in the mobile menu only (desktop uses the CTA button) */
.nav-link-contact { display: none; }

.nav-cta {
  background: var(--accent); color: #fff; border: none;
  padding: 0.6rem 1.4rem; border-radius: 8px;
  font-family: 'Heebo', sans-serif; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.nav-cta:hover { background: var(--accent2); transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
  padding: 0 5%; padding-top: 130px;
  overflow: hidden;
}

.hero-trust {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1.8rem; font-size: 0.85rem; color: var(--muted);
}
.trust-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }

.hero-image-wrap {
  position: relative; z-index: 1;
}

.hero-image-wrap img {
  width: 100%; border-radius: 20px;
  object-fit: cover; height: 560px;
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.hero-image-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(108,99,255,0.4);
  color: var(--accent2); font-size: 0.8rem; font-weight: 700;
  padding: 0.5rem 1rem; border-radius: 100px;
  letter-spacing: 0.05em;
}

.hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(108,99,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(167,139,250,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(108,99,255,0.15); border: 1px solid rgba(108,99,255,0.3);
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; color: var(--accent2);
  margin-bottom: 1.8rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.hero-badge span {
  width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem; color: var(--muted); line-height: 1.8;
  margin-bottom: 2.5rem; max-width: 560px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
  color: #fff; border: none; padding: 0.85rem 2rem;
  border-radius: 10px; font-family: 'Heebo', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all 0.25s; text-decoration: none; display: inline-block;
  box-shadow: 0 4px 24px rgba(108,99,255,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(108,99,255,0.5); }

.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border); padding: 0.85rem 2rem;
  border-radius: 10px; font-family: 'Heebo', sans-serif;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all 0.25s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--accent2); color: var(--accent2); }

.hero-stats { display: flex; gap: 3rem; margin-top: 4rem; }

.stat-num {
  font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 0.1rem; }

/* ─── SECTION SHARED ─── */
section { padding: 100px 5%; position: relative; }
/* offset anchor jumps so titles don't hide under the fixed header */
section[id] { scroll-margin-top: 110px; }

.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent2);
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem; color: var(--muted);
  max-width: 540px; line-height: 1.8; margin-bottom: 3.5rem;
}

/* ─── SERVICES ─── */
#services { background: var(--bg2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  transition: all 0.3s; cursor: default;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108,99,255,0.3);
  background: rgba(255,255,255,0.06);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(108,99,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
}

.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ─── ABOUT ─── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.about-image-wrap { position: relative; }

.about-image-wrap img {
  width: 100%; border-radius: 20px;
  object-fit: cover; height: 520px;
  filter: grayscale(15%); display: block;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b6e 50%, #1a1a2e 100%);
}

.about-placeholder {
  width: 100%; height: 520px; border-radius: 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b6e 60%, #1a1a2e 100%);
  border: 1px dashed rgba(108,99,255,0.4);
  align-items: center; justify-content: center;
  text-align: center; color: var(--muted);
  font-size: 0.9rem; line-height: 1.8;
}
.about-placeholder code {
  color: var(--accent2); font-size: 0.82rem;
  background: rgba(108,99,255,0.1); padding: 0.2rem 0.5rem; border-radius: 4px;
}

.about-image-wrap::before {
  content: '';
  position: absolute; inset: -2px; border-radius: 22px;
  background: linear-gradient(135deg, var(--accent), transparent 60%);
  z-index: -1;
}

.about-tag {
  display: inline-block;
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25);
  color: var(--gold); padding: 0.3rem 0.8rem;
  border-radius: 6px; font-size: 0.78rem; font-weight: 700;
  margin-bottom: 1rem;
}

.about-content .section-sub { margin-bottom: 2rem; }

.about-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.about-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.95rem; color: var(--muted); line-height: 1.6;
}
.about-list li::before {
  content: '✓'; color: var(--accent2); font-weight: 700;
  flex-shrink: 0; margin-top: 0.1rem;
}

/* ─── PROCESS ─── */
#process { background: var(--bg2); }

.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 1.5rem;
}

.step {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
}

.step-num {
  font-size: 3.5rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--accent2) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 1rem;
}

.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ─── CONTACT ─── */
#contact {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}

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

.contact-item {
  display: flex; align-items: center; gap: 1.2rem;
  background: var(--card); border: 1px solid var(--border);
  padding: 1.2rem 1.5rem; border-radius: 12px;
}

.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(108,99,255,0.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.contact-item-text span {
  display: block; font-size: 0.75rem; color: var(--muted); margin-bottom: 0.2rem;
}
.contact-item-text a,
.contact-item-text strong {
  font-size: 0.95rem; font-weight: 600; color: var(--text); text-decoration: none;
}
.contact-item-text a:hover { color: var(--accent2); }

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

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--muted); }

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.85rem 1rem;
  font-family: 'Heebo', sans-serif; font-size: 0.95rem;
  color: var(--text); outline: none; transition: border-color 0.2s;
  width: 100%; direction: rtl;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.form-group textarea { resize: vertical; min-height: 130px; }

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

/* ─── FOOTER ─── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 2.5rem 5%; text-align: center;
}

.footer-logo {
  font-size: 1.2rem; font-weight: 800; margin-bottom: 0.6rem;
  background: linear-gradient(135deg, #fff 0%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: inline-block;
}

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

/* ─── PARTICLES ─── */
.particle {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 0;
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ─── SERVICE RESULT LINE ─── */
.service-result {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem; font-weight: 700; color: var(--accent2);
}

/* ─── PAIN POINTS ─── */
#pain { background: var(--bg2); }
.pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.pain-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem; text-align: center;
  transition: all 0.3s;
}
.pain-card:hover { border-color: rgba(245,158,11,0.35); transform: translateY(-4px); }
.pain-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pain-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
.pain-cta {
  text-align: center; margin-top: 3rem;
  font-size: 1.15rem; font-weight: 700; color: var(--text);
}

/* ─── TESTIMONIALS ─── */
#results { background: var(--bg2); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
}
.t-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-card > p {
  font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 1.5rem;
}
.t-author { display: flex; align-items: center; gap: 0.9rem; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 1.1rem; flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.95rem; }
.t-author span { font-size: 0.8rem; color: var(--muted); }

/* ─── PRICING ─── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 1.5rem; align-items: stretch;
}
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 2.2rem;
  display: flex; flex-direction: column;
  position: relative; transition: all 0.3s;
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(108,99,255,0.3); }
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(108,99,255,0.08), var(--card));
  box-shadow: 0 12px 48px rgba(108,99,255,0.15);
}
.price-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 0.35rem 1rem; border-radius: 100px; white-space: nowrap;
}
.price-name { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.6rem; }
.price-audience {
  font-size: 0.95rem; font-weight: 700; color: var(--accent2);
  margin-bottom: 0.6rem;
}
.price-desc { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.5rem; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; flex-grow: 1; }
.price-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: var(--muted); line-height: 1.5;
}
.price-features li::before { content: '✓'; color: var(--accent2); font-weight: 700; flex-shrink: 0; }

/* ─── FAQ ─── */
#faq { background: var(--bg2); }
.faq-list { max-width: 760px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 0 1.5rem; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 1.3rem 0; font-weight: 600; font-size: 1rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--accent2); font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 0 1.3rem; color: var(--muted); line-height: 1.8; font-size: 0.95rem; }

/* ─── FINAL CTA / CONTACT ─── */
.cta-headline-badge {
  display: inline-block; background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3); color: var(--gold);
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 1.2rem;
}
.cta-reassure { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin-bottom: 2rem; }
.cta-reassure span { font-size: 0.85rem; font-weight: 600; color: var(--accent2); }
.form-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.5rem; }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 0.3rem; }

/* ─── FLOATING WHATSAPP ─── */
.float-whatsapp {
  position: fixed; bottom: 24px; left: 24px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: transform 0.2s; animation: wa-pulse 2.5s infinite;
}
.float-whatsapp:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 34px rgba(37,211,102,0.8); }
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border);
  backdrop-filter: blur(12px); color: var(--text);
  font-size: 1.3rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, border-color 0.2s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--accent2); color: var(--accent2); }

/* ─── REDUCED MOTION (accessibility) ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .particle { display: none; }
}

/* ─── ENTRANCE ANIMATIONS ─── */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroImgIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-content > * { animation: heroIn 0.7s cubic-bezier(0.22,0.61,0.36,1) both; }
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.25s; }
.hero-content > *:nth-child(4) { animation-delay: 0.35s; }
.hero-content > *:nth-child(5) { animation-delay: 0.45s; }
.hero-content > *:nth-child(6) { animation-delay: 0.55s; }
.hero-image-wrap { animation: heroImgIn 0.9s cubic-bezier(0.22,0.61,0.36,1) 0.3s both; }

/* scroll reveal (class toggled by JS via IntersectionObserver) */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,0.61,0.36,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image-wrap { margin-top: 2.5rem; }
  .hero-image-wrap img { height: 340px; }
  #about, #contact { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { order: -1; }
  .about-image-wrap img { height: 360px; }
  .hero-stats { gap: 2rem; }
  .price-card.featured { transform: none; }

  /* mobile menu */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(10,10,15,0.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); padding: 0.25rem 5%;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 0.95rem 0; font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-link-contact { display: block; }
  /* hide the long header CTA on mobile — hamburger menu + floating WhatsApp cover it */
  .nav-cta { display: none; }
}

@media (max-width: 600px) {
  .announce-full { display: none; }
  .announce-short { display: inline; }
  .announce-bar { font-size: 0.78rem; }
  section { padding: 64px 6%; }
  .hero { padding-top: 120px; min-height: auto; padding-bottom: 64px; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1.05rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem 2rem; margin-top: 2.5rem; }
  .section-title { font-size: 1.7rem; }
  .float-whatsapp { width: 50px; height: 50px; bottom: 16px; left: 16px; }
  .back-to-top { width: 42px; height: 42px; bottom: 76px; right: 16px; }
}

/* ─── PROJECTS CAROUSEL ─── */
#projects { padding: 6rem 2rem; max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.projects-carousel { position: relative; }
.projects-track {
  display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 0.5rem 0.25rem 1.5rem;
  scrollbar-width: thin; scrollbar-color: var(--accent) transparent;
}
.projects-track::-webkit-scrollbar { height: 8px; }
.projects-track::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
.project-card {
  flex: 0 0 100%; scroll-snap-align: center;
  background: var(--card); border: 1px solid var(--border); border-radius: 24px;
  overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr;
  transition: transform .3s, border-color .3s;
}
.project-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.project-media {
  background: #050509; display: flex; align-items: center; justify-content: center;
  overflow: hidden; min-height: 320px;
}
.project-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.project-tag {
  display: inline-block; align-self: flex-start;
  background: rgba(108,99,255,0.15); color: var(--accent2);
  padding: 0.35rem 0.85rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 1rem;
}
.project-body h3 { font-size: 1.75rem; margin-bottom: 1rem; color: var(--text); }
.project-body p { color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; font-size: 1rem; }
.project-stack { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; }
.project-stack li {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text); padding: 0.3rem 0.75rem; border-radius: 8px;
  font-size: 0.8rem; font-weight: 500;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  font-size: 1.8rem; line-height: 1; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(108,99,255,0.4); transition: transform .2s, background .2s;
  z-index: 2;
}
.carousel-btn:hover { background: var(--accent2); transform: translateY(-50%) scale(1.08); }
.carousel-prev { right: -20px; }
.carousel-next { left: -20px; }
@media (max-width: 860px) {
  .project-card { grid-template-columns: 1fr; }
  .project-media { min-height: 240px; }
  .project-body { padding: 1.75rem; }
  .project-body h3 { font-size: 1.4rem; }
  .carousel-prev { right: 4px; }
  .carousel-next { left: 4px; }
}
