@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #f6f3ed;
  --surface: #fffdf9;
  --surface-strong: #ffffff;
  --ink: #000000;
  --muted: #000000;
  --line: rgba(31, 36, 33, 0.13);
  --accent: #e86422;
  --accent-dark: #b53d0c;
  --accent-soft: #ffe0c7;
  --yellow: #f4bd35;
  --night: #181b19;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 24px 80px rgba(43, 38, 29, 0.1);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 5%, rgba(244, 189, 53, .14), transparent 22rem),
    radial-gradient(circle at 95% 15%, rgba(232, 100, 34, .12), transparent 26rem),
    var(--bg);
  color: var(--ink);
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.theme-dark {
  color-scheme: dark;
  --bg: #141715;
  --surface: #1c201d;
  --surface-strong: #242925;
  --ink: #ffffff;
  --muted: #ffffff;
  --line: rgba(255,255,255,.13);
  --accent: #f06c28;
  --accent-dark: #ff9460;
  --accent-soft: rgba(240,108,40,.16);
  --yellow: #f4bd35;
  --night: #0e100f;
  --shadow: 0 24px 80px rgba(0,0,0,.34);
  background:
    radial-gradient(circle at 8% 5%, rgba(244,189,53,.1), transparent 22rem),
    radial-gradient(circle at 95% 15%, rgba(240,108,40,.13), transparent 26rem),
    var(--bg);
}

