/* ============================================
   AITOWPRESS — WordPress theme styles
   Plus Jakarta Sans (headings) + DM Sans (body)
   ============================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f6fb;
  --bg-tint: #f3f1fc;
  --bg-blue: #eef3ff;
  --ink: #14142b;
  --ink-2: #2a2a4a;
  --muted: #5a5a72;
  --muted-2: #8b8ba7;
  --line: #ececf5;
  --line-2: #e3e1f2;

  --purple: #6d4cff;
  --purple-2: #8a6dff;
  --purple-soft: #efeaff;
  --purple-deep: #4a30c9;
  --blue: #4f8cff;
  --blue-soft: #e3edff;
  --pink-soft: #fce8f1;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(20, 20, 43, 0.04);
  --shadow-sm: 0 4px 14px rgba(20, 20, 43, 0.06);
  --shadow-md: 0 12px 30px rgba(20, 20, 43, 0.08);
  --shadow-lg: 0 24px 60px rgba(109, 76, 255, 0.18);

  --container: 1200px;

  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.content-narrow { max-width: 820px; margin-inline: auto; }
.center { text-align: center; }

/* WordPress accessibility */
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); -webkit-clip-path: inset(50%); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important;
  width: 1px; word-wrap: normal !important;
}
.skip-link:focus {
  background: #fff; color: var(--purple); display: block; left: 12px; top: 12px;
  padding: 10px 16px; position: absolute; z-index: 9999; border-radius: 8px;
  box-shadow: var(--shadow-md);
}

/* ====== TYPOGRAPHY ====== */
.display, .h-display, h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 18px;
}

.display { font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.08; }
.h-display { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.15; }

.lead {
  font-size: 1.075rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 24px;
  max-width: 56ch;
}
.lead.muted { color: var(--muted); }
.section-head .lead { margin-left: auto; margin-right: auto; }
.center .lead { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.grad-text {
  background: linear-gradient(95deg, var(--purple) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.muted { color: var(--muted); }

/* Prose for the_content output */
.prose { color: var(--ink-2); font-size: 1.025rem; line-height: 1.75; }
.prose h2, .prose h3, .prose h4 { margin-top: 2em; }
.prose p { margin: 0 0 1.1em; }
.prose ul, .prose ol { padding-left: 1.25em; margin: 0 0 1.1em; }
.prose li { margin: 0.25em 0; }
.prose a { color: var(--purple-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(109,76,255,.35); transition: text-decoration-color .2s var(--ease); }
.prose a:hover { text-decoration-color: var(--purple); }
.prose img, .prose figure { border-radius: var(--radius); overflow: hidden; margin: 1.5em 0; }
.prose blockquote {
  border-left: 4px solid var(--purple);
  padding: 4px 0 4px 18px;
  margin: 1.5em 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
}
.prose code {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 1px 6px;
  border-radius: 6px;
  font-size: 0.9em;
}
.prose-compact { margin-top: 14px; }

/* ====== BUTTONS ====== */
.btn {
  --b-bg: var(--purple);
  --b-fg: #fff;
  --b-border: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--b-bg);
  color: var(--b-fg);
  border: 1.5px solid var(--b-border);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease),
              background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  box-shadow: 0 8px 20px rgba(109,76,255,.18);
  text-decoration: none;
}
.btn .ph, .btn i.ph, .btn i { font-size: 1.05em; line-height: 0; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(109,76,255,.28); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(180deg, var(--purple-2) 0%, var(--purple) 100%);
  border-color: transparent;
}

.btn-ghost {
  --b-bg: transparent;
  --b-fg: var(--ink);
  --b-border: var(--line-2);
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--purple);
  color: var(--purple-deep);
  box-shadow: var(--shadow-sm);
}

.btn-sm { padding: 11px 18px; font-size: 0.9rem; }
.btn-lg { padding: 16px 26px; font-size: 1rem; }
.full-btn { width: 100%; justify-content: center; }

/* ====== HEADER ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(20,20,43,.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  display: none;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}
.logo .logo-svg, .logo svg { display: block; height: 32px; width: auto; }
.logo img { max-height: 40px; width: auto; }
.logo-mark {
  width: 32px; height: 32px;
  display: inline-grid; place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-xs);
}
.logo-text { letter-spacing: 0.08em; }
.site-footer .logo svg, .site-footer .logo .logo-svg { height: 30px; }

img.custom-logo {
    width: 156px;
}

.primary-nav { margin-left: auto; }
.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0; padding: 0;
}
.primary-nav ul ul { display: none; } /* hide submenus on desktop for simplicity */
.primary-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink-2);
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
  text-decoration: none;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--purple);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
  border-radius: 2px;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a { color: var(--ink); }
