/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
  background: #ffffff;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ── Colour tokens ── */
:root {
  --purple: #6b46c1;
  --purple-dark: #4c3399;
  --purple-light: #ede9fe;
  --purple-mid: #d8b4fe;
  --accent: #f59e0b;
  --dark: #1a1a2e;
  --grey: #6b7280;
  --light: #f9f7ff;
  --white: #ffffff;
}

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--purple-mid));
  z-index: 300;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ede9fe;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: box-shadow 0.3s ease;
}
nav.scrolled {
  box-shadow: 0 4px 20px rgba(107, 70, 193, 0.12);
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.5px;
}
.nav-logo span {
  color: var(--dark);
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--purple);
}
.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition:
    background 0.2s,
    transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--purple-dark) !important;
  transform: translateY(-1px);
}
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.28s ease;
  transform-origin: center;
}
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Accepting clients badge ── */
.accepting-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #059669;
  background: #d1fae5;
  padding: 3px 10px 3px 8px;
  border-radius: 50px;
  white-space: nowrap;
  margin-right: auto;
  margin-left: 1rem;
}
.accepting-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
}

/* ── Sections ── */
section {
  padding: 90px 5%;
}
section[id] {
  scroll-margin-top: 80px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}
h1,
h2,
h3 {
  line-height: 1.2;
}
h2.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  padding-top: 130px;
  background: linear-gradient(135deg, #f9f7ff 0%, #ede9fe 50%, #d8b4fe22 100%);
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--purple-mid);
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: "✦";
  font-size: 0.7rem;
}
h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--dark);
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}
h1 .highlight {
  color: var(--purple);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--grey);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 70, 193, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s;
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--purple-light);
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #d8b4fe;
}
.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--purple);
}
.hero-stat span {
  font-size: 0.85rem;
  color: var(--grey);
}
/* hero visual card */
.hero-visual {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(107, 70, 193, 0.15);
  border: 1px solid #ede9fe;
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
}
.hero-card-name {
  font-weight: 700;
  font-size: 1rem;
}
.hero-card-role {
  font-size: 0.82rem;
  color: var(--grey);
}
.task-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.task-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--light);
  border-radius: 12px;
  font-size: 0.9rem;
}
.task-item .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.task-item .pending {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--purple-mid);
  flex-shrink: 0;
  animation: pendingPulse 2s ease-in-out infinite;
}
@keyframes pendingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(216, 180, 254, 0.6); }
  50%       { box-shadow: 0 0 0 7px rgba(216, 180, 254, 0); }
}
/* Checkbox load animation */
.task-item .check.check-init {
  background: transparent;
  border: 2px solid var(--purple-mid);
  color: transparent;
}
@keyframes checkPop {
  0%   { background: transparent; border-color: var(--purple-mid); color: transparent; transform: scale(0.5); }
  65%  { transform: scale(1.3); }
  100% { background: var(--purple); border-color: var(--purple); color: white; transform: scale(1); }
}
.task-item .check.check-pop {
  animation: checkPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ── Typing cursor on in-progress task ── */
.in-progress-text::after {
  content: '|';
  margin-left: 1px;
  color: #9ca3af;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── SERVICES ── */
#services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #ede9fe;
  transition: all 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(107, 70, 193, 0.15);
  border-color: var(--purple-mid);
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--white) 70%);
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.7;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.tag {
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  transition: all 0.18s ease;
  cursor: default;
}
.tag:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── WHO I HELP ── */
#who {
  background: var(--light);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.industry-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #ede9fe;
  transition: all 0.25s;
}
.industry-card:hover {
  border-color: var(--purple);
  box-shadow: 0 8px 24px rgba(107, 70, 193, 0.1);
}
.industry-emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.industry-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.industry-card p {
  font-size: 0.82rem;
  color: var(--grey);
}

/* ── PACKAGES ── */
#packages {
  background: var(--dark);
}
#packages .section-label {
  background: rgba(107, 70, 193, 0.3);
  color: var(--purple-mid);
}
#packages h2.section-title {
  color: var(--white);
}
#packages .section-subtitle {
  color: #9ca3af;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.package-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.package-card.popular {
  background: var(--purple);
  border-color: var(--purple-mid);
  transform: scale(1.03);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.package-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple-mid);
  margin-bottom: 0.5rem;
}
.package-card.popular .package-name {
  color: #d8b4fe;
}
.package-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.package-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #9ca3af;
}
.package-hrs {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.package-features li {
  font-size: 0.88rem;
  color: #d1d5db;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.package-features li::before {
  content: "✓";
  color: var(--purple-mid);
  font-weight: 800;
  flex-shrink: 0;
}
.package-card.popular .package-features li {
  color: rgba(255, 255, 255, 0.9);
}
.package-card.popular .package-features li::before {
  color: #d8b4fe;
}
.pkg-btn {
  display: block;
  text-align: center;
  padding: 0.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s;
  cursor: pointer;
  margin-top: auto;
}
.pkg-btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}
.pkg-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}
.pkg-btn-filled {
  background: var(--white);
  color: var(--purple);
}
.pkg-btn-filled:hover {
  background: #ede9fe;
}

