:root {
  --color-ink: #192235;
  --color-muted: #5f687a;
  --color-soft: #fff9f2;
  --color-surface: #ffffff;
  --color-sky: #8ed7f8;
  --color-sky-deep: #227aa8;
  --color-lavender: #b8a5ff;
  --color-peach: #ffb79d;
  --color-coral: #f36f65;
  --color-yellow: #ffd56b;
  --color-mint: #a8e8d7;
  --color-border: #ece6dc;
  --shadow-soft: 0 18px 60px rgba(25, 34, 53, 0.12);
  --shadow-card: 0 12px 34px rgba(25, 34, 53, 0.1);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --space-xs: 0.5rem;
  --space-sm: 0.85rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 5rem;
  --container: 1160px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(142, 215, 248, 0.35), transparent 30rem),
    radial-gradient(circle at top right, rgba(255, 183, 157, 0.35), transparent 32rem),
    var(--color-soft);
  font-family: var(--font-sans);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(34, 122, 168, 0.35);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 242, 0.86);
  border-bottom: 1px solid rgba(236, 230, 220, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 650;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.desktop-nav a,
.footer-links a {
  color: var(--color-muted);
  font-weight: 700;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.footer-links a:hover {
  color: var(--color-ink);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  color: var(--color-ink);
  background: var(--color-surface);
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.mobile-toggle span {
  position: relative;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.mobile-toggle span::before {
  top: -6px;
}

.mobile-toggle span::after {
  top: 6px;
}

.mobile-nav {
  display: none;
  padding: 0 1rem 1rem;
}

.mobile-nav a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-muted);
  font-weight: 750;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  padding: 0.85rem 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, var(--color-coral), #e05289);
  box-shadow: 0 14px 32px rgba(243, 111, 101, 0.28);
}

.btn-secondary {
  padding: 0.85rem 1.15rem;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 24px rgba(25, 34, 53, 0.08);
}

.live-example-btn {
  border-color: rgba(22, 140, 82, 0.32);
  color: #176a43;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #20a866;
  box-shadow: 0 0 0 5px rgba(32, 168, 102, 0.12);
}

.live-example-note {
  margin: 0.55rem 0 0;
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.btn-ghost {
  padding: 0.78rem 1rem;
  color: var(--color-sky-deep);
  background: rgba(142, 215, 248, 0.18);
}

.hero {
  position: relative;
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(34, 122, 168, 0.16);
  border-radius: 999px;
  color: var(--color-sky-deep);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 850;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  max-width: 660px;
  margin: 1.15rem 0 0;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.hero-sample-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  max-width: 680px;
  margin-top: 1.2rem;
  padding: 0.95rem;
  border: 1px solid rgba(34, 122, 168, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(25, 34, 53, 0.08);
}

.sample-card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--color-sky-deep), var(--color-lavender));
  font-weight: 900;
}

.hero-sample-card strong {
  display: block;
  margin-bottom: 0.15rem;
}

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

.sample-card-link {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 0.86rem;
  border-radius: 999px;
  color: var(--color-sky-deep);
  background: rgba(142, 215, 248, 0.18);
  font-size: 0.9rem;
  font-weight: 900;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.portfolio-showcase {
  position: absolute;
  inset: 18px 14px 24px 20px;
  overflow: hidden;
  border: 1px solid rgba(25, 34, 53, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.showcase-bar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.showcase-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 900;
}

.showcase-brand img {
  border-radius: 6px;
}

.showcase-label {
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  color: #27614f;
  background: rgba(168, 232, 215, 0.32);
  font-size: 0.72rem;
  font-weight: 850;
}

.showcase-profile {
  display: grid;
  grid-template-columns: minmax(140px, 42%) 1fr;
  min-height: 330px;
  align-items: center;
  gap: 1.3rem;
  padding: 1.15rem;
  background: #fff8e9;
}

.showcase-profile > img {
  width: 100%;
  height: 304px;
  border: 6px solid #fff;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(25, 34, 53, 0.14);
}

.showcase-kicker {
  color: var(--color-coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-profile h2 {
  margin-top: 0.25rem;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.showcase-profile p {
  margin: 0.6rem 0;
  color: var(--color-muted);
  font-weight: 750;
}

.showcase-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.showcase-chips span {
  padding: 0.3rem 0.48rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.showcase-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  padding: 0.8rem 1rem;
}

.showcase-sections span {
  padding: 0.6rem;
  border-radius: 10px;
  color: var(--color-muted);
  background: rgba(142, 215, 248, 0.15);
  font-size: 0.73rem;
  font-weight: 850;
  text-align: center;
}

.showcase-open {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  color: var(--color-sky-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.laptop-mock,
.phone-mock,
.floating-card {
  position: absolute;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.laptop-mock {
  right: 0;
  bottom: 44px;
  width: min(100%, 520px);
  border: 10px solid #263149;
  border-radius: 26px;
  overflow: hidden;
}

.mock-toolbar {
  display: flex;
  gap: 0.35rem;
  padding: 0.72rem 0.9rem;
  background: #263149;
}

.mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-peach);
}

.mock-dot:nth-child(2) {
  background: var(--color-yellow);
}

.mock-dot:nth-child(3) {
  background: var(--color-mint);
}

.mock-page {
  padding: 1.2rem;
  background: linear-gradient(145deg, #fff, #f7fbff);
}

.mock-hero {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(142, 215, 248, 0.34), rgba(255, 213, 107, 0.28));
}

.mock-avatar {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 183, 157, 0.82), rgba(184, 165, 255, 0.8)),
    radial-gradient(circle at 42% 30%, #fff 0 10%, transparent 11%);
}

.mock-line {
  height: 11px;
  margin: 0.52rem 0;
  border-radius: 999px;
  background: rgba(25, 34, 53, 0.14);
}

.mock-line.short {
  width: 54%;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.mock-tile {
  min-height: 88px;
  padding: 0.8rem;
  border-radius: 16px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(236, 230, 220, 0.9);
  font-size: 0.78rem;
  font-weight: 850;
}

.phone-mock {
  left: 0;
  bottom: 0;
  width: 172px;
  padding: 0.72rem;
  border: 8px solid #263149;
  border-radius: 32px;
  animation: floatSoft 6s ease-in-out infinite;
}

.phone-screen {
  min-height: 288px;
  padding: 0.8rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff8e9, #eef9ff);
}

.mini-card {
  margin-top: 0.65rem;
  padding: 0.7rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  font-size: 0.76rem;
  font-weight: 800;
}

.floating-card {
  z-index: 2;
  width: 180px;
  padding: 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  animation: floatSoft 7s ease-in-out infinite;
}

.floating-card.one {
  top: 4px;
  left: -12px;
}

.floating-card.two {
  top: 122px;
  right: -18px;
  animation-delay: -2s;
}

.floating-card strong {
  display: block;
  margin-bottom: 0.2rem;
}

.floating-card span {
  color: var(--color-muted);
  font-size: 0.82rem;
}

.section {
  padding: var(--space-2xl) 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.58);
}

.section-header {
  display: grid;
  gap: 1rem;
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  height: 100%;
  padding: 1.25rem;
  border: 1px solid rgba(236, 230, 220, 0.95);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 26px rgba(25, 34, 53, 0.06);
}

.icon-bubble {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(142, 215, 248, 0.55), rgba(255, 213, 107, 0.45));
  font-weight: 900;
}

.card p,
.policy-card p,
.example-card p,
.plan-card p {
  color: var(--color-muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(236, 230, 220, 0.95);
  border-radius: 999px;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 750;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline::before {
  position: absolute;
  top: 35px;
  left: 9%;
  right: 9%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-sky), var(--color-lavender), var(--color-peach));
  content: "";
}

.step {
  position: relative;
  z-index: 1;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
}

.step-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #fff;
  background: var(--color-sky-deep);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(34, 122, 168, 0.2);
}

.example-card {
  overflow: hidden;
  padding: 0;
}

.example-art {
  min-height: 180px;
  padding: 1.1rem;
  background: linear-gradient(135deg, rgba(142, 215, 248, 0.38), rgba(255, 183, 157, 0.34));
}

.example-art.creative {
  background: linear-gradient(135deg, rgba(184, 165, 255, 0.42), rgba(255, 213, 107, 0.34));
}

.example-art.sports {
  background: linear-gradient(135deg, rgba(168, 232, 215, 0.5), rgba(142, 215, 248, 0.34));
}

.example-sheet {
  height: 150px;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(25, 34, 53, 0.1);
}

.example-body {
  padding: 1.25rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.meta-chip {
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(142, 215, 248, 0.18);
  color: var(--color-sky-deep);
  font-size: 0.78rem;
  font-weight: 850;
}

.pricing-grid {
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.plan-card.popular {
  border-color: rgba(243, 111, 101, 0.35);
  box-shadow: 0 20px 44px rgba(243, 111, 101, 0.14);
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.34rem 0.64rem;
  border-radius: 999px;
  color: #fff;
  background: var(--color-coral);
  font-size: 0.75rem;
  font-weight: 900;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

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

.feature-list {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--color-muted);
}

.feature-list li::before {
  position: absolute;
  left: 0;
  color: var(--color-sky-deep);
  content: "✓";
  font-weight: 900;
}

.note-box {
  padding: 1rem;
  border: 1px solid rgba(34, 122, 168, 0.16);
  border-radius: var(--radius-md);
  background: rgba(142, 215, 248, 0.15);
  color: var(--color-muted);
}

.domain-panel,
.cta-panel,
.about-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 235, 0.88)),
    radial-gradient(circle at 90% 10%, rgba(184, 165, 255, 0.25), transparent 18rem);
  box-shadow: var(--shadow-card);
}

.domain-examples {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.domain-examples code {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: #fff;
  color: var(--color-sky-deep);
  font-weight: 850;
}

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

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border: 0;
  color: var(--color-ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 850;
}

.faq-icon {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(142, 215, 248, 0.2);
  transition: transform 180ms ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

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

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

.site-footer {
  padding: 3rem 0 2rem;
  background: #162033;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.site-footer .brand-mark {
  box-shadow: none;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.9rem 0.42rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  background: #168c52;
  box-shadow: 0 14px 30px rgba(16, 100, 58, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(16, 100, 58, 0.34);
}

.whatsapp-float span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #168c52;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 950;
}

.whatsapp-float strong {
  font-size: 0.88rem;
}

.site-footer p,
.site-footer a,
.footer-small {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero .lead {
  max-width: 760px;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: rgba(142, 215, 248, 0.16);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-muted);
  background: #fff;
  cursor: pointer;
  font-weight: 850;
}

.filter-btn.active {
  color: #fff;
  background: var(--color-sky-deep);
  border-color: var(--color-sky-deep);
}

.demo-detail {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 249, 242, 0.9);
}

.demo-detail.open {
  display: block;
}

.demo-hero {
  position: relative;
  padding: 5rem 0 3rem;
  background:
    radial-gradient(circle at 18% 20%, rgba(184, 165, 255, 0.34), transparent 22rem),
    radial-gradient(circle at 86% 18%, rgba(255, 213, 107, 0.34), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 249, 242, 0.2));
}

.demo-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.demo-profile-card {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(236, 230, 220, 0.95);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.94)),
    radial-gradient(circle at 20% 10%, rgba(255, 183, 157, 0.28), transparent 12rem);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.demo-profile-card::before,
.demo-profile-card::after {
  position: absolute;
  border-radius: 999px;
  content: "";
}

.demo-profile-card::before {
  width: 180px;
  height: 180px;
  top: -52px;
  right: -42px;
  background: rgba(142, 215, 248, 0.38);
}

.demo-profile-card::after {
  width: 150px;
  height: 150px;
  bottom: -42px;
  left: -36px;
  background: rgba(255, 213, 107, 0.42);
}

.demo-avatar {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(72%, 260px);
  aspect-ratio: 1;
  place-items: center;
  margin: 3rem auto 2rem;
  border: 10px solid #fff;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 22px 44px rgba(25, 34, 53, 0.16);
  overflow: hidden;
}

.demo-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-profile-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
  width: 72%;
  margin: 0 auto;
}

.demo-profile-lines span {
  height: 13px;
  border-radius: 999px;
  background: rgba(25, 34, 53, 0.12);
}

.demo-profile-lines span:nth-child(2) {
  width: 72%;
}

.demo-profile-lines span:nth-child(3) {
  width: 54%;
}

.demo-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1rem 0;
}

