:root {
  --ink: #18221b;
  --soft-ink: #4f5c52;
  --orange: #ef7f3b;
  --orange-dark: #d96224;
  --peach: #f9d8bf;
  --cream: #fbf8f1;
  --cream-deep: #f3ecdf;
  --green: #234f3b;
  --green-light: #dceadf;
  --line: rgba(24, 34, 27, 0.12);
  --white: #fffdf9;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  height: 82px;
  max-width: 1240px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
.brand { display: flex; align-items: center; gap: 7px; font-size: 22px; font-weight: 700; letter-spacing: -0.8px; }
.brand-mark { width: 34px; height: 34px; border-radius: 50%; overflow: hidden; display: block; position: relative; background: #faf7f0; }
.brand-mark img { position: absolute; width: 82px; max-width: none; left: -24px; top: -24px; mix-blend-mode: multiply; }
nav { display: flex; align-items: center; gap: 34px; font-size: 14px; color: var(--soft-ink); }
nav a, .footer-links a { transition: color .2s; }
nav a:hover, .footer-links a:hover { color: var(--orange-dark); }
.button {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 20px; }
.button-dark { background: var(--ink); color: white; box-shadow: 0 7px 20px rgba(24,34,27,.12); }
.button-dark:hover { background: #2a382d; }
.button-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(217,98,36,.22); }
.button-primary:hover { background: var(--orange-dark); }
.button-light { background: #fffaf2; color: var(--ink); }
.button-outline { border-color: var(--line); width: 100%; }
.button-outline:hover { border-color: var(--orange); background: #fff8f1; }
.menu-button { display: none; border: 0; background: none; padding: 8px; }
.menu-button span { width: 22px; height: 2px; background: var(--ink); display: block; margin: 5px 0; }

.hero {
  min-height: 720px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 50px 86px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 15%, rgba(244,180,125,.4), transparent 34%),
    linear-gradient(135deg, #f8eedf 0%, #fbf8f1 47%, #f2ddca 100%);
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity: .5;
  pointer-events: none;
}
.hero-copy { z-index: 2; max-width: 570px; }
.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 24px;
}
.eyebrow-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 5px rgba(239,127,59,.13); }
h1, h2 { margin: 0; font-weight: 600; letter-spacing: -2.8px; line-height: 1.02; }
h1 { font-size: clamp(54px, 5.2vw, 75px); max-width: 640px; }
h1 em, h2 em { font-family: var(--serif); font-weight: 600; color: var(--orange-dark); }
.hero-copy > p { max-width: 555px; color: var(--soft-ink); font-size: 18px; line-height: 1.65; margin: 28px 0 32px; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translate(3px, 3px); }
.hero-proof { margin-top: 42px; display: flex; align-items: center; gap: 13px; }
.hero-proof p { font-size: 12px; line-height: 1.5; margin: 0; color: #657167; }
.hero-proof strong { color: var(--ink); font-weight: 600; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; border: 2px solid var(--cream); color: white; font-size: 9px; font-weight: 700; margin-left: -7px; background: #627b67; }
.avatar-stack span:first-child { margin: 0; background: #d27545; }
.avatar-stack span:last-child { background: #aa7563; }

.hero-visual { min-height: 590px; position: relative; z-index: 2; }
.phone-shadow { position: absolute; width: 310px; height: 540px; left: 50%; top: 54%; transform: translate(-42%,-50%) rotate(6deg); background: rgba(112,69,40,.18); filter: blur(35px); border-radius: 70px; }
.phone {
  width: 325px; height: 640px; border: 9px solid #202520; border-radius: 47px;
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(2deg);
  overflow: hidden; background: #efeae2; box-shadow: 0 32px 70px rgba(71,49,34,.25);
}
.phone-speaker { position: absolute; width: 95px; height: 24px; border-radius: 0 0 14px 14px; background: #202520; z-index: 6; top: 0; left: 50%; transform: translateX(-50%); }
.whatsapp-header { height: 67px; padding: 19px 11px 8px; background: #f8f9f6; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid rgba(0,0,0,.05); }
.back-arrow { font-size: 30px; color: #4b6855; line-height: 1; }
.chat-avatar { width: 33px; height: 33px; border-radius: 50%; background: #fff1e4; display: grid; place-items: center; }
.chat-avatar { overflow: hidden; position: relative; }
.chat-avatar img { position: absolute; width: 76px; max-width: none; left: -22px; top: -22px; mix-blend-mode: multiply; }
.chat-contact { flex: 1; min-width: 0; }
.chat-contact strong { display: block; font-size: 12px; white-space: nowrap; }
.chat-contact small { display: block; color: #627068; font-size: 9px; }
.whatsapp-header svg { width: 17px; height: 17px; fill: #3e5b49; }
.chat-body {
  height: calc(100% - 112px); padding: 15px 10px;
  background-color: #e9e2d8;
  background-image: radial-gradient(rgba(77,90,79,.08) 1px, transparent 1px);
  background-size: 15px 15px;
  position: relative;
}
.chat-date, .encryption-note { width: max-content; margin: 0 auto 8px; border-radius: 5px; background: #f7f4e9; color: #7d827c; font-size: 7px; padding: 4px 8px; box-shadow: 0 1px 1px rgba(0,0,0,.05); }
.encryption-note { color: #9b8961; margin-bottom: 10px; }
.message { max-width: 81%; padding: 8px 8px 12px; border-radius: 6px; font-size: 10.5px; line-height: 1.42; margin-bottom: 7px; position: relative; box-shadow: 0 1px 1px rgba(0,0,0,.06); opacity: 0; transform: translateY(9px) scale(.98); }
.message.incoming { background: white; border-top-left-radius: 1px; margin-right: auto; }
.message.outgoing { background: #d8f7c8; border-top-right-radius: 1px; margin-left: auto; }
.message-time { position: absolute; bottom: 3px; right: 6px; color: #818983; font-size: 6.5px; }
.location-pill { display: flex; align-items: center; gap: 4px; border: 0; background: #f6eee5; color: var(--orange-dark); border-radius: 5px; margin: 7px 0 1px; padding: 5px 7px; font-size: 8px; font-weight: 600; }
.location-pill svg { width: 10px; height: 10px; fill: var(--orange-dark); }
.task-chip { display: block; width: max-content; background: #e4f3e7; color: #34714c; border-radius: 4px; padding: 3px 5px; font-size: 7px; font-weight: 600; margin-top: 5px; }
.typing { width: 38px; height: 24px; background: white; border-radius: 3px 8px 8px 8px; display: flex; align-items: center; justify-content: center; gap: 2px; margin-bottom: 7px; opacity: 0; }
.typing i { width: 4px; height: 4px; background: #9aa29d; border-radius: 50%; animation: typing 1s infinite; }
.typing i:nth-child(2) { animation-delay: .15s; }.typing i:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-3px); } }
.chat-body.play .msg-1 { animation: showMessage .35s .4s forwards; }
.chat-body.play .msg-2 { animation: showMessage .35s 1.5s forwards; }
.chat-body.play .msg-typing-1 { animation: typingShow 1.25s 2.2s; }
.chat-body.play .msg-3 { animation: showMessage .35s 3.4s forwards; }
.chat-body.play .msg-4 { animation: showMessage .35s 5s forwards; }
.chat-body.play .msg-typing-2 { animation: typingShow 1.25s 5.7s; }
.chat-body.play .msg-5 { animation: showMessage .35s 6.9s forwards; }
@keyframes showMessage { to { opacity: 1; transform: none; } }
@keyframes typingShow { 0%,100% { opacity: 0; transform: translateY(5px); } 10%,85% { opacity: 1; transform: none; } }
.chat-input { height: 45px; background: #f8f9f6; display: flex; align-items: center; gap: 8px; padding: 6px 9px; color: #63716a; font-size: 13px; }
.chat-input div { height: 31px; border: 1px solid #dedfdc; background: #fff; border-radius: 17px; flex: 1; padding: 8px 12px; color: #a4aaa5; font-size: 9px; }
.send-icon { width: 29px; height: 29px; border-radius: 50%; background: #347a5a; color: white; display: grid; place-items: center; font-size: 10px; }
.floating-note { position: absolute; min-width: 185px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.8); background: rgba(255,253,249,.9); backdrop-filter: blur(10px); border-radius: 11px; display: flex; align-items: center; gap: 10px; box-shadow: 0 15px 40px rgba(76,49,30,.15); z-index: 5; }
.floating-note strong, .floating-note small { display: block; }
.floating-note strong { font-size: 10px; }.floating-note small { font-size: 8px; color: #737d75; margin-top: 2px; }
.note-icon { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: #e2f3e5; color: #397653; font-weight: 700; font-size: 12px; }
.note-icon.bell { background: #ffead9; color: var(--orange-dark); }
.note-one { left: 3%; top: 23%; animation: float 5s ease-in-out infinite; }
.note-two { right: -3%; bottom: 15%; animation: float 5s 1s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-7px); } }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-orb-one { width: 110px; height: 110px; border: 1px solid rgba(239,127,59,.25); right: -50px; top: 90px; }
.hero-orb-two { width: 20px; height: 20px; background: rgba(239,127,59,.2); left: 46%; bottom: 50px; }

.trust-strip { max-width: 1100px; margin: 0 auto; padding: 48px 25px 38px; text-align: center; border-bottom: 1px solid var(--line); }
.trust-strip > p { text-transform: uppercase; letter-spacing: 1.7px; font-size: 10px; color: #7d867f; margin: 0 0 14px; font-weight: 700; }
.planner-logos {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.planner-logo-track { display: flex; width: max-content; animation: plannerTicker 42s linear infinite; }
.logo-set, .logo-set.logo-repeat { display: flex; align-items: center; gap: 28px; padding-right: 28px; }
.planner-logo { flex: 0 0 170px; height: 120px; width:120px; margin: 0; display: grid; place-items: center; }
.planner-logo img {
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: opacity .2s;
  height: 120px; width:120px;
}
.planner-logo:hover img { opacity: .7; }
@keyframes plannerTicker {
  to { transform: translateX(-50%); }
}

.section { max-width: 1180px; margin: 0 auto; padding: 120px 28px; }
.section-kicker { margin-bottom: 25px; }
.problem-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: end; }
h2 { font-size: clamp(43px, 5vw, 67px); }
.problem-copy { padding-bottom: 5px; }
.problem-copy p, .dashboard-intro > p, .pricing-heading > p { font-size: 17px; line-height: 1.7; color: var(--soft-ink); margin: 0 0 25px; }
.benefit-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 70px; }
.benefit-card { min-height: 330px; border: 1px solid var(--line); background: rgba(255,253,249,.65); border-radius: 16px; padding: 26px; display: flex; flex-direction: column; position: relative; transition: transform .25s, box-shadow .25s; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(47,53,47,.08); }
.benefit-card.featured { background: #f6dfcd; border-color: transparent; transform: translateY(-13px); }
.benefit-card.featured:hover { transform: translateY(-18px); }
.benefit-number { font-size: 10px; color: #9c9d98; letter-spacing: 1px; }
.benefit-icon { width: 55px; height: 55px; border-radius: 50%; border: 1px solid rgba(24,34,27,.13); display: grid; place-items: center; margin: 45px 0 27px; }
.benefit-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.icon-chat svg { fill: none; }
.benefit-card h3, .feature-card h3 { font-size: 22px; letter-spacing: -.7px; margin: 0 0 11px; }
.benefit-card p, .feature-card p { color: var(--soft-ink); line-height: 1.6; font-size: 14px; margin: 0; }

.dashboard-section { max-width: none; background: #ebe5db; padding-left: max(28px, calc((100vw - 1124px)/2)); padding-right: max(28px, calc((100vw - 1124px)/2)); overflow: hidden; }
.dashboard-intro { display: grid; grid-template-columns: 1.1fr .75fr; gap: 100px; align-items: end; max-width: 1124px; margin: auto; }
.dashboard-intro > p { margin-bottom: 5px; }
.dashboard-stage { max-width: 1040px; height: 650px; margin: 80px auto 35px; position: relative; }
.dashboard-browser { position: absolute; width: 390px; height: 625px; left: 50%; transform: translateX(-50%) rotate(-1deg); border-radius: 22px; background: white; box-shadow: 0 35px 80px rgba(53,50,42,.2); padding: 9px; }
.browser-bar { height: 47px; display: flex; align-items: center; padding: 0 13px; border-bottom: 1px solid #eee; }
.browser-dots { display: flex; gap: 5px; }
.browser-dots i { width: 7px; height: 7px; border-radius: 50%; background: #dedbd5; }
.browser-brand { font-size: 13px; font-weight: 700; margin: auto; }.browser-brand span { color: var(--orange); }
.live-pill { font-size: 8px; color: #4c6c57; background: #e8f3e8; padding: 5px 7px; border-radius: 20px; }
.live-pill i { display: inline-block; width: 4px; height: 4px; background: #4c9b6c; border-radius: 50%; margin-right: 3px; }
.browser-content { height: calc(100% - 47px); display: flex; overflow: hidden; background: #f7f8fa; border-radius: 0 0 15px 15px; }
.browser-content aside { display: none; }
.side-logo { width: 27px; height: 27px; background: #fae7d8; color: var(--orange-dark); border-radius: 8px; display: grid; place-items: center; font-size: 11px; font-weight: 700; margin-bottom: 8px; }
.browser-content aside span { width: 15px; height: 15px; border: 2px solid #aab1aa; border-radius: 4px; }
.browser-content aside span.active { background: #ffeadb; border-color: var(--orange); }
.browser-content img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: top center; }
.metric-card { position: absolute; border-radius: 14px; background: rgba(255,253,249,.92); backdrop-filter: blur(10px); box-shadow: 0 20px 50px rgba(46,46,41,.14); padding: 19px 23px; min-width: 160px; z-index: 3; }
.metric-card strong, .metric-card span { display: block; }.metric-card strong { font-size: 28px; letter-spacing: -1.5px; }.metric-card span { color: #737d75; font-size: 10px; margin-top: 3px; }
.metric-one { left: 7%; top: 135px; }.metric-two { right: 7%; bottom: 90px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 1124px; margin: 30px auto 0; }
.feature-card { border-radius: 18px; min-height: 750px; padding: 42px 42px 32px; overflow: hidden; }
.card-guests { background: #f9f4ec; }.card-tasks { background: #e1e9df; }
.feature-copy { max-width: 420px; }
.feature-tag { display: block; text-transform: uppercase; color: var(--orange-dark); letter-spacing: 1.5px; font-size: 9px; font-weight: 700; margin-bottom: 16px; }
.feature-card h3 { font-size: 29px; line-height: 1.15; max-width: 390px; }
.feature-card p { max-width: 410px; margin-bottom: 30px; }
.screen-frame { width: min(48%, 220px); aspect-ratio: 714 / 1542; margin: 10px auto 0; border: 7px solid white; border-radius: 23px; overflow: hidden; box-shadow: 0 25px 45px rgba(53,52,46,.17); background: white; }
.screen-frame img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: top center; }

.journey-section { max-width: none; background: var(--green); color: #fdf9f1; padding-left: max(28px, calc((100vw - 1124px)/2)); padding-right: max(28px, calc((100vw - 1124px)/2)); display: grid; grid-template-columns: .85fr 1.15fr; gap: 120px; }
.section-kicker.light { color: #e9a374; }
.journey-copy p { color: #c8d2ca; font-size: 16px; line-height: 1.7; max-width: 470px; margin: 26px 0 32px; }
.journey-copy h2 em { color: #f0a16d; }
.journey-steps { border-top: 1px solid rgba(255,255,255,.16); }
.journey-step { display: grid; grid-template-columns: 55px 1fr; gap: 22px; padding: 33px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.journey-step > span { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; display: grid; place-items: center; color: #f0a16d; font-size: 10px; }
.journey-step small { text-transform: uppercase; letter-spacing: 1.3px; color: #9caea1; font-size: 9px; }
.journey-step h3 { font-family: var(--serif); font-size: 26px; margin: 6px 0; }
.journey-step p { color: #c8d2ca; margin: 0; font-size: 13px; line-height: 1.6; }

.pricing-section { max-width: 1180px; }
.pricing-section-legacy { display: none; }
.pricing-heading { text-align: center; max-width: 680px; margin: auto; }
.pricing-heading .section-kicker { justify-content: center; }
.pricing-heading > p { font-size: 15px; max-width: 550px; margin: 22px auto 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 65px; align-items: start; }
.price-card { border: 1px solid var(--line); border-radius: 16px; padding: 31px; background: rgba(255,253,249,.6); position: relative; }
.price-card.popular { background: #f2dfd0; border-color: #e9b58c; transform: translateY(-10px); box-shadow: 0 25px 55px rgba(83,55,34,.11); }
.popular-label { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: white; border-radius: 20px; font-size: 9px; text-transform: uppercase; letter-spacing: 1.2px; padding: 7px 13px; font-weight: 700; }
.plan-name { text-transform: uppercase; letter-spacing: 1.5px; font-size: 11px; color: var(--orange-dark); font-weight: 700; }
.plan-top p { min-height: 44px; color: var(--soft-ink); font-size: 13px; line-height: 1.5; }
.price { font-family: var(--serif); font-size: 43px; letter-spacing: -1.8px; margin-top: 21px; }
.price span { font-family: var(--sans); font-size: 22px; vertical-align: 8px; margin-right: 2px; }
.plan-top small { color: #8b918d; display: block; font-size: 10px; margin: 0 0 25px; }
.full { width: 100%; }
.price-card > ul, .plan-extra ul { list-style: none; margin: 28px 0 10px; padding: 0; }
.price-card li { font-size: 12px; color: #4d584f; margin: 13px 0; padding-left: 25px; position: relative; }
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(239,127,59,.14);
}
.price-card li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 4px;
  height: 7px;
  border: solid var(--orange-dark);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.price-card li.capacity { color: var(--ink); font-weight: 700; }
.plan-details { display: none; }
.plan-extra { display: block; }
.pricing-note { text-align: center; color: #7f8781; font-size: 12px; margin-top: 35px; }
.pricing-note a { color: var(--ink); border-bottom: 1px solid var(--ink); }

.custom-pricing-section { max-width: 1180px; }
.custom-pricing-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 52px;
  align-items: center;
  border: 1px solid rgba(239,127,59,.18);
  border-radius: 26px;
  padding: 54px;
  background:
    radial-gradient(circle at 92% 16%, rgba(239,127,59,.2), transparent 28%),
    linear-gradient(135deg, #fffaf3, #f6e0cd);
  box-shadow: 0 24px 70px rgba(83,55,34,.09);
  overflow: hidden;
  position: relative;
}
.custom-pricing-card::before {
  content: "✣";
  position: absolute;
  right: -30px;
  bottom: -95px;
  color: rgba(239,127,59,.11);
  font-size: 220px;
  line-height: 1;
  transform: rotate(-14deg);
}
.custom-pricing-copy { position: relative; z-index: 1; }
.custom-pricing-copy h2 { font-size: clamp(42px, 4.8vw, 64px); max-width: 700px; }
.custom-pricing-copy p {
  max-width: 620px;
  margin: 26px 0 32px;
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.75;
}
.custom-pricing-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.custom-pricing-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
  padding: 30px;
  border-radius: 22px;
  background: rgba(255,253,249,.72);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 20px 55px rgba(83,55,34,.09);
}
.custom-pill {
  display: inline-flex;
  align-items: center;
  min-height: 39px;
  padding: 0 14px;
  border-radius: 999px;
  background: white;
  color: #4d584f;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(53,52,46,.06);
}
.custom-pill:nth-child(odd) { color: var(--orange-dark); background: #fff4ea; }
.custom-pricing-note {
  flex-basis: 100%;
  margin-top: 10px;
  padding: 22px;
  border-radius: 18px;
  background: var(--green);
  color: #fffaf2;
}
.custom-pricing-note strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #f0a16d;
  margin-bottom: 8px;
}
.custom-pricing-note p { margin: 0; color: #d5ded7; font-size: 13px; line-height: 1.65; }

.blog-preview-section { padding-top: 40px; }
.blog-preview-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: end; margin-bottom: 40px; }
.blog-preview-heading .section-kicker { margin-bottom: 0; }
.blog-preview-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  background: linear-gradient(135deg, #fffaf4, #f8e7d6);
  box-shadow: 0 22px 60px rgba(83,55,34,.08);
}
.blog-preview-art, .blog-list-art {
  min-height: 280px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 24%, rgba(239,127,59,.2), transparent 32%),
    radial-gradient(circle at 78% 76%, rgba(35,79,59,.15), transparent 30%),
    #fffdf9;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24,34,27,.08);
}
.blog-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(239,127,59,.24); }
.orbit-one { width: 190px; height: 190px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.orbit-two { width: 275px; height: 275px; left: 50%; top: 50%; transform: translate(-50%,-50%); border-color: rgba(35,79,59,.15); }
.blog-art-bubble {
  position: absolute;
  left: 15%;
  top: 20%;
  padding: 14px 16px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 18px 40px rgba(65,53,43,.12);
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 700;
}
.blog-art-bubble.accent { left: auto; right: 13%; top: 36%; color: var(--orange-dark); }
.blog-art-bubble.green { left: 33%; top: auto; bottom: 18%; color: var(--green); }
.blog-preview-copy time, .blog-list-copy time, .article-meta {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.blog-preview-copy h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  margin: 13px 0 17px;
}
.blog-preview-copy p { color: var(--soft-ink); line-height: 1.7; margin: 0 0 24px; max-width: 600px; }

.faq-section { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; padding-top: 70px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; min-height: 78px; padding: 25px 0; display: flex; align-items: center; justify-content: space-between; font-weight: 600; font-size: 16px; }
summary::-webkit-details-marker { display: none; }
summary span { font-weight: 400; color: var(--orange-dark); font-size: 23px; transition: transform .2s; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: -8px 50px 25px 0; color: var(--soft-ink); line-height: 1.65; font-size: 14px; }

.cta-section { max-width: 1180px; min-height: 465px; margin: 25px auto 0; border-radius: 22px; background: linear-gradient(135deg, #f0c7a5, #f6e2d1 55%, #edb98f); display: grid; place-items: center; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(255,255,255,.7), transparent 55%); }
.cta-inner { z-index: 2; padding: 60px 25px; }
.mini-brand { font-size: 12px; color: var(--orange-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 1.3px; }
.cta-inner h2 { font-size: clamp(38px, 4.6vw, 59px); margin-top: 22px; }
.cta-inner p { font-size: 15px; color: #655f59; margin: 22px auto 28px; max-width: 560px; }
.cta-flower { position: absolute; font-size: 200px; color: rgba(239,127,59,.13); line-height: 1; }
.flower-one { left: -55px; bottom: -60px; transform: rotate(15deg); }.flower-two { right: -35px; top: -55px; transform: rotate(-18deg); }

footer { max-width: 1180px; margin: 0 auto; padding: 65px 28px 35px; display: grid; grid-template-columns: 1fr auto; gap: 45px; align-items: start; }
.footer-brand p { color: #7b847e; font-size: 12px; max-width: 330px; line-height: 1.6; }
.footer-links { display: flex; gap: 28px; font-size: 12px; color: var(--soft-ink); padding-top: 8px; }
.copyright { grid-column: 1/-1; border-top: 1px solid var(--line); padding-top: 24px; color: #929993; font-size: 10px; }

.legal-page .site-header { border-bottom: 1px solid var(--line); }
.legal-page .site-header nav { margin-left: auto; margin-right: 28px; }
.legal-main { max-width: 900px; margin: 0 auto; padding: 92px 28px 110px; }
.legal-hero { max-width: 760px; margin-bottom: 70px; }
.legal-label { color: var(--orange-dark); font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; }
.legal-hero h1 { font-size: clamp(48px, 6vw, 72px); margin: 17px 0 22px; }
.legal-hero > p { color: var(--soft-ink); font-size: 17px; line-height: 1.7; max-width: 680px; }
.legal-meta { display: flex; gap: 10px 28px; flex-wrap: wrap; margin-top: 24px; color: #828a84; font-size: 11px; }
.legal-notice { margin: 0 0 55px; padding: 20px 22px; border: 1px solid rgba(239,127,59,.28); border-radius: 12px; background: #fff7ef; color: #625c56; font-size: 13px; line-height: 1.65; }
.legal-content { counter-reset: legal-section; }
.legal-content section { padding: 38px 0; border-top: 1px solid var(--line); }
.legal-content h2 { font-family: var(--sans); font-size: 25px; letter-spacing: -.7px; line-height: 1.2; margin-bottom: 18px; }
.legal-content h3 { font-size: 15px; margin: 25px 0 8px; }
.legal-content p, .legal-content li { color: var(--soft-ink); font-size: 14px; line-height: 1.75; }
.legal-content p { margin: 10px 0; }
.legal-content ul { margin: 14px 0; padding-left: 21px; }
.legal-content li { margin: 8px 0; padding-left: 4px; }
.legal-content a { color: var(--orange-dark); border-bottom: 1px solid rgba(217,98,36,.35); }
.legal-back { display: inline-flex; align-items: center; gap: 9px; margin-top: 35px; font-size: 13px; font-weight: 600; }
.legal-page footer { padding-top: 38px; }

.blog-page .site-header, .article-page .site-header { border-bottom: 1px solid var(--line); }
.blog-main { max-width: 1060px; margin: 0 auto; padding: 74px 28px 104px; }
.blog-list-hero { max-width: 800px; margin: 0 auto 48px; text-align: center; }
.blog-list-hero h1 {
  font-size: clamp(40px, 4.6vw, 56px);
  letter-spacing: -2.2px;
  line-height: 1.04;
  max-width: none;
  margin: 16px 0 18px;
}
.blog-list-hero p { color: var(--soft-ink); font-size: 16px; line-height: 1.7; max-width: 650px; margin: 0 auto; }
.blog-list { max-width: 980px; margin: 0 auto; }
.blog-list-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fffdf9;
  box-shadow: 0 18px 55px rgba(53,52,46,.07);
}
.blog-list-art { display: block; min-height: 300px; }
.comparison-node {
  position: absolute;
  left: 10%;
  top: 17%;
  min-width: 136px;
  padding: 13px 15px;
  border-radius: 14px;
  background: white;
  box-shadow: 0 18px 35px rgba(53,52,46,.12);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.comparison-node.mid { left: auto; right: 10%; top: 36%; }
.comparison-node.primary { left: 25%; top: auto; bottom: 17%; background: var(--green); color: #fffaf2; }
.blog-list-copy { padding: 8px 8px 8px 0; display: flex; flex-direction: column; justify-content: center; }
.blog-list-copy h2 {
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  margin: 12px 0 15px;
}
.blog-list-copy p { color: var(--soft-ink); line-height: 1.65; font-size: 15px; margin: 0 0 22px; }

.article-shell { max-width: 980px; margin: 0 auto; padding: 66px 28px 96px; }
.article-hero { max-width: 900px; margin: 0 auto 38px; text-align: center; }
.article-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 700;
}
.article-meta { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.article-hero h1 {
  font-size: clamp(38px, 4.25vw, 52px);
  letter-spacing: -2px;
  line-height: 1.06;
  max-width: none;
  margin: 17px 0 22px;
}
.article-hero > p { color: var(--soft-ink); font-size: 17px; line-height: 1.7; max-width: 720px; margin: 0 auto; }
.article-graphic {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: center;
  min-height: 350px;
  max-width: 900px;
  margin: 48px auto 64px;
  padding: 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 17% 18%, rgba(239,127,59,.24), transparent 30%),
    linear-gradient(135deg, #f7eadc, #fffaf3);
  border: 1px solid rgba(24,34,27,.08);
  overflow: hidden;
}
.graphic-phone {
  width: 220px;
  height: 315px;
  margin: 0 auto;
  border: 7px solid var(--ink);
  border-radius: 34px;
  background: #e9e2d8;
  box-shadow: 0 28px 60px rgba(83,55,34,.18);
  position: relative;
  padding: 50px 13px 17px;
  transform: rotate(-3deg);
}
.graphic-phone-top { position: absolute; top: 0; left: 50%; width: 78px; height: 20px; transform: translateX(-50%); background: var(--ink); border-radius: 0 0 14px 14px; }
.graphic-message {
  width: max-content;
  max-width: 154px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: white;
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 7px 15px rgba(0,0,0,.06);
}
.graphic-message.two { margin-left: auto; background: #d8f7c8; color: #2e6748; }
.graphic-message.three { margin-top: 42px; color: var(--orange-dark); }
.graphic-stack { display: grid; gap: 14px; }
.graphic-tool {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 7px 16px;
  align-items: center;
  padding: 19px;
  border-radius: 16px;
  background: rgba(255,253,249,.78);
  border: 1px solid rgba(24,34,27,.08);
}
.graphic-tool span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange-dark);
  background: #ffead9;
  font-size: 11px;
  font-weight: 800;
}
.graphic-tool strong { font-size: 20px; letter-spacing: -.7px; }
.graphic-tool small { color: var(--soft-ink); font-size: 12px; }
.graphic-tool.featured { background: var(--green); color: #fffaf2; }
.graphic-tool.featured span { background: rgba(255,255,255,.14); color: #f3b083; }
.graphic-tool.featured small { color: #d5ded7; }
.article-content { max-width: 720px; margin: 0 auto; }
.article-content h2 {
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 52px 0 16px;
}
.article-content h3 { font-size: 21px; letter-spacing: -.5px; margin: 31px 0 10px; }
.article-content p, .article-content li {
  color: var(--soft-ink);
  font-size: 15.5px;
  line-height: 1.8;
}
.article-content p { margin: 16px 0; }
.article-content ul { padding-left: 22px; margin: 18px 0 28px; }
.article-content li { margin: 11px 0; padding-left: 5px; }
.article-content strong { color: var(--ink); }
.comparison-table-wrap {
  width: min(100vw - 56px, 900px);
  margin: 26px 50% 12px;
  transform: translateX(-50%);
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf9;
  box-shadow: 0 20px 50px rgba(53,52,46,.08);
}
.comparison-table {
  width: 100%;
  min-width: 740px;
  border-collapse: collapse;
}
.comparison-table th, .comparison-table td {
  padding: 17px 18px;
  border-bottom: 1px solid rgba(24,34,27,.09);
  vertical-align: top;
  text-align: left;
  font-size: 13px;
  line-height: 1.45;
}
.comparison-table thead th {
  background: #f8eadc;
  color: var(--ink);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.comparison-table tbody th { color: var(--ink); font-weight: 700; width: 23%; }
.comparison-table td { color: var(--soft-ink); }
.comparison-table .highlight, .comparison-table td:last-child { background: rgba(220,234,223,.52); }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.table-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}
.table-badge.muted { background: #f0eee9; color: #7b817c; }
.table-badge.strong { background: #dceadf; color: #24563e; }
.article-cta {
  margin-top: 58px;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f0c7a5, #f8e7d6);
  border: 1px solid rgba(217,98,36,.16);
}
.article-cta span { color: var(--orange-dark); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.4px; }
.article-cta p { max-width: 620px; margin: 14px 0 24px; color: #5f5a54; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .hero { margin: 0 18px; padding: 55px 34px 65px; grid-template-columns: 1fr 1fr; }
  .phone { transform: translate(-48%,-50%) rotate(2deg) scale(.9); }
  .note-one { left: -10%; }.note-two { right: -10%; }
  .dashboard-stage { transform: scale(.88); margin-left: -6%; margin-right: -6%; }
  .journey-section { gap: 60px; }
}
@media (max-width: 760px) {
  .site-header { height: 70px; padding: 0 19px; }
  .site-header nav, .site-header > .button { display: none; }
  .site-header.nav-open nav { display: flex; position: absolute; top: 62px; left: 15px; right: 15px; padding: 22px; border-radius: 12px; background: #fffdf9; flex-direction: column; box-shadow: 0 15px 30px rgba(24,34,27,.12); }
  .menu-button { display: block; }
  .hero { min-height: 0; margin: 0 10px; padding: 48px 22px 20px; grid-template-columns: 1fr; border-radius: 17px; }
  h1 { font-size: 48px; letter-spacing: -2.2px; }
  .hero-copy > p { font-size: 16px; line-height: 1.6; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-proof { margin-top: 30px; }
  .hero-visual { min-height: 585px; margin-top: 25px; }
  .phone { transform: translate(-50%,-50%) rotate(1deg) scale(.83); }
  .note-one { left: -8px; top: 25%; transform: scale(.9); }.note-two { right: -8px; bottom: 12%; transform: scale(.9); }
  .trust-strip { padding: 38px 0 31px; overflow: hidden; }
  .trust-strip > p { max-width: 300px; margin-left: auto; margin-right: auto; line-height: 1.6; }
  .planner-logos {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  }
  .planner-logo-track { animation-duration: 34s; }
  .logo-set, .logo-set.logo-repeat { display: flex; align-items: center; gap: 20px; padding-right: 20px; }
  .planner-logo { flex: 0 0 150px; height: 108px; }
  .section { padding: 82px 20px; }
  .section-kicker { margin-bottom: 18px; }
  h2 { font-size: 42px; letter-spacing: -2px; }
  .problem-grid, .dashboard-intro, .journey-section, .faq-section { grid-template-columns: 1fr; gap: 30px; }
  .benefit-cards { grid-template-columns: 1fr; margin-top: 45px; }
  .benefit-card { min-height: 280px; }.benefit-card.featured { transform: none; }.benefit-card.featured:hover { transform: translateY(-5px); }
  .benefit-icon { margin: 34px 0 22px; }
  .dashboard-section { padding-left: 20px; padding-right: 20px; }
  .dashboard-stage { height: 625px; transform: none; margin: 45px 0 20px; }
  .dashboard-browser { width: min(100%, 340px); height: 610px; left: 50%; transform: translateX(-50%) rotate(-1deg); }
  .browser-content img { object-position: top center; }
  .metric-card { padding: 13px 16px; min-width: 125px; }.metric-card strong { font-size: 23px; }
  .metric-card { display: none; }
  .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 710px; padding: 34px 25px 28px; }
  .screen-frame { width: min(67%, 220px); }
  .journey-section { padding-left: 20px; padding-right: 20px; gap: 60px; }
  .pricing-heading { text-align: left; }.pricing-heading .section-kicker { justify-content: flex-start; }
  .pricing-heading > p { margin-left: 0; }
  .pricing-grid { gap: 20px; margin-top: 45px; }
  .price-card.popular { transform: none; margin-top: 10px; }
  .custom-pricing-card { grid-template-columns: 1fr; gap: 34px; padding: 34px 24px; border-radius: 20px; }
  .custom-pricing-copy h2 { font-size: 39px; letter-spacing: -1.8px; }
  .custom-pricing-copy p { font-size: 15px; margin: 22px 0 27px; }
  .custom-pricing-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .custom-pricing-actions .button { width: 100%; }
  .custom-pricing-panel { padding: 20px; border-radius: 18px; }
  .custom-pill { min-height: 36px; font-size: 11px; padding: 0 12px; }
  .custom-pricing-note { padding: 18px; }
  .blog-preview-section { padding-top: 20px; }
  .blog-preview-heading, .blog-preview-card, .blog-list-card, .article-graphic { grid-template-columns: 1fr; gap: 22px; }
  .blog-preview-card, .blog-list-card { padding: 20px; }
  .blog-preview-art, .blog-list-art { min-height: 230px; }
  .blog-main { padding: 54px 20px 78px; }
  .blog-list-hero { text-align: left; margin-bottom: 34px; }
  .blog-list-hero p { margin-left: 0; }
  .blog-list-hero h1 { font-size: 34px; letter-spacing: -1.4px; }
  .comparison-node { min-width: 118px; padding: 12px 13px; font-size: 11px; }
  .comparison-node.primary { left: 20%; }
  .blog-list-copy { padding: 4px 0 0; }
  .blog-list-copy h2 { font-size: 28px; letter-spacing: -1.1px; }
  .blog-list-copy p { font-size: 14px; }
  .article-shell { padding: 48px 20px 78px; }
  .article-hero { text-align: left; }
  .article-meta { justify-content: flex-start; }
  .article-hero h1 { font-size: 32px; letter-spacing: -1.3px; }
  .article-hero > p { font-size: 16px; }
  .article-graphic { margin: 34px 0 44px; padding: 18px; min-height: 0; gap: 16px; }
  .graphic-phone { width: 172px; height: 246px; padding-top: 42px; transform: rotate(-1deg); }
  .graphic-message { max-width: 132px; padding: 8px 10px; font-size: 10px; }
  .graphic-message.three { margin-top: 18px; }
  .graphic-tool { grid-template-columns: 36px 1fr; gap: 5px 12px; padding: 14px; }
  .graphic-tool span { width: 32px; height: 32px; font-size: 10px; }
  .graphic-tool strong { font-size: 16px; }
  .graphic-tool small { font-size: 11px; }
  .article-content h2 { font-size: 27px; margin-top: 44px; }
  .article-content h3 { font-size: 19px; }
  .article-content p, .article-content li { font-size: 15px; line-height: 1.75; }
  .comparison-table-wrap { width: calc(100vw - 24px); }
  .comparison-table { min-width: 700px; }
  .comparison-table th, .comparison-table td { padding: 14px; font-size: 12px; }
  .article-cta { padding: 24px; }
  .plan-details { display: flex; width: 100%; align-items: center; justify-content: space-between; border: 0; border-top: 1px solid var(--line); background: transparent; padding: 18px 0 0; margin-top: 18px; font-size: 11px; color: var(--soft-ink); }
  .plan-extra { display: none; }.price-card.expanded .plan-extra { display: block; }
  .faq-section { gap: 45px; padding-top: 20px; }
  .cta-section { margin: 10px; min-height: 430px; border-radius: 17px; }
  footer { grid-template-columns: 1fr; padding: 55px 20px 25px; }
  .footer-links { flex-wrap: wrap; }
  .legal-page .site-header nav { display: none; }
  .legal-main { padding: 65px 20px 80px; }
  .legal-hero { margin-bottom: 48px; }
  .legal-hero h1 { font-size: 48px; }
  .legal-content section { padding: 31px 0; }
  .legal-content h2 { font-size: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .message, .typing { opacity: 1; transform: none; }
  .planner-logo-track { animation: none !important; transform: none !important; }
}