/* ── HOW IT WORKS ── */
#process {
  background: var(--white);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  border-top: 2px dashed rgba(107, 70, 193, 0.25);
  z-index: 0;
}
.step-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.step-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.step-card p {
  font-size: 0.85rem;
  color: var(--grey);
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--light);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 20px;
  border: 1px solid #ede9fe;
}
.stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial-author strong {
  font-size: 0.9rem;
  display: block;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--grey);
}
.placeholder-note {
  font-size: 0.75rem;
  color: var(--purple);
  background: var(--purple-light);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 0.5rem;
}

/* ── ABOUT ── */
#about {
  background: linear-gradient(135deg, #6b46c1 0%, #4c3399 100%);
  color: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
#about .section-label {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
#about h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
#about p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-val {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.about-val .val-icon {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.about-val h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.about-val p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.about-visual {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.skill-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}
.skill-bar-label span:last-child {
  color: var(--purple-mid);
  font-weight: 700;
}
.skill-bar-track {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  height: 8px;
}
.skill-bar-fill {
  height: 8px;
  border-radius: 50px;
  background: linear-gradient(90deg, #d8b4fe, var(--white));
}

/* ── CONTACT ── */
#contact {
  background: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.contact-info p {
  color: var(--grey);
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}
.contact-detail span {
  font-size: 0.9rem;
  color: var(--grey);
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  font-size: 0.85rem;
  font-weight: 600;
}
input,
textarea,
select {
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--light);
  width: 100%;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--purple);
  background: var(--white);
}
textarea {
  resize: vertical;
  min-height: 120px;
}
.submit-btn {
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s;
}
.submit-btn:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 70, 193, 0.35);
}

/* ── Footer ── */
footer {
  background: var(--dark);
  padding: 3rem 5% 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-logo span {
  color: var(--purple-mid);
}
.footer-brand p {
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col a:not(.social-link) {
  display: block;
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:not(.social-link):hover {
  color: var(--purple-mid);
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #6b7280;
}
.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--purple);
  color: var(--white);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero content entrance ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards;
}

/* ── Back to top ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(107, 70, 193, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--purple-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(107, 70, 193, 0.5);
}

/* ── Trust strip ── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid #ede9fe;
  padding: 0.8rem 5%;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey);
  white-space: nowrap;
}
.trust-item-icon {
  color: var(--purple);
  font-size: 0.85rem;
}
.trust-sep {
  width: 1px;
  height: 14px;
  background: #e5e7eb;
  flex-shrink: 0;
}

/* ── Section wave curves ── */
.section-curve {
  height: 60px;
  overflow: hidden;
  display: block;
  line-height: 0;
}
.section-curve svg {
  width: 100%;
  height: 60px;
  display: block;
}
.curve-into-dark {
  background: var(--dark);
}
.curve-out-of-dark {
  background: var(--white);
}

/* ── Testimonial avatars ── */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

/* ── FAQ ── */
#faq {
  background: var(--light);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #ede9fe;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--purple-mid);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--dark);
  font-family: inherit;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--purple);
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--purple);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
  font-weight: 300;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1.4rem;
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.75;
}
.faq-item.open .faq-a {
  padding-bottom: 1.25rem;
}

/* ── WhatsApp button ── */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 5.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}
.whatsapp-btn svg {
  width: 22px;
  height: 22px;
  fill: white;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    padding: 1.5rem;
  }
  .services-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid::before {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .nav-burger {
    display: flex;
  }
  .nav-links {
    display: flex;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #ede9fe;
    box-shadow: 0 8px 24px rgba(107, 70, 193, 0.1);
    padding: 0 5%;
    gap: 0;
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }
  .nav-links.open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
    padding: 0.5rem 5% 1rem;
  }
  .nav-links a:not(.nav-cta) {
    padding: 0.85rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 1rem;
  }
  .nav-links a:not(.nav-cta):last-of-type {
    border-bottom: none;
  }
  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    padding: 0.75rem 1.25rem !important;
  }
  .package-card.popular {
    transform: none;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  section {
    padding: 60px 5%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .trust-sep {
    display: none;
  }
  .whatsapp-btn {
    right: 5rem;
    bottom: 1.5rem;
  }
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .accepting-badge {
    display: none;
  }
}

/* ── Reduced motion accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
