/*
Theme Name: PlanAtWayInfo Theme
Theme URI: https://planatwayinfo.online/
Author: OpenAI
Description: Custom WordPress theme converted from the PlanAtWayInfo static website.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: planatwayinfo
*/

:root {
  --rose-25: #fff9fb;
  --rose-50: #fdf4f8;
  --rose-100: #fae8f0;
  --rose-200: #f4d8e6;
  --rose-300: #edbfd5;
  --rose-400: #df9dbd;
  --rose-500: #cf7aa1;
  --rose-600: #b85f89;
  --rose-700: #95496c;
  --ink-900: #261925;
  --ink-700: #57414f;
  --ink-600: #6e5b68;
  --line: rgba(125, 79, 102, .12);
  --line-strong: rgba(125, 79, 102, .22);
  --surface: rgba(255,255,255,.78);
  --surface-strong: rgba(255,255,255,.92);
  --shadow-lg: 0 24px 60px rgba(90, 54, 74, .14);
  --shadow-md: 0 16px 34px rgba(90, 54, 74, .1);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.95), rgba(255,255,255,0) 35%),
    radial-gradient(circle at 85% 10%, rgba(244,216,230,.8), rgba(244,216,230,0) 25%),
    linear-gradient(180deg, #fffdfd 0%, #fff7fb 36%, #fdf3f8 100%);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 32px, var(--max-width)); margin: 0 auto; }
.progress-bar {
  position: fixed; inset: 0 auto auto 0; width: 0; height: 4px; z-index: 200;
  background: linear-gradient(90deg, var(--rose-500), #f7c6db, var(--rose-700));
  box-shadow: 0 0 24px rgba(207, 122, 161, .4);
}
.top-strip {
  background: rgba(255,255,255,.75);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.top-strip__inner {
  display: flex; gap: 16px; align-items: center; padding: 12px 0;
}
.top-strip__inner p {
  margin: 0; color: var(--ink-600); font-size: 14px;
}
.pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 14px; white-space: nowrap; border-radius: 999px;
  background: linear-gradient(135deg, rgba(207,122,161,.18), rgba(244,216,230,.48));
  color: var(--rose-700); font-weight: 800; font-size: 12px; letter-spacing: .02em;
  border: 1px solid rgba(207,122,161,.14);
}
.site-header {
  position: sticky; top: 0; z-index: 120;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 35px rgba(88, 57, 75, .08);
}
.nav-shell {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 82px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
}
.brand-mark {
  width: 48px; height: 48px; border-radius: 18px;
  display: grid; place-items: center; font-family: Manrope, Inter, sans-serif;
  font-weight: 900; letter-spacing: .02em;
  background: linear-gradient(135deg, var(--rose-700), var(--rose-400));
  color: white;
  box-shadow: 0 14px 28px rgba(184, 95, 137, .26);
}
.brand-text { display: grid; gap: 2px; }
.brand-text strong { font-size: 17px; line-height: 1; }
.brand-text small { color: var(--ink-600); font-size: 12px; }
.nav {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.nav a {
  font-size: 14px; color: var(--ink-700); font-weight: 700; padding: 10px 0; position: relative;
}
.nav a.is-active, .nav a:hover { color: var(--ink-900); }
.nav a.is-active::after, .nav a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--rose-500), var(--rose-700));
}
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none; background: white; border: 1px solid var(--line); width: 52px; height: 52px;
  border-radius: 16px; box-shadow: var(--shadow-md); padding: 12px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--ink-900); margin: 6px 0; border-radius: 2px;
}
.page-hero {
  position: relative; padding: 64px 0 32px; overflow: hidden;
}
.page-hero__grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; align-items: stretch;
}
.page-hero__content, .glass-panel {
  position: relative; z-index: 2;
}
.page-hero__content {
  background: linear-gradient(160deg, rgba(255,255,255,.86), rgba(255,250,252,.75));
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow-lg);
}
.eyebrow {
  display: inline-flex; padding: 8px 14px; border-radius: 999px;
  background: rgba(207,122,161,.12); border: 1px solid rgba(207,122,161,.12);
  color: var(--rose-700); font-size: 13px; font-weight: 800;
}
.page-hero h1 {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.03; margin: 18px 0 16px;
  letter-spacing: -.03em;
}
.page-hero p {
  margin: 0; color: var(--ink-600); font-size: 18px; max-width: 760px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(4px); opacity: .65; z-index: 1; pointer-events: none;
  animation: floatOrb 10s ease-in-out infinite;
}
.hero-orb--one {
  width: 320px; height: 320px; right: -80px; top: 30px;
  background: radial-gradient(circle, rgba(223,157,189,.55), rgba(223,157,189,0));
}
.hero-orb--two {
  width: 260px; height: 260px; left: -70px; bottom: 20px;
  background: radial-gradient(circle, rgba(244,216,230,.9), rgba(244,216,230,0));
  animation-delay: -3s;
}
.glass-panel {
  border-radius: 30px;
  padding: 28px;
  background: linear-gradient(170deg, rgba(255,255,255,.72), rgba(255,245,248,.54));
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: var(--shadow-lg);
}
.floating-card { animation: floatCard 6s ease-in-out infinite; }
.mini-label {
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  color: var(--rose-700); margin-bottom: 12px;
}
.clean-list { padding-left: 18px; margin: 0 0 18px; color: var(--ink-700); }
.clean-list li + li { margin-top: 10px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-row span, .chip {
  display: inline-flex; align-items: center; padding: 10px 14px; border-radius: 999px;
  background: rgba(255,255,255,.8); border: 1px solid var(--line);
  color: var(--ink-700); font-size: 13px; font-weight: 700;
}
section { position: relative; }
.content-section { padding: 24px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.section-head h2 {
  margin: 0; font-size: clamp(28px, 4vw, 46px); line-height: 1.08; font-family: Manrope, Inter, sans-serif;
  letter-spacing: -.02em;
}
.section-head p { margin: 0; max-width: 720px; color: var(--ink-600); }
.grid-2, .grid-3, .grid-4, .grid-auto { display: grid; gap: 18px; }
.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)); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card, .metric-card, .timeline-card, .notice-box, .faq-item, .filter-card, .table-shell {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,252,253,.86));
  border: 1px solid rgba(255,255,255,.78);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.card, .timeline-card, .notice-box, .filter-card { padding: 24px; }