.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after { transform: scaleX(1); }

.header-cta { margin-left: 8px; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  margin-left: auto;
  cursor: pointer;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 12px 24px 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav a {
  display: block;
  padding: 12px 4px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
}
.mobile-nav a.btn-sm {color: #fff;}
.mobile-nav .btn { margin-top: 14px; align-self: flex-start;padding: 12px; }

/* ====== HERO ====== */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 110px) 0 clamp(60px, 9vw, 120px);
  background:
    radial-gradient(800px 400px at 85% -10%, var(--purple-soft) 0%, rgba(239,234,255,0) 60%),
    radial-gradient(700px 350px at 0% 20%, var(--blue-soft) 0%, rgba(227,237,255,0) 55%),
    var(--bg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.hero-copy h1 { margin-top: 2px; }

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 8px;
}

.hero-meta {
  list-style: none;
  display: flex; gap: 28px;
  margin: 44px 0 0; padding: 0;
  flex-wrap: wrap;
}
.hero-meta.center { justify-content: center; margin-top: 36px; }
.hero-meta li {
  display: flex; flex-direction: column;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}
.hero-meta li:last-child { border-right: none; padding-right: 0; }
.hero-meta strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  font-size: 1.2rem;
}
.hero-meta span { color: var(--muted); font-size: 0.85rem; }

