/* ==== 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, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F7F5;
  color: #182D4E;
  min-height: 100vh;
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
}
*, *:before, *:after { box-sizing: inherit; }
img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style-type: none;
  padding-left: 0;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}
:focus {
  outline: 2px solid #B9C53E;
  outline-offset: 2px;
}

/* ==== BRAND COLORS ==== */
:root {
  --color-primary: #20476A;
  --color-secondary: #B9C53E;
  --color-accent: #F7F7F5;
  --color-dark: #182D4E;
  --color-light: #FFF;
  --color-contrast: #262626;
  --color-accent-bright: #F2E344;
  --color-error: #C0392B;
}

/* ==== TYPOGRAPHY ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 3px 9px rgba(185,197,62,0.05), 0 1px 0 #fff;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--color-secondary);
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol, address, li, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-contrast);
  margin-bottom: 10px;
}
strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(32,71,106,0.06);
  transition: box-shadow 0.2s;
}
.section:hover { box-shadow: 0 6px 26px rgba(185,197,62,0.16); }

.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 16px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ==== HEADER ==== */
header {
  width: 100%;
  background: var(--color-light);
  box-shadow: 0 2px 10px rgba(32,71,106,0.06);
  border-bottom: 3.5px solid var(--color-secondary);
  position: sticky;
  top: 0;
  z-index: 1050;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  gap: 24px;
}
header a img {
  height: 38px; width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px #B9C53E40);
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 14px;
  border-radius: 8px;
  color: var(--color-primary);
  background: none;
  transition: background 0.18s, color 0.19s;
}
nav a:hover, nav a:focus {
  background: var(--color-secondary);
  color: var(--color-dark);
}
nav .cta-primary {
  background: var(--color-primary);
  color: var(--color-light) !important;
  margin-left: 9px;
  font-weight: 700;
  border-radius: 18px;
  padding: 10px 24px;
  box-shadow: 0 2px 10px rgba(32,71,106,0.10);
  transition: background 0.18s, color 0.16s, box-shadow 0.17s;
}
nav .cta-primary:hover, nav .cta-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary) !important;
  box-shadow: 0 5px 18px rgba(185, 197, 62, 0.23);
}

/* Hamburger button */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  background: var(--color-secondary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.14s;
  box-shadow: 0 2px 8px rgba(32,71,106,0.09);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  z-index: 2000;
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.69,0,0.59,1.25);
  box-shadow: 6px 0 36px rgba(32,71,106,0.18);
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 18px 0 0;
  font-size: 2.2rem;
  color: var(--color-secondary);
  background: var(--color-accent);
  border-radius: 50%;
  padding: 3px 16px 7px 16px;
  box-shadow: 0 2px 9px rgba(185,197,62,0.13);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin: 33px 0 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.17rem;
  color: var(--color-accent);
  padding: 12px 0 2px 7px;
  transition: color 0.19s, background 0.17s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: rgba(185,197,62,0.13);
}
.mobile-nav .cta-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  margin-top: 16px;
  padding: 9px 23px;
  border-radius: 33px;
  box-shadow: 0 4px 16px rgba(185,197,62, 0.16);
  font-size: 1.08rem;
}

/* ==== HERO & SPECIAL CTAs ==== */
.hero, .calculator-cta, .contact-teaser {
  background: linear-gradient(100deg, var(--color-secondary) 0%, var(--color-accent) 58%, var(--color-primary) 100%);
  background-repeat: no-repeat;
  border-radius: 33px;
  margin-bottom: 60px;
  padding: 42px 20px 60px 20px;
  box-shadow: 0 6px 45px rgba(32,71,106,0.10), 0 1px 0 #EDD;
  color: var(--color-primary);
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.44rem;
  letter-spacing: 0.03em;
  text-shadow: 0 4px 22px #b9c53e1b, 0 1px 0 #fff;
}
.hero p {
  font-size: 1.16rem;
  color: var(--color-contrast);
  margin-bottom: 18px;
}
.content-wrapper > .cta-primary, .content-wrapper > .cta-secondary {
  margin-top: 16px;
}
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border: none;
  padding: 13px 34px;
  margin-top: 13px;
  border-radius: 24px;
  background: var(--color-primary);
  color: var(--color-light) !important;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(32,71,106,0.10);
  transition: background 0.19s, color 0.13s, box-shadow 0.16s, transform 0.11s;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary) !important;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(185,197,62,0.16);
}
.cta-secondary {
  background: var(--color-secondary);
  color: var(--color-primary) !important;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(185,197,62,0.10);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-primary);
  color: var(--color-secondary) !important;
}

