/* ============================================
   ADORA PIXEL — DESIGN TOKENS
   Light, warm, trustworthy theme built from the
   brand mark's own purple + orange.
   ============================================ */
:root {
  --purple: #6722b5;
  --purple-deep: #4e1a8c;
  --purple-soft: #f3edfb;
  --purple-line: #e4d8f5;

  --orange: #ff7425;
  --orange-deep: #e35f13;
  --orange-soft: #ffefe4;

  --ink: #2b2438;
  --slate: #665f76;
  --slate-light: #948d9e;

  --paper: #ffffff;
  --paper-warm: #fdfbfa;
  --line: #ece6f2;

  --font-display:
    "Poppins", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial,
    sans-serif;
  --font-body:
    "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial,
    sans-serif;

  --max: 1180px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --shadow-sm: 0 4px 16px rgba(78, 26, 140, 0.06);
  --shadow: 0 16px 40px rgba(78, 26, 140, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--purple);
  background: var(--purple-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 18px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ============ REVEAL ANIMATION ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 116, 37, 0.28);
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 116, 37, 0.34);
}
.btn-ghost {
  border-color: var(--purple-line);
  color: var(--purple);
  background: #fff;
}
.btn-ghost:hover {
  border-color: var(--purple);
  background: var(--purple-soft);
}
.btn-full {
  width: 100%;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 54px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--purple);
}
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(255, 116, 37, 0.26);
}
.nav-cta:hover {
  background: var(--orange-deep);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 0.25s,
    opacity 0.25s;
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
  padding: 80px 24px 90px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.2rem);
  line-height: 1.14;
  margin-bottom: 22px;
}
.hero h1 em {
  color: var(--orange);
  font-style: normal;
}
.hero-sub {
  color: var(--slate);
  font-size: 1.08rem;
  max-width: 48ch;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--slate);
}
.hero-trust strong {
  color: var(--purple);
  font-weight: 700;
}

/* ---- hero visual: layered website mockup + trust cards ---- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 30px 10px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}
.blob-purple {
  width: 280px;
  height: 280px;
  background: rgba(103, 34, 181, 0.16);
  top: -30px;
  left: -30px;
}
.blob-orange {
  width: 240px;
  height: 240px;
  background: rgba(255, 116, 37, 0.18);
  bottom: -30px;
  right: -20px;
}

.mock-browser {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 60px -12px rgba(78, 26, 140, 0.22),
    0 8px 20px rgba(78, 26, 140, 0.08);
  overflow: hidden;
  border: 1px solid var(--line);
  transform: rotate(-3deg);
}
.mock-bar {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.mock-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.mock-bar span:nth-child(1) {
  background: #f7c6b0;
}
.mock-bar span:nth-child(2) {
  background: #f9dfa0;
}
.mock-bar span:nth-child(3) {
  background: #bfe3c4;
}

.mock-hero-img {
  height: 110px;
  background: linear-gradient(
    135deg,
    var(--purple) 0%,
    #8b4fd9 45%,
    var(--orange) 100%
  );
  position: relative;
  overflow: hidden;
}
.mock-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 25% 30%,
    rgba(255, 255, 255, 0.25),
    transparent 55%
  );
}

.mock-body {
  padding: 24px 22px 26px;
}
.mock-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--purple);
  margin: -38px 0 18px;
  box-shadow: 0 4px 10px rgba(78, 26, 140, 0.3);
  position: relative;
  z-index: 1;
}
.mock-line {
  height: 11px;
  border-radius: 6px;
  background: var(--purple-soft);
  margin-bottom: 10px;
}
.mock-line.w-80 {
  width: 80%;
}
.mock-line.w-60 {
  width: 60%;
}
.mock-cta {
  margin-top: 16px;
  width: 118px;
  height: 34px;
  border-radius: 999px;
  background: var(--orange);
}
.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.mock-cards span {
  display: block;
  height: 44px;
  border-radius: 10px;
  background: var(--purple-soft);
}
.mock-cards span:nth-child(2) {
  background: var(--orange-soft);
}

.float-card {
  position: absolute;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 32px rgba(43, 36, 56, 0.14);
  padding: 14px 18px;
}
.rating-card {
  top: 2%;
  right: -2%;
  animation: floatA 5.5s ease-in-out infinite;
}
.rating-card .stars {
  color: var(--orange);
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 4px;
}
.rating-card p {
  font-size: 0.8rem;
  color: var(--slate);
  font-weight: 600;
  white-space: nowrap;
}

.badge-card {
  bottom: 6%;
  left: -3%;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatB 5.5s ease-in-out infinite;
  animation-delay: 0.6s;
}
.badge-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
}
.badge-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--orange-deep);
  line-height: 1.1;
}
.badge-card p {
  font-size: 0.76rem;
  color: var(--slate);
  font-weight: 600;
  white-space: nowrap;
}

@keyframes floatA {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(4deg) translateY(-10px);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: rotate(-3deg) translateY(0);
  }
  50% {
    transform: rotate(-3deg) translateY(-10px);
  }
}

/* ============ STRIP ============ */
.strip {
  background: var(--purple-soft);
  padding: 18px 24px;
}
.strip-text {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--purple-deep);
}