/* ---- Hero visual: mockups ---- */
.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.mock {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: transform .5s var(--ease);
}
.mock-wp { transform: rotate(1.5deg); }
.hero-visual:hover .mock-design { transform: rotate(-1.6deg) translateY(-4px); }
.hero-visual:hover .mock-wp { transform: rotate(1.9deg) translateY(-4px); }
.mock-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #fafaff;
}
.mock-chrome span { width: 9px; height: 9px; border-radius: 50%; background: #e6e3f2; }
.mock-chrome span:nth-child(1) { background: #ffbdb3; }
.mock-chrome span:nth-child(2) { background: #ffe1a8; }
.mock-chrome span:nth-child(3) { background: #b9e8c8; }
.mock-url { margin-left: 10px; font-size: 0.72rem; color: var(--muted-2); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; }

.mock-body { padding: 18px; min-height: 240px; }
.design-body { background: linear-gradient(180deg, #fdfcff, #f5f1ff); }
.d-nav { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.d-logo { width: 22px; height: 22px; border-radius: 6px; background: var(--purple); }
.d-link { width: 36px; height: 8px; background: #d8d4ea; border-radius: 4px; }
.d-hero { padding: 8px 4px 14px; }
.d-heading { height: 14px; background: #cfc6f0; border-radius: 6px; margin-bottom: 8px; width: 86%; }
.d-heading.short { width: 60%; }
.d-text { height: 7px; background: #e3deef; border-radius: 4px; margin-top: 8px; width: 80%; }
.d-text.short { width: 50%; }
.d-btn { width: 90px; height: 22px; background: var(--purple); border-radius: 999px; margin-top: 14px; }
.d-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 16px; }
.d-card { aspect-ratio: 1/1.1; background: #fff; border: 1px solid #e9e3fb; border-radius: 8px; }

.wp-body { background: #fff; }
.wp-nav { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.wp-logo { width: 22px; height: 22px; border-radius: 6px; background: linear-gradient(135deg, var(--purple), var(--blue)); }
.wp-link { width: 30px; height: 8px; background: #e6e1f6; border-radius: 4px; }
.wp-cta { width: 50px; height: 16px; background: var(--purple); border-radius: 999px; margin-left: auto; }
.wp-hero { padding: 6px 0 12px; }
.wp-heading { height: 12px; background: #1b1b3a; border-radius: 6px; width: 80%; margin-bottom: 8px; }
.wp-heading.short { width: 52%; background: var(--purple); }
.wp-text { height: 6px; background: #ece8f7; border-radius: 4px; margin-top: 7px; width: 90%; }
.wp-btn { width: 78px; height: 22px; background: linear-gradient(180deg, var(--purple-2), var(--purple)); border-radius: 999px; margin-top: 14px; }
.wp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 14px; }
.wp-card { aspect-ratio: 1/0.9; background: #f7f5ff; border: 1px solid #ece6ff; border-radius: 8px; position: relative; }
.wp-card::before { content: ""; position: absolute; left: 10px; right: 10px; bottom: 10px; height: 6px; background: #d9d1ff; border-radius: 4px; }

.mock-label {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: #fff; border: 1px solid var(--line); color: var(--muted);
  padding: 4px 10px; border-radius: 999px; box-shadow: var(--shadow-xs);
}
.mock-label.wp { color: var(--purple-deep); border-color: #e0d8ff; background: #f5f0ff; }

.convert-arrow {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%); z-index: 3;
  filter: drop-shadow(0 8px 20px rgba(109,76,255,.35));
  animation: arrow-bob 3s ease-in-out infinite;
}
@keyframes arrow-bob {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-46%, -50%); }
}

.floating-badge {
  position: absolute; bottom: -22px; right: 6%;
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md); font-size: 0.85rem;
}
.floating-badge strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 0.88rem; }
.floating-badge span { color: var(--muted); font-size: 0.78rem; }
.floating-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 0 4px rgba(46,204,113,.18); }

/* ====== SECTIONS ====== */
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section.about { background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%); }
.section.portfolio { background: linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 100%); }
.section.process { background: linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 100%); }
.section.contact { background: var(--bg); }
.section.page-hero { padding-bottom: clamp(28px, 4vw, 60px); }
.section.page-hero + .section { padding-top: clamp(28px, 4vw, 60px); }
.about-content, .single-conversion-body { padding-top: clamp(28px, 4vw, 60px); }
.feature-image-wrap { padding-block: clamp(24px, 4vw, 60px); }

.section-head { text-align: center; margin: 0 auto 56px; max-width: 760px; }
.section-head.narrow { max-width: 720px; }
.section-foot { margin-top: 48px; }

/* ====== ABOUT / BENEFITS ====== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #e0d8ff;
}
.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--purple-soft);
  color: var(--purple-deep);
  margin-bottom: 18px;
  font-size: 22px; /* Phosphor icon size */
}
.benefit-icon i.ph { font-size: 22px; line-height: 1; }
.benefit-card:nth-child(2n) .benefit-icon { background: var(--blue-soft); color: #2057c7; }
.benefit-card h3 { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin: 0 0 8px; font-size: 1.075rem; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ====== PORTFOLIO ====== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #e0d8ff;
}

.project-visual {
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  padding: 22px;
  background: linear-gradient(160deg, #efeaff 0%, #e9eefe 100%);
  position: relative;
  overflow: hidden;
}
.accent-blue .project-visual { background: linear-gradient(160deg, #f0f5ff 0%, #efeaff 100%); }
.accent-pink .project-visual { background: linear-gradient(160deg, #f7f1ff 0%, var(--pink-soft) 100%); }

.pv-image {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #ece9f7;
  overflow: hidden;
}
.pv-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.pv-browser {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #ece9f7;
  overflow: hidden;
}
.pv-chrome {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 10px;
  border-bottom: 1px solid #f0eef7;
  background: #fafaff;
}
.pv-chrome span { width: 7px; height: 7px; border-radius: 50%; background: #e5e2f0; }
.pv-chrome span:nth-child(1) { background: #ffc5bd; }
.pv-chrome span:nth-child(2) { background: #ffe2b3; }
.pv-chrome span:nth-child(3) { background: #c6ebd0; }

.pv-screen { padding: 12px; }
.pv-row { height: 8px; background: #ece8f7; border-radius: 4px; margin-bottom: 8px; }
.pv-row.title { background: #cdc4ee; height: 12px; width: 70%; }
.pv-row.short { width: 50%; }
.pv-pill { width: 60px; height: 16px; background: var(--purple); border-radius: 999px; margin: 10px 0; }
.pv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-top: 8px; }
.pv-grid div { aspect-ratio: 1/0.9; background: #f1edff; border-radius: 6px; border: 1px solid #e5dffb; }

.project-body { padding: 22px 24px 26px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--muted);
}
.tag:nth-child(3n+1) { background: var(--purple-soft); color: var(--purple-deep); border-color: #e0d8ff; }
.tag:nth-child(3n+2) { background: var(--blue-soft); color: #2057c7; border-color: #d6e3ff; }

.project-body h3 {
  font-family: var(--font-display); font-weight: 700;
  color: var(--ink); margin: 4px 0 8px; font-size: 1.18rem;
}
.project-body h3 a { color: inherit; text-decoration: none; }
.project-body h3 a:hover { color: var(--purple-deep); }
.project-body p { color: var(--muted); margin: 0 0 16px; font-size: 0.96rem; }

.link-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--purple-deep);
  font-size: 0.92rem;
  transition: gap .25s var(--ease), color .25s var(--ease);
  text-decoration: none;
}
.link-btn:hover { gap: 12px; color: var(--purple); }
.link-btn i.ph { font-size: 1em; }

/* ====== PROCESS ====== */
.process-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 46px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #d6cffb 0 8px, transparent 8px 16px);
  z-index: 0;
}

.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  z-index: 1;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #d8ceff;
}
.step-num {
  display: inline-grid; place-items: center;
  font-family: var(--font-display); font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--purple) 0%, var(--blue) 100%);
  width: 46px; height: 46px;
  border-radius: 14px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  box-shadow: 0 8px 18px rgba(109,76,255,.25);
}
.step-card h3 { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin: 0 0 6px; font-size: 1.1rem; }
.step-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ====== FAQs ====== */
.faq-list { display: grid; gap: 12px; margin-top: 32px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item[open] { border-color: #d8ceff; box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-weight: 600; color: var(--ink);
  font-size: 1.025rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i.ph { color: var(--purple); transition: transform .25s var(--ease); font-size: 1.15rem; }
.faq-item[open] summary i.ph { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 20px; color: var(--muted); }

/* ====== CTA BAND ====== */
.cta-band-wrap { padding: clamp(40px, 6vw, 80px) 0; background: #fff; }
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(600px 240px at 90% 0%, rgba(255,255,255,.6), transparent 60%),
    radial-gradient(500px 220px at 0% 100%, rgba(255,255,255,.5), transparent 60%),
    linear-gradient(135deg, #efeaff 0%, #e6ebff 100%);
  border: 1px solid #e3d9ff;
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 72px) 32px;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(40px); opacity: .55; pointer-events: none;
}
.cta-band::before { width: 220px; height: 220px; background: var(--purple); top: -80px; left: -60px; opacity: .25; }
.cta-band::after { width: 260px; height: 260px; background: var(--blue); bottom: -100px; right: -80px; opacity: .22; }
.cta-band h2 {
  font-family: var(--font-display); font-weight: 800; color: var(--ink);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem); letter-spacing: -0.02em;
  margin: 0 0 12px; position: relative;
}
.cta-band p { color: var(--ink-2); max-width: 540px; margin: 0 auto 26px; position: relative; }
.cta-band .btn { position: relative; }

/* ====== CONTACT (CF7) ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-intro h1, .contact-intro h2 { text-align: left; }
.contact-points {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: grid; gap: 12px;
}
.contact-points li { display: flex; align-items: center; gap: 10px; color: var(--ink-2); font-weight: 500; }
.contact-points i.ph {
  font-size: 0.85rem;
  width: 28px; height: 28px;
  background: var(--purple-soft);
  color: var(--purple-deep);
  border-radius: 50%;
  display: grid; place-items: center;
}
.contact-email-line { margin-top: 22px; display: flex; align-items: center; gap: 10px; }
.contact-email-line i.ph { color: var(--purple); font-size: 1.1rem; }
.contact-email-line a { color: var(--ink); font-weight: 600; }
.contact-email-line a:hover { color: var(--purple-deep); }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form-placeholder { color: var(--muted); }
.contact-form-placeholder strong { color: var(--ink); font-family: var(--font-display); }

/* Contact Form 7 styling */
.contact-form-card .wpcf7 {
  display: grid; gap: 16px;
}
.contact-form-card .wpcf7 form > p,
.contact-form-card .wpcf7 form > div { margin: 0; }
.contact-form-card .wpcf7 label {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-body);
  font-size: 0.86rem; font-weight: 600; color: var(--ink-2);
}
.contact-form-card .wpcf7 input[type="text"],
.contact-form-card .wpcf7 input[type="email"],
.contact-form-card .wpcf7 input[type="url"],
.contact-form-card .wpcf7 input[type="tel"],
.contact-form-card .wpcf7 input[type="number"],
.contact-form-card .wpcf7 input[type="date"],
.contact-form-card .wpcf7 select,
.contact-form-card .wpcf7 textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  padding: 13px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  outline: none;
  font-weight: 500;
}
.contact-form-card .wpcf7 textarea { resize: vertical; min-height: 120px; }
.contact-form-card .wpcf7 input:focus,
.contact-form-card .wpcf7 select:focus,
.contact-form-card .wpcf7 textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(109,76,255,.12);
}


.contact-form-card .wpcf7 input[type="submit"] {
  font-family: var(--font-display); font-weight: 600;
  background: linear-gradient(180deg, var(--purple-2) 0%, var(--purple) 100%);
  color: #fff;
  border: none;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 8px 20px rgba(109,76,255,.22);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form-card .wpcf7 input[type="submit"]:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(109,76,255,.32); }
.contact-form-card .wpcf7-response-output {
  border-radius: 12px !important;
  padding: 12px 14px !important;
  border-width: 1px !important;
  margin: 0 !important;
  font-size: 0.92rem;
}

.file-drop {
    border: 1.5px dashed #d8d0f3;
    background: #fafaff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color .2s var(--ease), background .2s var(--ease);
	flex-direction: column;
}

/* ====== SINGLE CONVERSION ====== */
.conversion-feature {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.conversion-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: start;
}
.conversion-meta {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: sticky;
  top: 100px;
}
.conversion-meta dl { display: grid; gap: 12px; margin: 0 0 24px; }
.conversion-meta dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.conversion-meta dd { margin: 0; color: var(--ink); font-weight: 500; }
.back-link { margin: 0 0 18px; }
.back-link a { color: var(--muted); font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.back-link a:hover { color: var(--purple-deep); }

/* ====== PAGINATION ====== */
.pagination { display: flex; justify-content: center; margin-top: 48px; }
.pagination .nav-links,
.pagination .page-numbers { display: inline-flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.pagination .page-numbers {
  display: inline-grid; place-items: center;
  min-width: 40px; height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-2);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.pagination .page-numbers:hover { border-color: var(--purple); color: var(--purple-deep); }
.pagination .page-numbers.current {
  background: linear-gradient(180deg, var(--purple-2), var(--purple));
  border-color: transparent;
  color: #fff;
}

/* ====== POST LIST (blog fallback) ====== */
.post-list { display: grid; gap: 28px; }
.post-card { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.post-card-body h2 { margin-top: 0; font-size: 1.3rem; }
.post-card-body h2 a { color: var(--ink); }
.post-card-body h2 a:hover { color: var(--purple-deep); }
.post-feature, .page-feature { margin: 0 0 36px; border-radius: var(--radius); overflow: hidden; }

/* ====== FOOTER ====== */
.site-footer {
  background: linear-gradient(180deg, #fbfaff 0%, #f4f1fb 100%);
  border-top: 1px solid var(--line);
  padding-top: 64px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { color: var(--muted); margin: 16px 0 0; max-width: 30ch; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.footer-cols h4 {
  font-family: var(--font-display); font-weight: 700;
  color: var(--ink); font-size: 0.95rem;
  margin: 0 0 14px;
}
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-cols a {
  color: var(--muted); font-size: 0.92rem;
  transition: color .2s var(--ease);
  text-decoration: none;
}
.footer-cols a:hover { color: var(--purple-deep); }

.socials { display: flex; gap: 8px; margin-top: 18px; }
.socials a {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.socials a i.ph { font-size: 1rem; }
.socials a:hover { color: var(--purple-deep); border-color: var(--purple); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px;
  color: var(--muted);
  font-size: 0.85rem;
  flex-wrap: wrap; gap: 10px;
}

/* ====== REVEAL ANIMATIONS ====== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .convert-arrow { animation: none; }
  html { scroll-behavior: auto; }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 980px) {
  .primary-nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav.open { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: 2; max-width: 540px; margin-inline: auto; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .conversion-grid { grid-template-columns: 1fr; gap: 36px; }
  .conversion-meta { position: static; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }

  .post-card { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-meta { gap: 18px; }
  .hero-meta li { border-right: none; padding-right: 0; }

  .benefits-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }

  .contact-form-card { padding: 22px; }

  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .mock-label { font-size: 0.64rem; }
}