/* ==== FLEX LAYOUT PATTERNS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 230px;
  background: var(--color-light);
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(32,71,106,0.08);
  padding: 24px 20px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 10px 30px rgba(185,197,62,0.11);
  transform: translateY(-2px) scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 28px;
  background: #F7F7F5;
  border-left: 7px solid var(--color-secondary);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(32,71,106,0.09);
  color: var(--color-contrast);
  min-width: 230px;
  max-width: 630px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== FEATURE GRIDS (INDEX, OFERTA etc.) ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 24px;
  justify-content: flex-start;
  width: 100%;
}
.feature-grid > div {
  background: var(--color-accent);
  border-radius: 16px;
  box-shadow: 0 2px 9px rgba(32,71,106,0.07);
  padding: 22px 18px;
  min-width: 220px;
  flex: 1 1 230px;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.17s, transform 0.10s;
}
.feature-grid > div:hover {
  box-shadow: 0 7px 32px rgba(185,197,62,0.12);
  transform: translateY(-1.5px) scale(1.01);
}
.feature-grid img {
  height: 46px; width: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px #B9C53E55);
}

/* ==== OL Steps (Process) ==== */
ol.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 20px;
  width: 100%;
  margin-bottom: 20px;
}
ol.steps > li {
  background: var(--color-light);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(32,71,106,0.04);
  flex: 1 1 230px;
  min-width: 200px;
  padding: 18px 16px 18px 14px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
ol.steps > li img {
  height: 36px; width: auto;
  margin-bottom: 8px;
}
ol.steps > li strong {
  color: var(--color-primary);
  font-size: 1.12rem;
}

/* ==== CALCULATOR PREVIEW ==== */
.calculator-preview {
  background: var(--color-accent);
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(32,71,106,0.07);
  padding: 18px 14px;
  width: 100%;
  max-width: 400px;
}

/* ==== TEAM SECTION (ABOUT) ==== */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 18px;
  width: 100%;
}
.team-list > div {
  background: var(--color-light);
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(32,71,106,0.04);
  padding: 16px 14px;
  min-width: 180px;
  flex: 1 1 210px;
}
.team-list h3 {
  font-size: 1.13rem;
  color: var(--color-secondary);
  margin-bottom: 5px;
}

/* ==== FAQ ACCORDION ==== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.faq-accordion > div {
  background: var(--color-light);
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(32,71,106,0.09);
  padding: 14px 14px 10px 18px;
  transition: box-shadow 0.12s;
}
.faq-accordion > div:hover {
  box-shadow: 0 4px 18px rgba(185,197,62,0.10);
}
.faq-accordion h3 {
  color: var(--color-primary);
  font-size: 1.07rem;
}

.contact-prompt {
  margin-top: 13px;
  padding: 12px 8px;
  font-size: 1.01rem;
  background: #E7F0B7;
  color: var(--color-primary);
  border-radius: 10px;
  font-weight: 500;
}
.contact-prompt a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
}
.contact-prompt a:hover {
  color: var(--color-secondary);
}

/***** TESTIMONIALS *****/
.testimonials .testimonial-card {
  background: var(--color-accent);
  border-left: 6px solid var(--color-primary);
  color: var(--color-dark);
  box-shadow: 0 3px 12px rgba(32,71,106,0.11);
}
.testimonial-card p {
  font-size: 1.08rem;
  font-style: italic;
  color: var(--color-dark);
}
.testimonial-card span strong {
  color: var(--color-primary);
}
.testimonial-card img[alt*="gwiazdek"], .testimonial-card img[alt*="gwiazdki"] {
  display: inline-block;
  height: 22px;
  margin-right: 2px;
}

/***** CASE STUDIES / REALIZACJE *****/
.industry-tags {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 9px;
  font-size: 0.90em;
  padding: 2px 10px;
  margin-left: 6px;
  font-weight: 600;
}

/***** CONTACT CARDS *****/
.contact-details, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1rem;
}
.contact-details img, .footer-contact img {
  height: 18px;
  vertical-align: middle;
  margin-right: 7px;
}
.map-location {
  margin-top: 16px;
}
.map-location img {
  width: 100%;
  max-width: 230px;
  border-radius: 11px;
}