body.theme-dark .site-header { background: rgba(20,23,21,.82); }
body.theme-dark .floating-card { background: rgba(28,32,29,.96); }
body.theme-dark .button.secondary { color: var(--ink); }
body.theme-dark .draft-warning { color: #2a210e; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.shell { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; padding: 14px 0; backdrop-filter: blur(18px); background: rgba(246,243,237,.78); border-bottom: 1px solid rgba(31,36,33,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: "Montserrat", "Segoe UI", sans-serif; font-weight: 800; letter-spacing: -.02em; line-height: 1.02; }
.brand > span:last-child { display: flex; flex-direction: column; font-size: 15px; }
.brand > span:last-child::after { content: "АНДРЕЯ БЛАГОДАРА"; margin-top: 4px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .055em; }
.brand-mark { flex: 0 0 auto; width: 46px; height: 46px; border: 3px solid var(--accent); border-radius: 50%; background: url("agent-logo.png") center/cover no-repeat; box-shadow: 0 0 0 4px rgba(240,108,40,.15); }
.brand-mark::before, .brand-mark::after { display: none; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 650; }
.nav-links a { color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.button { color: #ffffff; }
.mobile-toggle { display: none; border: 0; background: transparent; padding: 8px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 0 24px; border: 1px solid transparent; border-radius: 17px; background: var(--accent); color: #ffffff; font-family: "Open Sans", "Segoe UI", Arial, sans-serif; font-weight: 600; letter-spacing: 0; cursor: pointer; box-shadow: 0 12px 30px rgba(232,100,34,.22); transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); background: var(--accent-dark); box-shadow: 0 16px 32px rgba(232,100,34,.28); }
.button.secondary { color: var(--ink); background: transparent; border-color: var(--line); box-shadow: none; }
.button.secondary:hover { background: var(--surface); }
.button.small { min-height: 42px; padding: 0 18px; border-radius: 14px; font-size: 14px; }
.button.disabled { pointer-events: none; opacity: .55; }

.hero { padding: 74px 0 54px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); align-items: start; column-gap: 55px; }
.hero-grid > div:first-child { display: contents; }
.hero-grid .eyebrow, .hero-grid h1 { grid-column: 1 / -1; }
.hero-grid .eyebrow { margin-bottom: 22px; }
.hero-grid h1 { margin-bottom: 34px; }
.hero-grid .hero-copy, .hero-grid .hero-actions, .hero-grid .hero-note { grid-column: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; color: var(--accent-dark); font-family: "Montserrat", "Segoe UI", sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--accent); }
h1, h2, h3 { margin: 0; font-family: "Montserrat", "Segoe UI", sans-serif; font-weight: 700; line-height: 1.05; letter-spacing: -.045em; }
h1, h2 { width: 100%; max-width: none; text-wrap: balance; }
h1 { font-size: clamp(46px, 7vw, 88px); }
h2 { font-size: clamp(36px, 4.35vw, 53px); }
h3 { font-size: clamp(23px, 2.5vw, 31px); }
.hero h1 span { color: var(--accent); }
.hero-copy { max-width: 690px; margin: 26px 0 0; color: var(--muted); font-size: clamp(18px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { margin-top: 22px; color: var(--muted); font-size: 14px; }

.agent-visual { position: relative; grid-column: 2; grid-row: 2 / 5; min-height: 500px; }
.agent-orbit { position: absolute; inset: 4% 0 0; border: 1px solid rgba(232,100,34,.28); border-radius: 48% 52% 58% 42% / 47% 38% 62% 53%; transform: rotate(8deg); }
.agent-orbit::before { content: ""; position: absolute; inset: 11%; border: 1px dashed rgba(31,36,33,.22); border-radius: inherit; transform: rotate(-15deg); }
.agent-node { position: absolute; width: 14px; height: 14px; border: 4px solid var(--surface); border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.agent-node.n1 { left: 5%; top: 27%; }
.agent-node.n2 { right: 3%; top: 15%; background: var(--yellow); box-shadow: 0 0 0 1px var(--yellow); }
.agent-node.n3 { right: 8%; bottom: 17%; }
.portrait-card { position: absolute; inset: 45px 34px 30px; overflow: hidden; border: 1px solid rgba(255,255,255,.65); border-radius: 38px; background: var(--surface); box-shadow: var(--shadow); transform: rotate(2deg); }
.portrait-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.floating-card { position: absolute; z-index: 2; width: 220px; padding: 17px; border: 1px solid rgba(31,36,33,.09); border-radius: 20px; background: rgba(255,253,249,.94); box-shadow: 0 18px 50px rgba(31,36,33,.14); backdrop-filter: blur(14px); }
.floating-card strong { display: block; margin-bottom: 5px; font-family: "Montserrat", "Segoe UI", sans-serif; font-size: 14px; font-weight: 700; }
.floating-card span { color: var(--ink); font-size: 13px; font-weight: 600; line-height: 1.42; }
body.theme-dark .floating-card strong,
body.theme-dark .floating-card span { color: #ffffff; opacity: 1; }
.floating-card.c1 { left: -25px; bottom: 35px; transform: rotate(-4deg); }
.floating-card.c2 { right: -20px; top: 20px; transform: rotate(4deg); }
.mini-flow { display: flex; align-items: center; gap: 6px; margin-top: 12px; }
.mini-flow i { display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.mini-flow b { width: 27px; height: 1px; background: var(--line); }

.trust-strip { padding: 34px 0 105px; overflow: hidden; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; padding: 0; overflow: visible; }
.trust-grid::before, .trust-grid::after { display: none; }
.trust-item { position: relative; min-height: 270px; padding: 34px 26px; overflow: hidden; border: 1px solid rgba(240,108,40,.58); border-radius: 30px; background: linear-gradient(145deg, #372419 0%, #1a1c1a 75%); box-shadow: 0 18px 50px rgba(0,0,0,.2); }
.trust-item::before { content: "✦"; position: absolute; right: 20px; top: 14px; color: var(--accent); font-size: 25px; line-height: 1; }
.trust-item:nth-child(2) { transform: translateY(20px); }
.trust-item:nth-child(3) { border-color: var(--accent); background: var(--accent); transform: rotate(-1deg); }
.trust-item:nth-child(3)::before { color: #ffffff; }
.trust-item:nth-child(4) { transform: translateY(10px) rotate(1deg); }
.trust-item strong { display: block; margin-top: 34px; color: #ffffff; font-family: "Montserrat", "Segoe UI", sans-serif; font-size: clamp(82px, 8.2vw, 118px); font-weight: 800; line-height: .82; letter-spacing: -.085em; opacity: 1; }
.trust-item span { display: block; max-width: 230px; margin-top: 26px; color: #ffffff; font-size: 15px; font-weight: 700; line-height: 1.3; }
body.theme-dark .trust-item span { color: #ffffff; }

section { padding: 92px 0; }
.section-head { display: block; width: 100%; margin-bottom: 48px; }
.section-head > div { width: 100%; }
.section-head h2 { width: 100%; max-width: none; }
.section-head p { width: 100%; max-width: none; margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { position: relative; display: flex; flex-direction: column; min-height: 430px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 14px 45px rgba(0,0,0,.14); cursor: pointer; transition: transform .25s, box-shadow .25s, border-color .25s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 22px 55px rgba(43,38,29,.1); }
.card-tag { align-self: flex-start; padding: 7px 10px; border-radius: 9px; color: var(--accent-dark); background: var(--accent-soft); font-size: 12px; font-weight: 800; }
.card h3 { margin-top: 26px; font-size: clamp(23px, 2.1vw, 28px); line-height: 1.08; }
.card p { color: var(--muted); }
.card-list { display: grid; gap: 9px; margin: 10px 0 26px; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.card-list li { display: flex; gap: 9px; }
.card-list li::before { content: "↳"; color: var(--accent); font-weight: 900; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.price { font-size: 20px; font-weight: 900; letter-spacing: -.03em; }
.arrow-link { color: var(--accent-dark); font-weight: 800; }

.path-section { position: relative; overflow: hidden; background: #090b0a; color: #ffffff; }
.path-section::before { content: ""; position: absolute; width: 720px; height: 720px; left: -300px; top: -360px; border: 1px solid rgba(240,108,40,.35); border-radius: 43% 57% 63% 37%; box-shadow: 0 0 0 80px rgba(240,108,40,.045), 0 0 0 160px rgba(240,108,40,.025); }
.path-section .shell { position: relative; z-index: 1; }
.path-section .section-head p, .path-section .muted { color: #ffffff; }
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; background: transparent; }
.steps::before { content: ""; position: absolute; left: 8%; right: 8%; top: 47px; height: 2px; background: linear-gradient(90deg, var(--accent), var(--yellow), var(--accent)); opacity: .75; }
.step { position: relative; min-height: 285px; padding: 27px; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; background: rgba(255,255,255,.055); backdrop-filter: blur(8px); }
.step:nth-child(even) { transform: translateY(24px); }
.step-num { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; margin-bottom: 62px; border: 5px solid #090b0a; border-radius: 50%; color: #000000; background: var(--yellow); box-shadow: 0 0 0 2px var(--accent); font-weight: 900; }
.step h3 { font-size: 23px; letter-spacing: -.025em; }
.step p { color: #ffffff; }

.about-grid { display: grid; grid-template-columns: 380px 1fr; gap: 70px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 40px; box-shadow: var(--shadow); }
.about-photo::after { content: "технический гений\A«Морошки»"; white-space: pre; position: absolute; right: -30px; bottom: 28px; padding: 14px 17px; border-radius: 16px; color: #ffffff; background: var(--accent); font-weight: 800; line-height: 1.15; transform: rotate(-3deg); }
.about-copy p { color: var(--muted); font-size: 18px; }
.about-copy h2 { font-size: clamp(40px, 4.5vw, 54px); line-height: 1.1; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.stat { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.stat strong { display: block; color: var(--accent); font-family: "Montserrat", "Segoe UI", sans-serif; font-size: clamp(30px, 3vw, 40px); font-weight: 700; line-height: 1; }
.stat span { color: var(--muted); font-size: 13px; }

.cta { padding: 40px 0 100px; }
.cta-box { position: relative; overflow: hidden; padding: 55px; border-radius: 36px; color: white; background: var(--accent); }
.cta-box::after { content: ""; position: absolute; width: 320px; height: 320px; right: -80px; top: -160px; border: 1px solid rgba(255,255,255,.4); border-radius: 46% 54% 65% 35%; box-shadow: 0 0 0 55px rgba(255,255,255,.06), 0 0 0 110px rgba(255,255,255,.04); }
.cta-box h2, .cta-box p, .cta-box .hero-actions { position: relative; z-index: 1; }
.cta-box h2 { width: 100%; max-width: none; }
.cta-box p { width: 100%; max-width: none; color: #ffffff; font-size: 18px; }
.cta-box .button { color: #ffffff; background: #000000; box-shadow: none; }
.cta-box .button.secondary { color: #ffffff; background: transparent; border-color: rgba(255,255,255,.75); }
.cta-box .button:hover,
.cta-box .button.secondary:hover { color: #000000; background: #ffffff; border-color: #ffffff; box-shadow: none; }

.page-hero { padding: 72px 0 50px; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr); column-gap: 28px; align-items: start; }
.page-hero-grid > div:first-child { display: contents; }
.page-hero-grid .eyebrow,
.page-hero-grid h1,
.page-hero-grid > div:first-child > p { grid-column: 1 / -1; }
.page-hero h1 { width: 100%; max-width: none; font-size: clamp(48px, 6vw, 78px); line-height: 1.02; text-wrap: balance; }
.page-hero h1 span { color: var(--accent); }
.page-hero p { width: 100%; max-width: none; margin-top: 25px; color: var(--muted); font-size: 20px; }
.page-hero-grid .hero-actions { grid-column: 1; grid-row: 4; }
.page-badge { grid-column: 2; grid-row: 4; width: 100%; max-width: none; margin-top: 34px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.page-hero-grid.with-demo .page-badge { grid-column: 1; grid-row: 5; margin-top: 22px; }
.page-badge strong { display: block; margin-bottom: 5px; font-size: 30px; }
.product-demo { grid-column: 2; grid-row: 4 / 6; min-height: 310px; margin-top: 34px; overflow: hidden; border: 1px solid rgba(240,108,40,.38); border-radius: 30px; background: linear-gradient(145deg, rgba(240,108,40,.14), rgba(255,255,255,.035)); box-shadow: 0 22px 65px rgba(0,0,0,.22); }
.demo-bar { display: flex; align-items: center; gap: 7px; padding: 15px 18px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 600; }
.demo-bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.demo-bar i:nth-child(2) { opacity: .55; }
.demo-bar i:nth-child(3) { opacity: .25; }
.demo-bar span { margin-left: 5px; }
.demo-stage { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 258px; padding: 30px; text-align: center; }
.demo-play { display: grid; place-items: center; width: 66px; height: 66px; margin-bottom: 20px; border: 1px solid rgba(240,108,40,.55); border-radius: 50%; color: #ffffff; background: var(--accent); box-shadow: 0 0 0 12px rgba(240,108,40,.1); font-size: 22px; }
.demo-stage strong { font-family: "Montserrat", "Segoe UI", sans-serif; font-size: 20px; }
.demo-stage span:last-child { max-width: 320px; margin-top: 9px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.feature .icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 25px; border-radius: 14px; color: var(--accent-dark); background: var(--accent-soft); font-weight: 900; }
.feature p { color: var(--muted); }
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--line); border-radius: 30px; background: var(--surface); }
.price-card.featured { color: white; background: var(--night); transform: translateY(-10px); }
.price-card.featured p, .price-card.featured li { color: #ffffff; }
.price-card .amount { margin: 18px 0 6px; font-size: 44px; font-weight: 900; letter-spacing: -.05em; }
.price-card ul { display: grid; gap: 10px; padding: 0; list-style: none; }
.price-card li { color: var(--muted); }
.price-card li::before { content: "•"; margin-right: 9px; color: var(--accent); }
.price-card .button { margin-top: auto; }
.notice { padding: 18px 20px; border-left: 3px solid var(--accent); border-radius: 0 14px 14px 0; color: var(--muted); background: var(--accent-soft); }
.support-contact { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 28px; padding: 24px 26px; border-radius: 22px; color: #ffffff; background: linear-gradient(135deg, rgba(240,108,40,.18), rgba(255,255,255,.045)); }
.support-contact strong { display: block; margin-bottom: 4px; font-family: "Montserrat", "Segoe UI", sans-serif; font-size: 18px; }
.support-contact span { font-size: 14px; }
.support-contact a { flex: 0 0 auto; color: var(--accent); font-weight: 700; }

.legal { max-width: 1000px; padding: 70px 0 100px; }
.legal h1 { font-size: clamp(40px, 6vw, 66px); }
.legal h2 { margin-top: 45px; font-size: 28px; }
.legal p, .legal li { color: var(--muted); }
.theme-dark .legal p, .theme-dark .legal li { color: #fff; }
.legal a { color: var(--orange); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal strong { color: inherit; }
.draft-warning { margin: 25px 0; padding: 18px; border: 1px solid #d69a24; border-radius: 16px; background: #fff1c9; }

.site-footer { padding: 45px 0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 35px; }
.footer-grid p, .footer-grid a { color: var(--muted); font-size: 14px; }
.footer-links { display: grid; align-content: start; gap: 8px; }
.footer-contact-line { display: flex; flex-wrap: wrap; gap: 5px; color: var(--muted); font-size: 14px; }
.footer-contact-line a { color: var(--accent); font-weight: 700; }
.footer-requisites { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footnote { margin-top: 35px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }

.theme-preview-link { position: fixed; right: 14px; bottom: 14px; z-index: 30; padding: 8px 12px; border: 1px solid var(--line); border-radius: 12px; color: var(--muted); background: var(--surface); font-size: 12px; box-shadow: var(--shadow); }

@media (max-width: 940px) {
  .nav-links { position: fixed; left: 20px; right: 20px; top: 74px; display: none; flex-direction: column; align-items: stretch; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-grid .eyebrow, .page-hero-grid h1, .page-hero-grid > div:first-child > p, .page-hero-grid .hero-actions, .page-badge, .page-hero-grid.with-demo .page-badge, .product-demo { grid-column: 1; grid-row: auto; }
  .page-badge, .page-hero-grid.with-demo .page-badge, .product-demo { margin-top: 22px; }
  .hero-grid .eyebrow, .hero-grid h1, .hero-grid .hero-copy, .hero-grid .hero-actions, .hero-grid .hero-note, .agent-visual { grid-column: 1; }
  .agent-visual { grid-row: auto; }
  .hero-grid { gap: 30px; }
  .agent-visual { min-height: 520px; max-width: 620px; width: 100%; margin: 0 auto; }
  .cards { grid-template-columns: 1fr; }
  .steps, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item, .trust-item:nth-child(2), .trust-item:nth-child(3), .trust-item:nth-child(4) { transform: none; }
  .trust-item::before { top: 14px; }
  .about-photo { max-width: 440px; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding-top: 45px; }
  h1 { font-size: clamp(38px, 10.5vw, 42px); line-height: 1.04; }
  .page-hero h1 { font-size: clamp(34px, 9.4vw, 38px); line-height: 1.05; }
  h2 { font-size: clamp(34px, 10vw, 42px); }
  section { padding: 68px 0; }
  .agent-visual { min-height: 420px; }
  .portrait-card { inset: 35px 18px 22px; border-radius: 28px; }
  .floating-card { width: 180px; padding: 12px; }
  .floating-card.c1 { left: -4px; bottom: 8px; }
  .floating-card.c2 { right: -4px; top: 4px; }
  .steps, .trust-grid, .feature-grid, .pricing, .stats, .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { gap: 14px; padding: 0; }
  .trust-item { min-height: 220px; padding: 28px 24px; }
  .trust-item strong { margin-top: 32px; }
  .support-contact { align-items: flex-start; flex-direction: column; }
  .steps::before { display: none; }
  .step:nth-child(even) { transform: none; }
  .price-card.featured { transform: none; }
  .about-grid { gap: 45px; }
  .about-photo::after { right: -5px; }
  .cta-box { padding: 35px 25px; }
}
