:root {
  --ink: #0b1f2e;
  --ink2: #486273;
  --paper: #f5f9fb;
  --line: rgba(11, 31, 46, .12);
  --brand: #0475b6;
  --brandd: #03608f;
  --teal: #1aae8f;
  --grad: linear-gradient(135deg, #0475b6, #058da5 56%, #1aae8f);
  --f-d: 'Clash Display', system-ui, sans-serif;
  --f-b: 'Satoshi', system-ui, sans-serif;
  --pad: clamp(18px, 5vw, 32px);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--f-b); line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.plans-inner, .plans-nav-inner { width: min(100%, 1120px); margin: auto; padding-inline: var(--pad); }

.plans-nav { position: sticky; top: 0; z-index: 30; background: rgba(255, 255, 255, .94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.plans-nav-inner { min-height: 76px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.plans-logo { flex: none; }
.plans-logo img { display: block; width: auto; height: 58px; }
.plans-desktop-nav { display: flex; align-items: center; justify-content: flex-end; gap: 2px; }
.plans-desktop-nav a { color: var(--ink2); border-radius: 9px; padding: 9px 10px; font-size: 13px; font-weight: 700; white-space: nowrap; transition: .2s ease; }
.plans-desktop-nav a:hover, .plans-desktop-nav a.is-current { color: var(--brandd); background: rgba(4, 117, 182, .09); }
.plans-desktop-nav .plans-nav-cta, .plans-mobile-menu .plans-nav-cta { color: #fff; background: var(--grad); box-shadow: 0 6px 14px rgba(4, 117, 182, .2); }
.plans-desktop-nav .plans-nav-cta:hover, .plans-mobile-menu .plans-nav-cta:hover { color: #fff; background: var(--brandd); }
.plans-nav-tools { display: flex; align-items: center; gap: 10px; flex: none; }
.plans-client-notification { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid rgba(4, 117, 182, .22); border-radius: 10px; background: #fff; color: var(--brandd); }
.plans-client-notification:hover { border-color: var(--brand); background: rgba(4, 117, 182, .06); }
.plans-client-notification svg { width: 18px; height: 18px; }
.plans-client-notification b { position: absolute; top: -6px; right: -7px; display: grid; place-items: center; min-width: 18px; height: 18px; padding: 0 4px; border: 2px solid #fff; border-radius: 99px; background: #d7394b; color: #fff; font-size: 9px; line-height: 1; }
.plans-menu-toggle, .plans-mobile-menu { display: none; }
.plans-mobile-menu[hidden] { display: none !important; }

.plans-hero { padding: clamp(44px, 7vw, 74px) 0 clamp(40px, 6vw, 64px); text-align: center; background: radial-gradient(ellipse 70% 70% at 10% 0, rgba(4, 117, 182, .15), transparent 62%), radial-gradient(ellipse 70% 70% at 100% 10%, rgba(26, 174, 143, .15), transparent 63%); }
.plans-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border: 1px solid rgba(4, 117, 182, .18); border-radius: 999px; background: rgba(4, 117, 182, .07); color: var(--brandd); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.plans-eyebrow.muted { background: #fff; }
.plans-hero h1, .plans-heading h2 { font-family: var(--f-d); font-weight: 600; letter-spacing: -.04em; line-height: 1.04; }
.plans-hero h1 { max-width: 21ch; margin: 17px auto 12px; font-size: clamp(1.95rem, 1.3rem + 2.3vw, 3.15rem); }
.plans-hero p { max-width: 60ch; margin: 0 auto; color: var(--ink2); font-size: clamp(.96rem, .93rem + .25vw, 1.1rem); }

.plans-section { padding: clamp(42px, 7vw, 76px) 0; }
.plans-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 32px; }
.plans-heading h2 { margin: 15px 0 0; font-size: clamp(1.65rem, 1.15rem + 2.15vw, 2.65rem); }
.plans-heading > p { max-width: 43ch; margin: 0; color: var(--ink2); font-size: 14px; }
.plan-list { display: grid; gap: 12px; }
.plan-item, .other-services { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 2px 8px rgba(11, 31, 46, .035); transition: border-color .2s ease, box-shadow .28s ease; }
.plan-item[open], .other-services[open] { border-color: rgba(4, 117, 182, .32); box-shadow: 0 16px 34px rgba(11, 31, 46, .1); }
.plan-item.is-featured { border-color: rgba(4, 117, 182, .28); }
.plan-item summary, .other-services summary { position: relative; list-style: none; cursor: pointer; user-select: none; }
.plan-item summary::-webkit-details-marker, .other-services summary::-webkit-details-marker { display: none; }
.plan-item summary { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 18px; padding: 20px 58px 20px 23px; }
.plan-item summary::after { content: '+'; position: absolute; top: 50%; right: 22px; color: var(--brand); font-size: 29px; font-weight: 300; transform: translateY(-53%); transition: transform .25s var(--ease); }
.plan-item[open] summary::after { transform: translateY(-53%) rotate(45deg); }
.plan-name { font-family: var(--f-d); font-size: clamp(1.2rem, 1rem + .7vw, 1.55rem); font-weight: 600; letter-spacing: -.025em; }
.plan-price { color: var(--brand); font-size: clamp(1rem, .92rem + .4vw, 1.3rem); font-weight: 800; white-space: nowrap; }
.plan-price small { margin-right: 5px; color: var(--ink2); font: 700 11px var(--f-b); letter-spacing: .07em; text-transform: uppercase; }
.plan-detail { padding: 25px 23px 23px; border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(4, 117, 182, .018), #fff 58%); animation: plan-reveal .3s var(--ease) both; }
@keyframes plan-reveal { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
.plan-badge { display: inline-block; margin-bottom: 15px; padding: 4px 10px; border-radius: 99px; background: var(--grad); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.plan-detail-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.plan-tagline { margin: 0 0 7px; font-size: 1.06rem; font-weight: 700; }
.plan-best { margin: 0; color: var(--ink2); }
.plan-facts { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.plan-facts span { padding: 6px 9px; border-radius: 8px; background: rgba(4, 117, 182, .08); color: var(--brandd); font-size: 12px; font-weight: 750; white-space: nowrap; }
.plan-features { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; margin: 24px 0; }
.plan-features h3 { margin: 0 0 10px; color: var(--brandd); font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }
.plan-features ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.plan-features li { position: relative; padding-left: 20px; color: var(--ink2); font-size: 14px; }
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.not-included li::before { content: '–'; color: #b06b4f; }
.plan-next { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 18px; border: 1px solid rgba(4, 117, 182, .12); border-radius: 14px; background: #eff7fa; }
.plan-next strong { display: block; margin-bottom: 3px; font-size: 15px; }
.plan-next p { max-width: 58ch; margin: 0; color: var(--ink2); font-size: 13px; }
.plan-actions { display: flex; flex: none; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
.plan-primary, .plan-secondary { display: inline-flex; align-items: center; justify-content: center; padding: 11px 14px; border-radius: 10px; font-size: 13px; font-weight: 800; white-space: nowrap; transition: transform .18s ease, box-shadow .18s ease; }
.plan-primary { background: var(--grad); color: #fff; box-shadow: 0 7px 17px rgba(4, 117, 182, .22); }
.plan-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(4, 117, 182, .3); }
.plan-secondary { border: 1px solid rgba(4, 117, 182, .24); background: #fff; color: var(--brandd); }
.plan-secondary:hover { background: rgba(4, 117, 182, .06); }

.other-services { margin-top: 20px; }
.other-services summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 23px; }
.other-services summary > span:first-child { display: flex; align-items: center; gap: 13px; }
.other-services summary strong { font-family: var(--f-d); font-size: 1.22rem; font-weight: 600; letter-spacing: -.025em; }
.other-services-summary { color: var(--brandd); font-size: 13px; font-weight: 800; white-space: nowrap; }
.other-services-summary b { display: inline-block; margin-left: 8px; font-size: 22px; font-weight: 400; vertical-align: -2px; transition: transform .25s var(--ease); }
.other-services[open] .other-services-summary b { transform: rotate(45deg); }
.other-services-detail { padding: 21px 23px 23px; border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(4, 117, 182, .018), #fff); }
.other-services-detail p { margin: 0; color: var(--ink2); }
.other-services-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.other-services-list span { padding: 7px 10px; border-radius: 8px; background: rgba(4, 117, 182, .08); color: var(--brandd); font-size: 13px; font-weight: 700; }

.plans-footer { padding: 21px 0; border-top: 1px solid var(--line); background: #fff; color: var(--ink2); font-size: 13px; }
.plans-footer .plans-inner { display: flex; justify-content: space-between; gap: 18px; }
.plans-footer a { color: var(--brandd); font-weight: 800; }

@media (max-width: 920px) {
  .plans-desktop-nav a { padding-inline: 7px; font-size: 12px; }
}

@media (max-width: 760px) {
  .plans-nav-inner { min-height: 66px; padding-inline: 14px; }
  .plans-logo img { height: 47px; }
  .plans-desktop-nav { display: none; }
  .plans-menu-toggle { display: grid; width: 42px; height: 42px; place-content: center; gap: 5px; padding: 0; border: 1px solid rgba(4, 117, 182, .2); border-radius: 10px; background: #fff; color: var(--brandd); cursor: pointer; }
  .plans-menu-toggle span { display: block; width: 18px; height: 2px; border-radius: 2px; background: currentColor; }
  .plans-mobile-menu { display: block; border-top: 1px solid var(--line); background: #fff; box-shadow: 0 16px 24px rgba(11, 31, 46, .09); }
  .plans-mobile-menu nav { display: grid; gap: 4px; width: min(100%, 1120px); margin: auto; padding: 12px 14px 16px; }
  .plans-mobile-menu a { padding: 11px 13px; border-radius: 9px; color: var(--ink2); font-size: 14px; font-weight: 750; }
  .plans-mobile-menu a.is-current { background: rgba(4, 117, 182, .09); color: var(--brandd); }
  .plans-mobile-menu .plans-nav-cta { margin-top: 5px; color: #fff; text-align: center; }
  .plans-client-notification { width: 38px; height: 38px; }
  .plans-hero { padding: 40px 0 36px; }
  .plans-hero h1 { max-width: 19ch; margin: 14px auto 10px; font-size: clamp(1.72rem, 7.2vw, 2.1rem); }
  .plans-hero p { padding-inline: 4px; font-size: .95rem; }
  .plans-heading { display: block; margin-bottom: 23px; }
  .plans-heading > p { margin-top: 14px; }
  .plan-item summary { gap: 12px; padding: 17px 47px 17px 16px; }
  .plan-item summary::after { right: 16px; }
  .plan-detail { padding: 19px 16px 16px; }
  .plan-detail-head { display: block; }
  .plan-facts { justify-content: flex-start; margin-top: 14px; }
  .plan-features { grid-template-columns: 1fr; gap: 19px; margin: 20px 0; }
  .plan-next { display: block; padding: 15px; }
  .plan-actions { display: grid; grid-template-columns: 1fr; justify-content: stretch; margin-top: 14px; }
  .plan-primary, .plan-secondary { width: 100%; }
  .other-services summary { align-items: flex-start; padding: 16px; }
  .other-services summary > span:first-child { display: grid; gap: 7px; }
  .other-services summary strong { font-size: 1.08rem; }
  .other-services-summary { padding-top: 8px; font-size: 11px; }
  .other-services-detail { padding: 17px 16px 16px; }
  .plans-footer { padding: 16px 0; }
  .plans-footer .plans-inner { display: block; }
  .plans-footer a { display: inline-block; margin-top: 5px; }
}

@media (max-width: 390px) {
  .plans-logo img { height: 43px; }
  .plan-name { font-size: 1.1rem; }
  .plan-price { font-size: .95rem; }
  .other-services-summary { font-size: 0; }
  .other-services-summary b { margin-left: 0; font-size: 24px; }
}
