/* === RESET & BASE === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7FAFC;
  color: #1d2939;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  text-decoration: none;
  color: #19497A;
  transition: color .2s;
}
strong, b {
  font-weight: bold;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  color: #19497A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 32px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  line-height: 1.2;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, .text-section p {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #394867;
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
blockquote {
  font-size: 1.125rem;
  color: #19497A;
  font-style: italic;
  margin-bottom: 12px;
  background: #F3F6FA;
  border-left: 6px solid #FFC48E;
  padding: 12px 18px;
  border-radius: 10px 20px 20px 10px;
}

/* === CONTAINERS & SECTIONS === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(234,174,108,0.10);
}

.section.cta {
  background: #FFF8F2;
  border-radius: 28px;
  box-shadow: 0 6px 24px -4px rgba(234,174,108,0.09);
  text-align: center;
}

/* === HEADER === */
header {
  width: 100%;
  background: #FFF8F2;
  box-shadow: 0 2px 12px 0 rgba(234,174,108,0.08);
  padding: 0;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
}
header img[alt="Domowa Inteligencja"] {
  height: 38px;
  width: auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #19497A;
  opacity: 0.9;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  font-weight: 600;
  letter-spacing: 0.03em;
}
header nav a:hover,
header nav a:focus {
  background: #FFF1E4;
  color: #C97A03;
}
.cta-primary {
  display: inline-block;
  background: #FFB356;
  color: #19497A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 32px;
  border-radius: 26px;
  box-shadow: 0 2px 8px 0 rgba(255,151,45,0.13);
  letter-spacing: 0.015em;
  outline: 0;
  border: none;
  margin-left: 24px;
  margin-bottom: 0;
  cursor: pointer;
  transition: background .2s, color .2s, transform .18s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FFC48E;
  color: #c58119;
  transform: scale(1.045);
}
.cta-link {
  display: inline-block;
  color: #C97A03;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: transparent;
  font-weight: 600;
  letter-spacing: .01em;
  border-bottom: 2px solid #FFC48E;
  padding: 4px 2px 4px 1px;
  border-radius: 7px;
  transition: color .17s, border .14s;
}
.cta-link:hover, .cta-link:focus {
  color: #19497A;
  border-bottom: 2px solid #19497A;
}

.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 26px;
  top: 22px;
  font-size: 2rem;
  background: #FFB356;
  color: #19497A;
  border: none;
  border-radius: 50%;
  padding: 10px 13px;
  cursor: pointer;
  z-index: 202;
  box-shadow: 0 1px 8px 0 rgba(255,179,86,0.13);
  transition: background .2s, color .2s, box-shadow .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFC48E;
  color: #C97A03;
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,245,229,0.98);
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.77,0,.18,1);
  z-index: 205;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 38px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  font-size: 2.1rem;
  color: #C97A03;
  border: none;
  padding: 18px 28px 6px 28px;
  cursor: pointer;
  align-self: flex-end;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #19497A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 12px 26px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  color: #19497A;
  opacity: 0.96;
  padding: 14px 1px 13px 8px;
  border-radius: 10px;
  background: none;
  width: 100%;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background .18s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFEEE1;
  color: #C97A03;
}

@media (max-width: 1050px) {
  header .container nav, header .container .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Hide mobile menu toggle on desktop */
@media (min-width: 1051px) {
  .mobile-menu { display: none !important; }
}

/* === HERO === */
.hero {
  background: linear-gradient(97deg, #FFF8F2 75%, #FFEEE1 100%);
  border-radius: 0 0 38px 38px;
  box-shadow: 0 18px 40px -20px #ffc48e4d;
  margin-bottom: 32px;
  padding: 60px 0 50px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .content-wrapper {
  align-items: center;
  justify-content: center;
}


/* === FEATURE GRID (flexbox only) === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin: 32px 0 12px 0;
}
.feature-grid > div {
  background: #FFFAF4;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(234,174,108,0.07);
  padding: 24px 18px 20px 18px;
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform .15s, box-shadow .13s;
}
.feature-grid > div:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 22px 0 rgba(234,174,108,0.12);
}
.feature-grid img {
  margin-bottom: 8px;
  height: 38px;
  width: 38px;
  border-radius: 12px;
  background: #FFF4DF;
  padding: 8px;
}

/* === TESTIMONIALS === */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #FFF4DF;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(255,179,86,0.06);
  padding: 20px 30px 18px 26px;
  margin-bottom: 20px;
  margin-top: 14px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #C97A03;
  font-family: 'Montserrat';
  margin-top: 6px;
  font-weight: 600;
}

.ratings-summary {
  margin-top: 30px;
  color: #19497A;
  font-family: 'Montserrat';
  font-size: 1.12rem;
  font-weight: 600;
  background: #F3F6FA;
  padding: 14px 24px;
  border-radius: 14px;
  border-left: 4px solid #FFB356;
  letter-spacing: 0.01em;
}

/* === CARDS & CARD CONTAINER === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 2px 10px 0 rgba(234,174,108,0.1);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

/* === CONTENT GRID — FLEX ONLY === */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* === TEXT + IMAGE SECTION === */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* === FEATURE ITEM === */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF8F2;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(234,174,108,0.07);
  padding: 28px 22px 20px 22px;
}

/* === BUTTONS === */
button, .button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 25px;
  border: none;
  background: #FFB356;
  color: #19497A;
  font-weight: 700;
  padding: 13px 32px;
  margin-bottom: 0;
  cursor: pointer;
  box-shadow: 0 1px 7px 0 rgba(255,151,45,0.12);
  transition: background .2s, color .2s, transform .15s;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #FFC48E;
  color: #c58119;
  transform: scale(1.04);
}