.demo-facts span {
  padding: 0.62rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  font-weight: 850;
}

.demo-privacy-note {
  margin-top: 1.2rem;
}

.demo-section-nav {
  position: sticky;
  top: 76px;
  z-index: 30;
  padding: 0.75rem 0;
  background: rgba(255, 249, 242, 0.88);
  border-top: 1px solid rgba(236, 230, 220, 0.74);
  border-bottom: 1px solid rgba(236, 230, 220, 0.9);
  backdrop-filter: blur(16px);
}

.demo-section-nav .container {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.demo-section-nav a {
  flex: 0 0 auto;
  padding: 0.62rem 0.78rem;
  border-radius: 999px;
  color: var(--color-muted);
  background: #fff;
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  font-weight: 850;
}

.demo-section-nav a:hover,
.demo-section-nav a:focus-visible {
  color: var(--color-sky-deep);
}

.demo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.demo-media-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(25, 34, 53, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.demo-media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.demo-media-visual {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 220px;
  place-items: center;
  border: 0;
  cursor: pointer;
  overflow: hidden;
}

.demo-media-visual::before,
.demo-media-visual::after {
  position: absolute;
  border-radius: 999px;
  content: "";
}

.demo-media-visual::before {
  width: 150px;
  height: 150px;
  top: -45px;
  right: -38px;
  background: rgba(255, 255, 255, 0.36);
}

.demo-media-visual::after {
  width: 120px;
  height: 120px;
  left: -36px;
  bottom: -28px;
  background: rgba(255, 255, 255, 0.24);
}

.theme-sky {
  background: linear-gradient(135deg, rgba(142, 215, 248, 0.92), rgba(184, 165, 255, 0.72));
}

.theme-lavender {
  background: linear-gradient(135deg, rgba(184, 165, 255, 0.9), rgba(255, 183, 157, 0.7));
}

.theme-mint {
  background: linear-gradient(135deg, rgba(168, 232, 215, 0.92), rgba(142, 215, 248, 0.74));
}

.theme-peach {
  background: linear-gradient(135deg, rgba(255, 183, 157, 0.92), rgba(255, 213, 107, 0.7));
}

.theme-yellow {
  background: linear-gradient(135deg, rgba(255, 213, 107, 0.9), rgba(142, 215, 248, 0.64));
}

.demo-kind {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-art-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.8);
  font-size: 2.2rem;
  font-weight: 900;
  box-shadow: 0 15px 30px rgba(25, 34, 53, 0.12);
  transition: transform 180ms ease;
}

.demo-media-visual:hover .demo-art-icon {
  transform: scale(1.08);
}

.demo-media-body {
  padding: 1.1rem;
}

.demo-media-body p {
  color: var(--color-muted);
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.demo-modal[hidden] {
  display: none;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 17, 29, 0.72);
  backdrop-filter: blur(8px);
}

.demo-modal-card {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: clamp(1.2rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.demo-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  color: var(--color-ink);
  font-size: 1.7rem;
  line-height: 1;
}

.demo-modal-art {
  display: grid;
  min-height: 260px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(142, 215, 248, 0.5), rgba(255, 213, 107, 0.38));
  color: var(--color-ink);
  font-size: 4rem;
  font-weight: 900;
}

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

.field {
  display: grid;
  gap: 0.42rem;
}

.field.full {
  grid-column: 1 / -1;
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field label {
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 0.88rem 0.95rem;
  color: var(--color-ink);
  background: #fff;
}

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

.error-text {
  min-height: 1.1rem;
  color: #b42318;
  font-size: 0.88rem;
  font-weight: 750;
}

.consent-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
}

.success-box {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(34, 122, 168, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-sky-deep);
  background: rgba(168, 232, 215, 0.32);
  font-weight: 850;
}

.error-box {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(180, 35, 24, 0.24);
  border-radius: var(--radius-md);
  color: #8b312b;
  background: rgba(255, 183, 157, 0.18);
  font-weight: 850;
}

.error-box.show {
  display: block;
}

#submit-enquiry:disabled {
  cursor: wait;
  opacity: 0.72;
}