.card:hover, .metric-card:hover, .timeline-card:hover, .filter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(90, 54, 74, .15);
}
.card, .metric-card, .timeline-card, .filter-card { transition: transform .28s ease, box-shadow .28s ease; }
.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.metric-card { padding: 24px; text-align: left; }
.metric-card strong {
  display: block; font-family: Manrope, Inter, sans-serif; font-size: clamp(30px, 5vw, 48px); line-height: 1;
  margin-bottom: 10px;
}
.metric-card span { color: var(--ink-600); font-size: 15px; }
.icon-box {
  width: 52px; height: 52px; border-radius: 18px;
  display: grid; place-items: center; font-weight: 900; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(207,122,161,.18), rgba(244,216,230,.58));
  color: var(--rose-700);
}
.lead { color: var(--ink-600); font-size: 17px; }
.notice-box {
  background: linear-gradient(135deg, rgba(255,251,253,.96), rgba(250,232,240,.92));
  border: 1px solid rgba(207,122,161,.18);
}
.notice-box strong { color: var(--rose-700); }
.compare-table {
  width: 100%; border-collapse: collapse; overflow: hidden;
}
.table-shell { overflow: hidden; }
.compare-table th, .compare-table td {
  padding: 16px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line);
}
.compare-table th {
  background: rgba(250,232,240,.8); color: var(--ink-900); font-size: 14px;
}
.compare-table tr:last-child td { border-bottom: 0; }
.timeline {
  display: grid; gap: 18px;
}
.timeline-card {
  display: grid; grid-template-columns: 70px 1fr; gap: 20px; align-items: start;
}
.step-number {
  width: 56px; height: 56px; border-radius: 18px;
  display: grid; place-items: center; font-weight: 900; font-size: 18px;
  background: linear-gradient(135deg, var(--rose-700), var(--rose-400)); color: white;
  box-shadow: 0 14px 28px rgba(184,95,137,.22);
}
.feature-list, .simple-list { padding-left: 18px; margin: 14px 0 0; color: var(--ink-700); }
.feature-list li + li, .simple-list li + li { margin-top: 8px; }
.dual-callout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.glow-strip {
  border-radius: 28px; padding: 26px;
  background: linear-gradient(120deg, rgba(38,25,37,.96), rgba(149,73,108,.96));
  color: white; box-shadow: var(--shadow-lg);
}
.glow-strip p { color: rgba(255,255,255,.8); }
.cta-box {
  display: flex; justify-content: space-between; gap: 20px; align-items: center; flex-wrap: wrap;
}
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge-row .chip { background: rgba(255,255,255,.12); color: white; border-color: rgba(255,255,255,.14); }
.filter-actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px;
}
.filter-btn {
  padding: 11px 16px; border-radius: 999px; border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.72); color: var(--ink-700); font-weight: 800; cursor: pointer;
  transition: .25s ease;
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--rose-700), var(--rose-500)); color: white; border-color: transparent;
  box-shadow: 0 14px 28px rgba(184,95,137,.25);
}
.filter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 18px; }
.filter-card.hidden { display: none; }
.filter-card h3 { margin-top: 0; }
.score-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 14px 0 0;
}
.score-bar {
  flex: 1; height: 10px; border-radius: 999px; background: rgba(223,157,189,.2); overflow: hidden;
}
.score-fill {
  height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--rose-500), var(--rose-700));
}
.faq-grid { display: grid; gap: 14px; }
.faq-item { overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  padding: 22px 24px; font-size: 17px; font-weight: 800; color: var(--ink-900);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.faq-question span:last-child {
  width: 34px; height: 34px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(250,232,240,.86); color: var(--rose-700); font-size: 20px; transition: .25s ease;
}
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.faq-answer__inner { padding: 0 24px 22px; color: var(--ink-600); }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.contact-panel {
  background: linear-gradient(135deg, rgba(38,25,37,.98), rgba(149,73,108,.96));
  color: white; border-radius: 30px; padding: 32px; box-shadow: var(--shadow-lg);
}
.contact-panel p, .contact-panel li { color: rgba(255,255,255,.82); }
.info-grid { display: grid; gap: 14px; margin-top: 18px; }
.info-box {
  padding: 18px; border-radius: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
}
.legal-card ol, .legal-card ul { padding-left: 20px; }
.legal-card li + li { margin-top: 10px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 18px; border-radius: 16px; font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white; background: linear-gradient(135deg, var(--rose-700), var(--rose-500));
  box-shadow: 0 16px 32px rgba(184,95,137,.28);
}
.btn-soft {
  background: rgba(255,255,255,.82); border: 1px solid var(--line);
  color: var(--ink-900); box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent; border: 1px solid var(--line-strong); color: var(--ink-900);
}
.site-footer {
  margin-top: 44px; padding: 54px 0 20px;
  background: linear-gradient(180deg, #2b1c28 0%, #1c1219 100%);
  color: rgba(255,255,255,.92);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 24px; }
.brand-footer .brand-text small { color: rgba(255,255,255,.6); }
.footer-copy { color: rgba(255,255,255,.76); }
.legal-highlight {
  padding: 18px; border-radius: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
}
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.86); }
.footer-links a:hover { color: white; }
.footer-trust { display: grid; gap: 12px; }
.trust-item {
  padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
}
.trust-item strong { display: block; margin-bottom: 4px; }
.trust-item span { color: rgba(255,255,255,.68); font-size: 14px; }
.footer-bottom {
  margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: rgba(255,255,255,.64);
  font-size: 14px;
}
[data-reveal] {
  opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
.back-to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 52px; height: 52px;
  border: 0; border-radius: 18px; cursor: pointer; opacity: 0; visibility: hidden;
  background: linear-gradient(135deg, var(--rose-700), var(--rose-500)); color: white; font-size: 22px;
  box-shadow: 0 18px 34px rgba(184,95,137,.35); transition: .25s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.helper-note { color: var(--ink-600); font-size: 15px; }
@keyframes floatCard {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes floatOrb {
  0%,100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-18px) scale(1.04); }
}
@media (max-width: 1080px) {
  .page-hero__grid, .footer-grid, .metric-grid, .grid-4, .grid-3, .grid-2, .dual-callout { grid-template-columns: 1fr; }
  .top-strip__inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 920px) {
  .nav-toggle { display: inline-block; }
  .nav {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 10px); display: none;
    flex-direction: column; align-items: stretch; background: rgba(255,255,255,.98); padding: 18px;
    border-radius: 24px; border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav a { padding: 6px 0; }
}
@media (max-width: 720px) {
  .page-hero { padding-top: 34px; }
  .page-hero__content, .glass-panel, .contact-panel { padding: 24px; }
  .page-hero h1 { font-size: clamp(32px, 10vw, 54px); }
  .page-hero p { font-size: 16px; }
  .compare-table { display: block; overflow-x: auto; }
  .cta-box { align-items: flex-start; }
  .timeline-card { grid-template-columns: 1fr; }
}