.secondary-contact-info {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  color: #19497A;
  font-family: 'Montserrat';
  font-weight: 600;
}
.secondary-contact-info img {
  height: 22px; width: 22px; border-radius: 7px;
}

/* === TABLES (for pricing) === */
.pricing-table {
  width: 100%;
  margin: 32px 0 32px 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 3px 16px 0 #FFC48E11;
  border-collapse: separate;
  background: #FFF8F2;
}
.pricing-table th, .pricing-table td {
  font-family: 'Montserrat';
  font-size: 1.03rem;
  padding: 12px 10px;
  text-align: left;
  color: #19497A;
}
.pricing-table th {
  background: #FFEEE1;
}
.pricing-table tr:not(:last-child) td {
  border-bottom: 1px solid #FFF1E4;
}
.pricing-table tr:nth-child(even) td {
  background: #FFF5E2;
}

/* === FAQ & STATS === */
.faq-brief {
  background: #FFF8F2;
  border-radius: 14px;
  padding: 18px 20px 10px 20px;
  margin-top: 28px;
  font-size: 1rem;
  color: #19497A;
}
.stats-list {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}
.stats-list li {
  font-size: 1.1rem;
  color: #19497A;
  font-family: 'Montserrat';
  margin-bottom: 12px;
}
.stats-list strong {
  color: #C97A03;
  font-size: 1.14em;
}

/* === CONTACT DATA LIST === */
.contact-data-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-data-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.06rem;
  color: #19497A;
  background: #FFF8F2;
  border-radius: 12px;
  padding: 10px 16px;
}
.contact-data-list img {
  height: 25px;
  width: 25px;
  background: #FFE8C5;
  border-radius: 50%;
  padding: 4px;
}

.map-embed {
  margin-top: 18px;
  background: #F3F6FA;
  border-radius: 14px;
  padding: 28px; min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C97A03;
  font-size: 1.13rem;
}

/* === DOCUMENTATION DOWNLOAD === */
.documentation-download {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 24px;
  background: #FFEEE1;
  border-radius: 14px;
  padding: 10px 16px;
  color: #19497A;
  font-weight: 500;
  font-family: 'Montserrat';
}
.documentation-download img {
  width: 28px; height: 28px;
  background: #FFC48E;
  border-radius: 8px;
  padding: 5px;
}

/* === SUPPORT CONTACT === */
.support-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.hotline-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #19497A;
  font-family: 'Montserrat';
}
.hotline-info img {
  width: 22px; height: 22px; border-radius: 7px;
}

/* === FOOTER === */
footer {
  width: 100%;
  background: #FFF8F2;
  border-top: 1px solid #FFEEE1;
  margin-top: 80px;
  box-shadow: 0 -2px 12px 0 rgba(255,179,86,0.05);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 26px 20px 26px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #19497A;
  font-size: 1rem;
  opacity: 0.88;
  transition: color .17s;
}
footer nav a:hover, footer nav a:focus {
  color: #C97A03;
}
footer img[alt="Domowa Inteligencja"] {
  height: 30px;
  margin-bottom: 14px;
}
footer img[alt="Domowa Inteligencja"] {
  height: 36px;
}
footer img[alt="Domowa Inteligencja"] {
  margin-bottom: 0;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #6E7687;
  font-size: 0.98rem;
  margin-top: 7px;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 4000;
  background: #FFF8F2;
  border-top: 3px solid #FFC48E;
  box-shadow: 0 -2px 14px 0 #FFC48E19;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px 18px 24px;
  font-size: 1rem;
  color: #19497A;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieFadeIn .85s cubic-bezier(.55,0,.18,1);
}
@keyframes cookieFadeIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  max-width: 640px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
}
.cookie-banner button, .cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 25px;
  border: none;
  background: #FFB356;
  color: #19497A;
  font-weight: 700;
  padding: 9px 22px;
  box-shadow: 0 1px 7px 0 rgba(255,151,45,0.13);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFC48E;
  color: #c58119;
}
.cookie-banner .cookie-btn-settings {
  background: #FFEEE1;
  color: #C97A03;
}
.cookie-banner .cookie-btn-settings:hover, .cookie-banner .cookie-btn-settings:focus {
  background: #FFC48E;
  color: #19497A;
}

