:root {
  --navy: #071a33;
  --blue: #176bff;
  --sky: #46b5ff;
  --white: #ffffff;
  --light: #f4f7fb;
  --text: #101828;
  --muted: #5d6878;
  --border: #dfe6ef;
  --green: #20b769;
  --radius: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--white); font-family: Arial, Helvetica, sans-serif; line-height: 1.5; }
body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
section[id] { scroll-margin-top: 76px; }
:focus-visible { outline: 3px solid rgba(70, 181, 255, .65); outline-offset: 3px; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.hidden { position: absolute; left: -9999px; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 14px; color: var(--white); background: var(--blue); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.header { position: fixed; z-index: 50; top: 0; right: 0; left: 0; background: rgba(255, 255, 255, .96); border-bottom: 1px solid var(--border); }
.header-inner { height: 76px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo strong { color: var(--navy); font-size: 20px; letter-spacing: .12em; }
.logo span { margin-top: 6px; color: #6b7686; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav { display: flex; justify-content: center; gap: 28px; font-size: 13px; font-weight: 700; }
.desktop-nav a:hover { color: var(--blue); }
.menu-button { display: none; width: 44px; height: 42px; padding: 0 11px; background: var(--navy); border: 0; border-radius: 8px; }
.menu-button span { display: block; height: 2px; margin: 6px 0; background: var(--white); }
.mobile-nav { display: none; padding: 12px 20px 22px; background: var(--white); border-top: 1px solid var(--border); }
.mobile-nav a:not(.button) { display: block; padding: 13px 0; border-bottom: 1px solid var(--border); font-weight: 700; }
.mobile-nav .button { width: 100%; margin-top: 16px; }
.mobile-nav.open { display: block; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 22px; color: var(--white); background: var(--blue); border: 1px solid var(--blue); border-radius: 9px; font-size: 14px; font-weight: 800; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.button:hover { background: #0e5ce7; transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 12px; }
.button-outline { color: var(--navy); background: var(--white); border-color: #bfcbd9; }
.button-outline:hover { color: var(--blue); background: var(--light); }
.button-white { color: var(--blue); background: var(--white); border-color: var(--white); }
.text-button { padding: 0; color: var(--blue); background: none; border: 0; font-size: 13px; font-weight: 800; cursor: pointer; }
.inline-link { display: inline-block; }

.hero { padding: 138px 0 80px; background: var(--white); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 65px; }
.badge { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 20px; padding: 7px 11px; color: #345170; background: #eef5ff; border: 1px solid #d6e6ff; border-radius: 999px; font-size: 11px; font-weight: 800; }
.badge::before { width: 8px; height: 8px; flex: 0 0 auto; background: var(--blue); border: 5px solid #dceaff; border-radius: 50%; content: ""; }
.hero h1 { margin: 0 0 22px; color: var(--navy); font-size: clamp(45px, 5vw, 66px); line-height: 1; letter-spacing: -.045em; }
.hero h1 span { color: var(--blue); }
.lead { max-width: 600px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.direct-note { display: flex; align-items: center; gap: 8px; margin: 16px 0 0; color: #68778a; font-size: 12px; font-weight: 700; }
.direct-note > span { display: grid; width: 22px; height: 22px; flex: 0 0 auto; place-items: center; color: var(--blue); background: #eaf3ff; border-radius: 50%; }
.hero-preview { overflow: hidden; background: var(--navy); border: 9px solid var(--navy); border-radius: var(--radius); box-shadow: 0 24px 55px rgba(7, 26, 51, .18); }
.browser-top { height: 28px; display: flex; align-items: center; gap: 5px; padding: 0 8px; color: #9cadc1; }
.browser-top i { width: 7px; height: 7px; background: #60748e; border-radius: 50%; }
.browser-top span { margin-left: 8px; font-size: 8px; }
.hero-preview img { width: 100%; height: auto; object-fit: contain; object-position: top center; border-radius: 6px; }

.benefits { color: var(--white); background: var(--navy); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.benefits p { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 78px; margin: 0; border-right: 1px solid rgba(255, 255, 255, .13); font-size: 12px; font-weight: 700; }
.benefits p:last-child { border: 0; }
.benefits span { color: var(--sky); font-size: 12px; }

.section { padding: 105px 0; }
.section-heading { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-heading h2, .left-heading h2, .about h2, .faq h2, .contact h2 { margin: 10px 0 14px; color: var(--navy); font-size: clamp(36px, 4vw, 52px); line-height: 1.08; letter-spacing: -.04em; }
.section-heading > p:last-child, .left-heading > p:last-child, .faq-grid > div > p:last-child { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.eyebrow { margin: 0; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-light { color: #7bc6ff; }
.left-heading { max-width: 690px; margin: 0 0 42px; text-align: left; }

.portfolio { background: var(--light); }
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 32px; }
.filters button { padding: 9px 14px; color: var(--muted); background: var(--white); border: 1px solid var(--border); border-radius: 999px; font-size: 11px; font-weight: 800; cursor: pointer; }
.filters button.active { color: var(--white); background: var(--navy); border-color: var(--navy); }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.project-card { overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.project-card[hidden] { display: none; }
.project-image { position: relative; height: auto; aspect-ratio: 1265 / 708; overflow: hidden; background: #d8e1ec; }
.project-image img { width: 100%; height: 100%; object-fit: contain; object-position: top center; }
.concept { position: absolute; top: 12px; left: 12px; padding: 6px 9px; color: var(--white); background: var(--navy); border-radius: 5px; font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.project-body { padding: 23px; }
.project-type { margin: 0 0 7px; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.project-body h3 { margin: 0 0 10px; color: var(--navy); font-size: 21px; }
.project-body > p:not(.project-type) { min-height: 64px; margin: 0 0 16px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 20px; padding: 0; list-style: none; }
.tags li { padding: 5px 7px; color: #56667a; background: var(--light); border-radius: 4px; font-size: 9px; font-weight: 700; }
.empty-state { max-width: 650px; margin: 0 auto; padding: 45px; text-align: center; background: var(--white); border: 1px dashed #aebccc; border-radius: var(--radius); }
.empty-state h3 { margin: 0 0 8px; color: var(--navy); }
.empty-state p { color: var(--muted); }

.problem { color: var(--white); background: var(--navy); }
.problem-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.problem h2 { margin: 12px 0 18px; font-size: clamp(40px, 5vw, 58px); line-height: 1.05; }
.problem-grid > div > p:last-child { margin: 0; color: #b7c5d6; line-height: 1.75; }
.problem-list { margin: 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, .18); list-style: none; }
.problem-list li { display: flex; align-items: center; gap: 20px; min-height: 72px; border-bottom: 1px solid rgba(255, 255, 255, .18); font-weight: 700; }
.problem-list span { color: var(--sky); font-size: 12px; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius); }
.service-card > span { color: var(--blue); font-size: 13px; font-weight: 900; }
.service-card h3 { margin: 18px 0 10px; color: var(--navy); font-size: 26px; }
.service-card > p { margin: 0 0 20px; color: var(--muted); line-height: 1.65; }
.service-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 0; padding: 18px 0 0; border-top: 1px solid var(--border); list-style: none; }
.service-card li { color: #526175; font-size: 12px; }
.service-card li::before { margin-right: 7px; color: var(--blue); content: "✓"; font-weight: 900; }
.service-secondary { background: var(--light); }

.method { background: var(--light); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.steps-grid article { padding: 26px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.steps-grid span { color: var(--blue); font-size: 13px; font-weight: 900; }
.steps-grid h3 { margin: 30px 0 10px; color: var(--navy); font-size: 22px; }
.steps-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); }
.comparison-grid article { padding: 42px; background: var(--light); }
.comparison-grid .comparison-good { color: var(--white); background: var(--blue); }
.comparison-label { display: inline-block; margin: 0; padding: 6px 8px; background: rgba(255, 255, 255, .75); border-radius: 5px; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.comparison-good .comparison-label { background: rgba(255,255,255,.18); }
.comparison-grid h3 { max-width: 420px; margin: 42px 0 24px; font-size: 28px; line-height: 1.15; }
.comparison-grid ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.comparison-grid li { font-size: 13px; }
.comparison-grid li::before { margin-right: 8px; content: "×"; font-weight: 900; }
.comparison-good li::before { content: "✓"; }

.about { background: var(--light); }
.about[hidden] { display: none !important; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: center; max-width: 1050px; }
.about-grid.about-no-photo { grid-template-columns: 1fr; max-width: 820px; }
.photo-placeholder { min-height: 440px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); background: var(--navy); border-radius: var(--radius); }
.photo-placeholder[hidden] { display: none !important; }
.photo-placeholder strong { display: grid; width: 110px; height: 110px; place-items: center; color: var(--navy); background: var(--white); border-radius: 50%; font-size: 54px; }
.photo-placeholder span { margin-top: 22px; color: #b9c8d9; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.about-grid > div:last-child > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.check-list { display: grid; gap: 10px; margin: 24px 0; padding: 0; list-style: none; }
.check-list li { font-size: 13px; font-weight: 700; }
.check-list li::before { margin-right: 9px; color: var(--blue); content: "✓"; }

.pricing { background: var(--light); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; max-width: 900px; margin: 0 auto; }
.pricing-card { display: flex; flex-direction: column; padding: 30px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.pricing-featured { border: 2px solid var(--blue); }
.pricing-type { width: fit-content; margin: 0 0 18px; padding: 6px 8px; color: var(--blue); background: #edf4ff; border-radius: 5px; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.pricing-type.pricing-limited { color: #9a3412; background: #fff1e8; }
.pricing-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 28px; }
.pricing-description { min-height: 66px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.pricing-price { display: flex; align-items: baseline; gap: 8px; margin: 26px 0; color: var(--navy); }
.pricing-price span { color: var(--muted); font-size: 12px; font-weight: 700; }
.pricing-price strong { font-size: 42px; line-height: 1; letter-spacing: -.04em; }
.pricing-card ul { display: grid; gap: 11px; flex: 1; margin: 0 0 28px; padding: 22px 0 0; border-top: 1px solid var(--border); list-style: none; }
.pricing-card li { color: #526175; font-size: 12px; line-height: 1.5; }
.pricing-card li::before { margin-right: 8px; color: var(--blue); content: "✓"; font-weight: 900; }
.pricing-card .button { width: 100%; }
.pricing-promo { max-width: 900px; margin: 22px auto 0; padding: 16px 20px; color: var(--navy); background: #eaf3ff; border: 1px solid #cfe1ff; border-radius: 10px; font-size: 13px; line-height: 1.6; text-align: center; }
.pricing-note { max-width: 920px; margin: 24px auto 0; color: #68778a; font-size: 11px; line-height: 1.65; text-align: center; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonials-grid article { padding: 26px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 12px 30px rgba(7, 26, 51, .06); }
.testimonials-grid article > span { display: inline-block; padding: 6px 8px; color: var(--blue); background: #edf4ff; border-radius: 5px; font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.testimonials-grid blockquote { margin: 26px 0; color: #536174; font-style: italic; line-height: 1.65; }
.testimonials-grid p { display: flex; flex-direction: column; gap: 3px; margin: 0; padding-top: 16px; border-top: 1px solid var(--border); font-size: 11px; }
.testimonials-grid small { color: #8793a2; }

.faq { background: var(--light); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 85px; }
.faq-list { border-top: 1px solid #cbd5e1; }
.faq-list details { border-bottom: 1px solid #cbd5e1; }
.faq-list summary { padding: 20px 4px; color: var(--navy); font-size: 14px; font-weight: 800; cursor: pointer; }
.faq-list details p { margin: -6px 4px 20px; color: var(--muted); font-size: 13px; line-height: 1.65; }

.contact { color: var(--white); background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 75px; align-items: start; }
.contact-copy { padding-top: 32px; }
.contact h2 { color: var(--white); }
.contact-copy > p:not(.eyebrow):not(.small-note) { color: #b8c6d6; line-height: 1.7; }
.whatsapp-button { margin-top: 18px; background: var(--green); border-color: var(--green); }
.small-note { color: #90a5bc; font-size: 11px; }
.form-card { min-height: 650px; padding: 36px; color: var(--text); background: var(--white); border-radius: var(--radius); }
.form-card h3 { margin: 0 0 6px; color: var(--navy); font-size: 28px; }
.form-card form > p:not(.hidden) { margin: 0 0 24px; color: var(--muted); font-size: 12px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-grid label { display: flex; flex-direction: column; gap: 7px; color: #354258; font-size: 10px; font-weight: 800; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; padding: 12px; color: var(--text); background: #fbfcfe; border: 1px solid #d4dee9; border-radius: 7px; }
.form-grid input, .form-grid select { height: 45px; }
.form-grid textarea { resize: vertical; }
.form-grid .full { grid-column: 1 / -1; }
.privacy { display: flex; align-items: flex-start; gap: 9px; margin: 17px 0; color: var(--muted); font-size: 9px; }
.privacy input { width: 15px; height: 15px; margin: 0; accent-color: var(--blue); }
.privacy a { color: var(--blue); text-decoration: underline; }
.submit-button { width: 100%; }
.form-success { min-height: 570px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.form-success[hidden] { display: none; }
.form-success > span { display: grid; width: 58px; height: 58px; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-size: 24px; }
.form-success h3 { margin-top: 20px; }
.form-success p { max-width: 420px; color: var(--muted); }

.footer { padding: 65px 0 22px; color: #7f8996; background: var(--white); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr 1fr; gap: 70px; padding-bottom: 45px; }
.logo-light strong { color: var(--navy); }
.footer-grid > div { display: flex; flex-direction: column; gap: 10px; }
.footer-grid > div:first-child p { max-width: 340px; color: #7f8996; font-size: 13px; line-height: 1.65; }
.footer h3 { margin: 0 0 6px; color: var(--navy); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.footer a, .footer span { font-size: 12px; }
.footer a:hover { color: var(--blue); }
.footer-contact .policy-link { width: fit-content; display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px; color: #596577; border: 1px solid #d2dae4; border-radius: 4px; font-size: 11px; font-weight: 700; }
.footer-contact .policy-link span { color: var(--green); font-size: 11px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.footer-bottom p, .footer-bottom a { margin: 0; color: #7f8996; font-size: 11px; }
.floating-whatsapp { position: fixed; z-index: 30; right: 18px; bottom: 18px; display: grid; width: 56px; height: 56px; padding: 4px; place-items: center; background: var(--white); border: 0; border-radius: 50%; box-shadow: 0 8px 24px rgba(7, 26, 51, .2); }
.floating-whatsapp[hidden] { display: none !important; }
.floating-whatsapp img { width: 100%; height: 100%; }

.cookie-banner { position: fixed; z-index: 100; right: 20px; bottom: 20px; left: 20px; width: min(980px, calc(100% - 40px)); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; margin: 0 auto; padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 18px 55px rgba(7, 26, 51, .22); }
.cookie-banner[hidden] { display: none; }
.cookie-copy h2 { margin: 5px 0 6px; color: var(--navy); font-size: 23px; }
.cookie-copy > p:last-child { max-width: 650px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.cookie-copy a { color: var(--blue); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions .button { white-space: nowrap; }

@media (min-width: 981px) {
  .lead { font-size: 21px; }
  .direct-note { font-size: 15px; }
  .benefits p { font-size: 15px; }
  .section-heading > p:last-child, .left-heading > p:last-child, .faq-grid > div > p:last-child { font-size: 19px; }
  .project-body > p:not(.project-type), .steps-grid p, .faq-list details p, .dialog-content > p:not(.project-type) { font-size: 16px; }
  .service-card > p, .problem-grid > div > p:last-child, .about-grid > div:last-child > p:not(.eyebrow), .contact-copy > p:not(.eyebrow):not(.small-note), .testimonials-grid blockquote { font-size: 19px; }
  .service-card li, .comparison-grid li, .check-list li, .pricing-card li { font-size: 15px; }
  .pricing-description { font-size: 16px; }
  .pricing-promo { font-size: 16px; }
  .pricing-note, .testimonials-grid p, .small-note { font-size: 14px; }
  .testimonials-grid small { font-size: 13px; }
  .form-card form > p:not(.hidden) { font-size: 15px; }
  .form-grid label { font-size: 13px; }
  .privacy { font-size: 12px; }
  .footer-grid > div:first-child p { font-size: 16px; }
  .footer a, .footer span { font-size: 15px; }
  .footer h3 { font-size: 16px; }
  .footer-contact .policy-link, .footer-contact .policy-link span { font-size: 14px; }
  .footer-bottom p, .footer-bottom a { font-size: 14px; }
  .cookie-copy > p:last-child { font-size: 15px; }
}

.project-dialog { width: min(1040px, calc(100% - 30px)); max-height: calc(100vh - 30px); padding: 0; overflow: auto; background: var(--white); border: 0; border-radius: var(--radius); }
.project-dialog::backdrop { background: rgba(3, 13, 27, .82); }
.dialog-close { position: absolute; z-index: 2; top: 12px; right: 12px; display: grid; width: 36px; height: 36px; place-items: center; color: var(--navy); background: var(--white); border: 1px solid var(--border); border-radius: 50%; font-size: 23px; cursor: pointer; }
.dialog-grid { display: grid; grid-template-columns: 1.1fr .9fr; }
.dialog-image { min-height: 0; background: var(--navy); }
.dialog-image img { width: 100%; height: auto; object-fit: contain; object-position: top center; }
.dialog-content { padding: 55px 38px 38px; }
.dialog-content h2 { margin: 10px 0 16px; color: var(--navy); font-size: 34px; line-height: 1.08; }
.dialog-content > p:not(.project-type) { color: var(--muted); font-size: 13px; line-height: 1.7; }
.dialog-content h3 { margin: 25px 0 10px; color: var(--navy); font-size: 12px; }
.dialog-content .button { width: 100%; }

@media (max-width: 980px) {
  .desktop-nav, .header-button { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-button { display: block; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .lead { margin: 0 auto; }
  .actions { justify-content: center; }
  .hero-preview { max-width: 720px; margin: 0 auto; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .problem-grid, .faq-grid, .contact-grid { gap: 50px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.2fr .7fr 1fr; gap: 30px; }
}

@media (max-width: 760px) {
  .header-inner { height: 82px; }
  .logo strong { font-size: 22px; }
  .logo span { margin-top: 7px; font-size: 9px; }
  .menu-button { width: 48px; height: 48px; padding: 0 13px; border-radius: 12px; }
  .hero { padding: 136px 0 64px; }
  .hero-grid { gap: 38px; }
  .hero-copy { text-align: center; }
  .badge { margin-bottom: 28px; padding: 10px 14px; font-size: 12px; }
  .hero h1 { max-width: 720px; margin-right: auto; margin-bottom: 26px; margin-left: auto; font-size: clamp(42px, 7.5vw, 58px); font-weight: 400; line-height: 1.03; }
  .hero h1 span { display: block; margin-top: 4px; }
  .lead { max-width: 660px; font-size: 18px; line-height: 1.7; }
  .actions { flex-direction: column; gap: 12px; margin-top: 30px; }
  .actions .button { width: 100%; min-height: 58px; font-size: 16px; }
  .actions .button:first-child { gap: 12px; }
  .direct-note { justify-content: center; margin-top: 20px; font-size: 13px; }
  .hero-preview { width: 100%; margin-top: 4px; }
  .section { padding: 80px 0; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefits p:nth-child(2) { border-right: 0; }
  .benefits p:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .projects-grid, .problem-grid, .services-grid, .comparison-grid, .about-grid, .offer-box, .faq-grid, .contact-grid, .dialog-grid { grid-template-columns: 1fr; }
  .project-body > p:not(.project-type) { min-height: 0; }
  .problem-grid { gap: 45px; }
  .about-grid { gap: 45px; }
  .photo-placeholder { min-height: 380px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .dialog-image { min-height: 0; }
  .cookie-banner { grid-template-columns: 1fr; gap: 18px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .button { flex: 1; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 30px, var(--container)); }
  .hero { padding-top: 130px; }
  .badge { max-width: 100%; margin-bottom: 26px; padding: 9px 12px; font-size: 10px; }
  .hero h1 { font-size: clamp(37px, 10vw, 40px); }
  .lead { font-size: 16px; }
  .direct-note { align-items: flex-start; text-align: left; }
  .benefits p { min-height: 88px; flex-direction: column; gap: 5px; text-align: center; font-size: 10px; }
  .section-heading h2, .left-heading h2, .about h2, .faq h2, .contact h2 { font-size: 36px; }
  .filters { flex-wrap: nowrap; justify-content: flex-start; margin-right: -15px; padding-right: 15px; overflow-x: auto; }
  .filters button { flex: 0 0 auto; }
  .projects-grid { grid-template-columns: 1fr; }
  .service-card { padding: 25px; }
  .service-card ul { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .comparison-grid article { padding: 30px 24px; }
  .comparison-grid h3 { margin-top: 30px; }
  .pricing-card { padding: 26px 22px; }
  .pricing-description { min-height: 0; }
  .form-card { min-height: 0; padding: 27px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .dialog-content { padding: 42px 23px 26px; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; width: calc(100% - 20px); padding: 20px 16px; }
  .cookie-actions { flex-direction: column-reverse; }
  .cookie-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
