:root {
  --pink: #ec4899;
  --hot-pink: #ff69b4;
  --sky: #38bdf8;
  --soft-sky: #7dd3fc;
  --text: #172033;
  --muted: #607089;
  --purple: #2f2368;
  --green: #14b8a6;
  --line: #e9edf5;
  --white: #ffffff;
  --bg: #f8fbff;
  --shadow: 0 24px 70px rgba(47, 35, 104, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--purple);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 860px);
}

.section-pad {
  padding: 96px 0;
}

.section-tight {
  padding: 38px 0 64px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(233, 237, 245, 0.9);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(100% - 2rem, var(--container));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: min(220px, 44vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-left: auto;
}

.nav-menu a {
  color: #334158;
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-menu a:hover {
  color: var(--pink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.25rem;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--sky));
  box-shadow: 0 18px 35px rgba(236, 72, 153, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 22px 48px rgba(56, 189, 248, 0.24);
}

.btn-secondary {
  color: var(--purple);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(23, 32, 51, 0.08);
}

.btn-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(125, 211, 252, 0.26), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(255, 105, 180, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-section {
  padding: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: min(720px, calc(100vh - 78px));
  padding-top: clamp(18px, 4vw, 44px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.hero-grid.row {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.45rem, 5.7vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 680px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hero-proof span {
  padding: 0.5rem 0.72rem;
  color: #34415a;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1440 / 1024;
  object-fit: contain;
  border-radius: var(--radius);
  filter: drop-shadow(0 28px 42px rgba(47, 35, 104, 0.14));
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 4% 6%;
  z-index: -1;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(56, 189, 248, 0.22));
  filter: blur(34px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card,
.service-card,
.why-item,
.process-step,
.price-card,
.contact-form,
.feature-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 32, 51, 0.06);
}

.stat-card {
  padding: 1.25rem;
}

.stat-number {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.stat-card h2 {
  font-size: 1.1rem;
}

.stat-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.3rem;
}

.section-heading p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.services,
.pricing {
  background: var(--bg);
}

.service-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 245px;
  padding: 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.why-item:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 72, 153, 0.28);
  box-shadow: var(--shadow);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.2rem;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--sky));
  font-size: 0.85rem;
  font-weight: 900;
}

.service-card p,
.why-item p,
.process-step p,
.price-card p,
.web-dev p,
.contact-copy p {
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: 3rem;
}

.split-grid p {
  margin: 1.2rem 0 1.7rem;
  font-size: 1.05rem;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(236, 72, 153, 0.55), rgba(56, 189, 248, 0.55)) border-box;
  border: 1px solid transparent;
}

.feature-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  background: conic-gradient(from 120deg, rgba(236, 72, 153, 0.18), rgba(56, 189, 248, 0.22), rgba(20, 184, 166, 0.16), rgba(236, 72, 153, 0.18));
  border-radius: 50%;
}

.feature-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  padding: 0.9rem 0.9rem 0.9rem 2.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 251, 255, 0.82);
  color: #35445d;
  font-weight: 750;
}

.feature-list li::before,
.price-card li::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--sky));
}

.feature-list li {
  position: relative;
}

.feature-list li::before {
  left: 1rem;
  top: 1.32rem;
}

.why {
  background:
    linear-gradient(180deg, #ffffff, #fbfdff);
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-item {
  padding: 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.process {
  background: linear-gradient(135deg, rgba(47, 35, 104, 0.96), rgba(23, 32, 51, 0.98));
  color: var(--white);
}

.process .eyebrow,
.process h2,
.process h3 {
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-step {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  color: var(--purple);
  background: linear-gradient(135deg, var(--hot-pink), var(--soft-sky));
  font-weight: 900;
}

.process-step p {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.55rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.price-card.featured {
  border-color: rgba(236, 72, 153, 0.38);
  box-shadow: var(--shadow);
}

.popular {
  align-self: flex-start;
  margin-bottom: 0.85rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--sky));
  font-size: 0.78rem;
  font-weight: 850;
}

.price {
  margin: 1rem 0 0.25rem;
  color: var(--purple);
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.plan-fit {
  margin: 0;
}

.price-card ul {
  display: grid;
  gap: 0.72rem;
  margin: 1.3rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.4rem;
  color: #34415a;
}

.price-card li::before {
  left: 0;
  top: 0.58rem;
}

.price-card .btn {
  margin-top: auto;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(23, 32, 51, 0.05);
}

summary {
  position: relative;
  min-height: 64px;
  padding: 1.1rem 3rem 1.1rem 1.2rem;
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  font-size: 1.5rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.contact {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 105, 180, 0.18), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(125, 211, 252, 0.24), transparent 30%),
    var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy p {
  margin: 1.2rem 0 1.5rem;
  font-size: 1.05rem;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  color: #064e3b;
  background: #d1fae5;
  font-weight: 850;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.35rem;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row:nth-child(5),
.form-row:nth-child(6),
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

label {
  color: #314058;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dfe6f1;
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--text);
  padding: 0.88rem 0.95rem;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.16);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  padding: 48px 0 22px;
  color: rgba(255, 255, 255, 0.76);
  background: #172033;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand,
.site-footer h2 {
  color: var(--white);
}

.footer-brand .brand-logo {
  width: min(250px, 70vw);
  max-height: 70px;
  filter: brightness(1.08);
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 0.35rem 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover {
  color: var(--soft-sky);
}

.copyright {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1060px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    max-width: 720px;
    margin-inline: auto;
  }

  .stats-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  .section-pad {
    padding: 72px 0;
  }

  .navbar {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    inset: 68px 1rem auto;
    display: grid;
    gap: 0.2rem;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 0.78rem 0.9rem;
    border-radius: var(--radius);
  }

  .nav-menu a:hover {
    background: var(--bg);
  }

  .why-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-list,
  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow,
  .navbar {
    width: min(100% - 1.1rem, var(--container));
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-logo {
    width: min(176px, 52vw);
    max-height: 50px;
  }

  h1 {
    font-size: clamp(2.2rem, 13vw, 3.25rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .stats-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    font-size: 0.82rem;
  }

  .stat-card,
  .service-card,
  .why-item,
  .process-step,
  .price-card,
  .contact-form,
  .feature-panel {
    padding: 1.1rem;
  }
}