/* ============ SECTIONS ============ */
.section {
  padding: 96px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.section-tint {
  background: var(--paper-warm);
  max-width: none;
}
.section-tint > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  margin-bottom: 14px;
}
.section-sub {
  color: var(--slate);
  font-size: 1.02rem;
}

/* ============ SERVICES GRID ============ */
.grid-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--purple-line);
}
.card-icon {
  width: 46px;
  height: 46px;
  color: var(--purple);
  background: var(--purple-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg {
  width: 22px;
  height: 22px;
}
.card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.card p {
  color: var(--slate);
  font-size: 0.94rem;
}

/* ============ SUPPORT GRID ============ */
.grid-support {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.support-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.support-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-deep);
  background: var(--orange-soft);
  border-radius: 8px;
  margin-bottom: 16px;
}
.support-item h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.support-item p {
  color: var(--slate);
  font-size: 0.9rem;
}

/* ============ PROCESS ============ */
.process-list {
  display: flex;
  flex-direction: column;
}
.process-list li {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.process-list li:first-child {
  border-top: 1px solid var(--line);
}
.process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
}
.process-list h3 {
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.process-list p {
  color: var(--slate);
  font-size: 0.94rem;
  max-width: 56ch;
}

/* ============ STATS ============ */
.stats {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 24px 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 16px;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--purple);
  font-weight: 700;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--slate);
  font-weight: 500;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 760px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 20px 22px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
}
.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background: var(--purple-soft);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--purple);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}
.faq-icon::before {
  width: 9px;
  height: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 9px;
  transition: transform 0.25s var(--ease);
}
.faq-q[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-a p {
  padding: 0 22px 22px;
  color: var(--slate);
  max-width: 60ch;
  font-size: 0.95rem;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-details {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-label {
  font-size: 0.8rem;
  color: var(--slate-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.contact-details a,
.contact-details span {
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.contact-details a:hover {
  color: var(--orange-deep);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-size: 0.8rem;
  color: var(--slate);
  font-weight: 600;
}
.form-row input,
.form-row select,
.form-row textarea {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--purple);
  outline: none;
}
.form-note {
  font-size: 0.86rem;
  color: var(--purple);
  font-weight: 600;
  min-height: 1em;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.logo-footer img {
  height: 28px;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--slate);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--purple);
}
.footer-meta {
  font-size: 0.82rem;
  color: var(--slate-light);
  width: 100%;
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s var(--ease);
}
.whatsapp-btn svg {
  width: 27px;
  height: 27px;
}
.whatsapp-btn:hover {
  transform: scale(1.08);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }
  .grid-services {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-support {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 64px 0 0 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
  }
  .nav-links.is-open {
    transform: translateX(0);
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .grid-services {
    grid-template-columns: 1fr;
  }
  .grid-support {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .section {
    padding: 60px 20px;
  }
  .section-tint {
    padding: 60px 0;
  }
  .hero {
    padding: 56px 20px 50px;
  }

  .hero-visual {
    max-width: 300px;
    padding: 24px 4px;
  }
  .float-card {
    padding: 10px 13px;
  }
  .rating-card {
    right: 0;
    top: -2%;
  }
  .badge-card {
    left: 0;
    bottom: 0%;
  }
  .badge-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    font-size: 0.8rem;
  }
  .rating-card .stars {
    font-size: 0.75rem;
  }
  .rating-card p,
  .badge-card p {
    font-size: 0.7rem;
  }
  .badge-card strong {
    font-size: 0.92rem;
  }
}