/* === COOKIE MODAL === */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 4010;
  background: rgba(60,44,24,0.45);
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-width: 100vw;
  animation: modalFadeIn .29s cubic-bezier(.7,0,.18,1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #FFF8F2;
  border-radius: 22px;
  box-shadow: 0 12px 40px 0 #FFC48E65;
  padding: 40px 34px 24px 40px;
  max-width: 445px;
  width: 95vw;
  margin: 28px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  position: relative;
  animation: modalContentIn .42s cubic-bezier(.55,0,.18,1);
}
@keyframes modalContentIn {
  from { transform: translateY(45px) scale(.93); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal .cookie-close-modal {
  position: absolute;
  top: 17px; right: 27px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #C97A03;
  cursor: pointer;
  z-index: 2;
  transition: color .15s;
}
.cookie-modal .cookie-close-modal:hover, .cookie-modal .cookie-close-modal:focus {
  color: #19497A;
}
.cookie-modal h2 {
  margin-bottom: 4px;
  font-size: 1.4rem;
  color: #19497A;
  font-family: 'Montserrat';
}
.cookie-modal ul {
  list-style: none;
}
.cookie-modal ul li {
  margin-bottom: 6px;
  font-size: 1rem;
  color: #394867;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  cursor: pointer;
  font-family: 'Roboto';
  color: #19497A;
}
.cookie-modal .cookie-toggle {
  width: 40px;
  height: 22px;
  border-radius: 15px;
  background: #FFEEE1;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: background .19s;
}
.cookie-modal .cookie-toggle input {
  display: none;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFB356;
  position: absolute;
  left: 1px; top: 1px;
  transition: left .18s, background .19s;
}
.cookie-modal .cookie-toggle input:checked + span:before {
  left: 19px;
  background: #19497A;
}
.cookie-modal .cookie-legend {
  background: #fffaee;
  color: #c58119;
  font-size: .96rem;
  border-radius: 8px;
  padding: 5px 11px 5px 10px;
  margin-bottom: 4px;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 18px;
  width: 100%;
  justify-content: flex-end;
}

/* === CONFIRMATION === */
.confirmation-message {
  background: #FEF7EA;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(255,179,86,0.09);
  padding: 34px 32px 30px 32px;
  margin-top: 24px;
  text-align: center;
}
.next-steps ul {
  padding: 0 0 0 18px;
}

/* === RESPONSIVE RULES === */
@media (max-width: 900px) {
  .container, .content-wrapper {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .feature-grid {
    gap: 18px;
  }
  .card-container {
    gap: 18px;
  }
  .content-grid {
    gap: 12px;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 38px;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-grid > div {
    min-width: 0;
    max-width: 100%;
  }
  .container, .content-wrapper {
    padding-left: 5px;
    padding-right: 5px;
  }
  .section {
    padding: 24px 3px 24px 3px;
    margin-bottom: 30px;
  }
  .testimonial-card {
    padding: 16px 15px 14px 12px;
  }
  .footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 26px 7px 16px 7px;
  }
  .cta .container, .cta .content-wrapper, .section.cta .content-wrapper {
    align-items: center;
    text-align: center;
    padding: 12px 5px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .content-grid {
    flex-direction: column;
    gap: 8px;
  }
  .contact-data-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 18px 6px 16px 6px;
    font-size: 0.99rem;
    align-items: flex-start;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 10px;
  }
  .cookie-modal .cookie-modal-content {
    padding: 19px 9px 18px 16px;
    max-width: 99vw;
  }
  header .container {
    padding: 10px 0;
    gap: 9px;
  }
}
@media (max-width: 510px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.08rem; }
  .section {
    padding: 12px 0 11px 0;
    margin-bottom: 17px;
    border-radius: 17px;
  }
  .confirmation-message { padding: 13px 5px 13px 5px; }
  .cookie-modal .cookie-modal-content { padding: 10px 3px 13px 8px; }
}

/* === UTILITY CLASSES === */
.bg-primary { background: #19497A; color: #fff; }
.bg-accent { background: #F7FAFC; color: #19497A; }
.text-primary { color: #19497A; }
.text-secondary { color: #C97A03; }
.text-center { text-align: center !important; }
.flex { display: flex; }
.flex-col { flex-direction: column !important; }

/* === INTERACTIONS === */
.cta-primary, .button, button, .cta-link, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-banner .cookie-btn, .cookie-modal .cookie-close-modal {
  transition: background .18s, color .17s, transform .14s, box-shadow .15s;
}

::-webkit-selection { background: #FFC48E44; }
::selection         { background: #FFC48E44; }

/* === SCROLLBAR (friendly style) === */
body, html {
  scrollbar-color: #FFC48E #FFFAF4;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 8px;
  background: #FFFAF4;
}
::-webkit-scrollbar-thumb {
  background: #FFC48E;
  border-radius: 12px;
}

/* === ANIMATIONS === */
.card, .feature-grid > div, .testimonial-card, .cta-primary, .cta-link, .button {
  transition: box-shadow .18s, transform .13s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px 0 #ffc48e29;
}

/* === FORBIDDEN PROPERTIES === */
/* No display:grid or columns used anywhere */