.success-box.show {
  display: block;
  animation: popIn 280ms ease both;
}

.policy-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
}

.legal-warning {
  padding: 1rem;
  border: 1px solid rgba(243, 111, 101, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 183, 157, 0.18);
  color: #8b312b;
  font-weight: 850;
}

.legal-updated {
  color: var(--color-muted);
  font-weight: 750;
}

.legal-section {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--color-border);
}

.legal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  font-size: 1.45rem;
}

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

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

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

  .mobile-nav.open {
    display: block;
  }

  .hero-grid,
  .demo-hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .demo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-visual {
    min-height: 560px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1rem, var(--container));
  }

  .header-inner {
    min-height: 66px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .portfolio-showcase {
    inset: 16px 0 22px;
  }

  .showcase-profile {
    grid-template-columns: 42% 1fr;
    min-height: 312px;
    gap: 0.8rem;
    padding: 0.8rem;
  }

  .showcase-profile > img {
    height: 265px;
  }

  .showcase-chips span:nth-child(n + 3) {
    display: none;
  }

  .showcase-open {
    position: static;
    display: block;
    padding: 0 1rem 0.8rem;
    text-align: right;
  }

  .laptop-mock {
    width: 92%;
    border-width: 7px;
  }

  .phone-mock {
    width: 132px;
  }

  .phone-screen {
    min-height: 210px;
  }

  .floating-card {
    width: 136px;
    padding: 0.75rem;
  }

  .floating-card.two {
    top: 92px;
    right: -4px;
  }

  .mock-grid {
    grid-template-columns: 1fr;
  }

  .mock-tile:nth-child(n + 2) {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-sample-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .sample-card-link {
    grid-column: 1 / -1;
  }

  .demo-gallery {
    grid-template-columns: 1fr;
  }

  .demo-profile-card {
    min-height: 360px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 0.7rem;
    bottom: 0.7rem;
    padding-right: 0.55rem;
  }

  .whatsapp-float strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