/***** FOOTER *****/
footer {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 36px 0 18px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 5px 11px 5px 0;
  text-decoration: underline;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-contact {
  font-size: 1rem;
  color: var(--color-accent);
}
footer span {
  font-size: 0.97rem;
  color: #dbe6ff;
  margin-top: 7px;
}

/* ==== LEGAL PAGES ==== */
.legal .text-section {
  background: #f5f9e5;
  border-left: 5px solid var(--color-secondary);
  border-radius: 14px;
  font-size: 1.01rem;
  padding: 18px 22px;
}

/* ==== THANK YOU PAGE ==== */
.thank-you-confirmation .content-wrapper {
  align-items: center;
  justify-content: center;
  min-height: 44vh;
}
.thank-you-confirmation h1 {
  color: var(--color-secondary);
  font-size: 2.22rem;
}

/* ==== COOKIE CONSENT ==== */
.cookie-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 58px;
  background: var(--color-light);
  border-top: 3px solid var(--color-secondary);
  box-shadow: 0 -2px 14px rgba(32,71,106,0.12);
  z-index: 5000;
  padding: 20px 32px 24px 20px;
  gap: 28px;
  animation: cookieSlideIn 0.7s cubic-bezier(.73,.09,.55,1.12);
}
@keyframes cookieSlideIn {
  from {
    transform: translateY(120%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-banner p {
  color: var(--color-contrast);
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 15px;
  border: none;
  padding: 11px 22px;
  margin-right: 7px;
  transition: background .14s, color .14s, box-shadow .15s;
}
.cookie-accept {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(185,197,62,0.13);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.cookie-reject {
  background: #eee;
  color: #444;
  border: 1.5px solid var(--color-secondary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--color-error);
  color: #FFF;
}
.cookie-settings {
  background: var(--color-primary);
  color: #fff;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-bg {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,71,106, 0.24);
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalBgIn 0.4s;
}
@keyframes modalBgIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 9px 38px rgba(32,71,106,0.18);
  max-width: 92vw;
  width: 420px;
  padding: 38px 30px 28px 30px;
  animation: modalIn 0.4s cubic-bezier(0.69,0,0.59,1.25);
}
@keyframes modalIn {
  from { transform: scale(0.66) translateY(52px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #202314;
}
.cookie-category-toggle {
  width: 50px;
  height: 26px;
  background: #ccd7ef;
  border-radius: 14px;
  position: relative;
  margin-left: 11px;
}
.cookie-category-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-category-toggle span {
  display: block;
  position: absolute;
  top: 3px; left: 5px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 6px #abc1d440;
  transition: left 0.2s cubic-bezier(.49,1.31,.8,.89), background 0.14s;
}
.cookie-category-toggle input:checked + span {
  left: 25px;
  background: var(--color-secondary);
}
.cookie-modal .cookie-desc {
  font-size: 0.97rem;
  color: #5f6a80;
  margin-bottom: 4px;
  margin-left: 4px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 21px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 10px 18px;
  border-radius: 13px;
}

/* ===== UTILITY ===== */
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.gap-2 { gap: 16px !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
  .feature-grid { gap: 20px 12px; }
}
@media (max-width: 900px) {
  .feature-grid > div,
  .card,
  .team-list > div {
    min-width: 200px;
    flex-basis: 45%;
  }
  ol.steps > li {
    min-width: 180px;
    flex-basis: 44%;
  }
  .testimonial-card {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .card-container, .feature-grid, .team-list, .footer-nav, .footer-contact {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 20px !important;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    gap: 10px;
  }
  .section, .hero, .calculator-cta, .contact-teaser {
    padding: 28px 8px 36px 8px;
    margin-bottom: 36px;
  }
  .team-list > div,
  .feature-grid > div,
  .card,
  ol.steps > li {
    min-width: 90vw;
    flex-basis: 99%;
  }
  ol.steps {
    flex-direction: column;
    gap: 14px !important;
  }
  .testimonial-card, .faq-accordion > div {
    max-width: 99vw;
    padding: 13px 10px 10px 10px;
  }
  .footer-nav, .footer-contact {
    gap: 9px;
  }
  .cookie-modal {
    padding: 28px 7px 16px 7px;
    width: 95vw;
  }
  .mobile-menu {
    padding: 0;
  }
  .mobile-nav {
    margin-left: 9vw;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px !important;
  }
}
@media (max-width: 495px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1.01rem; }
  .hero h1 { font-size: 1.5rem; }
  .footer-contact { font-size: 0.94rem; }
  .cookie-banner { padding: 8px 7px 13px 7px; }
}

/* === MICRO-INTERACTIONS === */
a, button, .cta-primary, .cta-secondary {
  transition: background 0.16s, color 0.14s, box-shadow 0.13s, transform 0.13s;
}
.card, .feature-grid > div, .testimonial-card, .faq-accordion > div {
  transition: box-shadow 0.13s, transform 0.13s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 7px 26px rgba(185,197,62,0.10);
}

/* === FORM ELEMENTS === */
input, select, textarea {
  font: inherit;
  font-size: 1rem;
  padding: 8px 11px;
  border-radius: 8px;
  border: 1.5px solid #c1c3e8;
  background: #fafcff;
  margin-bottom: 12px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-secondary);
  outline: 2px solid var(--color-secondary);
}

/***** MISCELLANEOUS ARTISTIC FLAIR *****/
.hero, .calculator-cta, .contact-teaser {
  position: relative;
  overflow-x: hidden;
}
.hero:after, .calculator-cta:after, .contact-teaser:after {
  content: '';
  position: absolute;
  top: -36px; right: -62px;
  width: 170px; height: 170px;
  background: radial-gradient(circle at 50% 50%, #B9C53E 0%, #20476A 100%);
  opacity: 0.18;
  border-radius: 60% 30% 40% 60% / 50% 60% 30% 40%;
  z-index: 0;
  pointer-events: none;
  filter: blur(1.8px);
}
.hero:before {
  content: '';
  position: absolute;
  bottom: -70px; left: -80px;
  width: 150px; height: 140px;
  background: radial-gradient(circle at 50% 50%, #20476A 0%, #B9C53E 100%);
  opacity: 0.12;
  border-radius: 50% 50% 55% 38%/58% 36% 66% 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(1.7px);
}

/* Artistic shadow for cards */
.card, .feature-grid > div, .testimonial-card {
  box-shadow: 0 4px 18px rgba(32,71,106,0.07), 0 1px 0 #EFF;
}

/***** REMOVE GRID, COLUMNS - FLEX ONLY! *****/
/* (no grid or columns properties used) */
