/* ------------------------------
 RESET & BASE STYLES
------------------------------- */
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,
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;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F9F9F6;
  color: #283650;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit; text-decoration: none; transition: color 0.2s;
  cursor: pointer;
}
img {
  max-width: 100%; display: block;
}
table {
  border-collapse: collapse; width: 100%;
}
th, td {
  padding: 12px 8px;
  border-bottom: 1px solid #E0E6EF;
}

/* ------------------------------
 BRAND & PALETTE
------------------------------- */
:root {
  --color-primary: #283650;
  --color-secondary: #F9F9F6;
  --color-accent: #46B2C8;
  --color-yellow: #FDF26E;
  --color-green: #27C46D;
  --color-orange: #FFAC4A;
  --color-red: #EF576B;
  --color-dark: #283650;
  --color-light: #FFFFFF;
  --shadow1: 0 2px 16px 0 rgba(70,178,200,0.08);
  --shadow2: 0 4px 40px 0 rgba(40,54,80,0.08);
  --radius: 22px;
  --radius-sm: 12px;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* Fallback for custom properties */
body { background: var(--color-secondary, #F9F9F6); color: var(--color-dark, #283650); }

/* ------------------------------
 TYPOGRAPHY
------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--color-primary);
}
h1 { font-size: 2.25rem; margin-bottom: 18px; line-height: 1.13; }
h2 { font-size: 1.6rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }

p, li, td, th {
  font-size: 1rem; font-family: var(--font-body);
  color: var(--color-primary);
}
p { margin-bottom: 16px; }
strong { font-weight: 700; }

.cta-btn, button, .main-nav a, .mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Fun/playful font for key playful accents */
.usp-list strong, .cta-btn, .star-ratings {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ------------------------------
 MAIN LAYOUT
------------------------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex; flex-direction: column;
}

/* Pattern: Section Spacing */
.section {
  margin-bottom: 60px; padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow1);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow1);
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow2);
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}

.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: 20px;
  background: var(--color-yellow);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow1);
  position: relative;
  min-width: 0;
  color: #222;
}
.testimonial-card.featured {
  background: var(--color-green);
  color: #fff;
}
.testimonial-card .star-ratings {
  color: var(--color-orange);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow1);
  padding: 24px 18px 20px 18px;
  transition: box-shadow 0.25s, transform 0.18s;
  width: calc(50% - 12px);
  min-width: 220px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.feature-item:hover {
  box-shadow: var(--shadow2);
  transform: scale(1.045) rotate(1.5deg) translateY(-4px);
  background: var(--color-accent);
  color: #fff;
}
.feature-item img {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-yellow);
  padding: 7px;
  box-shadow: 0 2px 8px 0 rgba(70,178,200,0.16);
  transition: background 0.15s;
}

/* USP List */
.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 32px 0 0 0;
}
.usp-list li {
  background: var(--color-accent);
  color: #fff;
  padding: 13px 17px 11px 13px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0;
  gap: 10px;
  box-shadow: var(--shadow1);
  font-size: 1rem;
}
.usp-list img {
  width: 22px; min-width: 22px;
}

.team-intro {
  margin: 20px 0 12px 0;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--font-display);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  box-shadow: var(--shadow1);
}

/* Service List (services.html) */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  box-shadow: var(--shadow1);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  min-width: 220px;
  width: calc(50% - 12px);
  transition: box-shadow 0.22s, transform 0.18s;
  margin-bottom: 10px;
}
.service-item:hover {
  box-shadow: var(--shadow2);
  background: var(--color-yellow);
  transform: scale(1.03) rotate(-2deg) translateY(-2px);
}
.service-item img {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-accent);
  padding: 6px;
  box-shadow: 0 2px 8px 0 rgba(70,178,200,0.13);
}
.service-item .service-price {
  margin-top: 8px;
  font-weight: 700;
  color: var(--color-green);
  font-size: 1.05rem;
}

.info-note {
  background: var(--color-accent);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  margin: 22px 0 0 0;
  font-size: 1rem;
  font-family: var(--font-display);
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  margin-top: 20px;
  font-size: 1rem;
  box-shadow: var(--shadow1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}
.pricing-table th {
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
}
.pricing-table tr:nth-child(even) {
  background: #F0FAFE;
}

.text-section {
  max-width: 700px; margin: 0 auto;
}

.map-placeholder {
  width: 100%;
  background: #E0E6EF;
  color: #888;
  font-size: 1.02rem;
  text-align: center;
  padding: 45px 0;
  border-radius: var(--radius-sm);
  margin-top: 16px;
}

/* ------------------------------
 HEADER & NAV
------------------------------- */
header {
  width: 100%;
  background: var(--color-secondary);
  box-shadow: 0 2px 12px 0 rgba(40,54,80,0.025);
  position: relative;
  z-index: 101;
  margin-bottom: 10px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 18px 18px 0;
}
.header-inner > a img { height: 38px; max-width: 136px; }

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin: 0 8px 0 26px;
}
.main-nav a {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

.cta-btn {
  background: var(--color-accent);
  color: #fff;
  padding: 10px 26px;
  font-size: 1.09rem;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 10px 0 rgba(70,178,200,0.19);
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, transform 0.13s;
  font-family: var(--font-display);
  font-weight: 700;
  margin-left: 12px;
  letter-spacing: 0.03em;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-orange);
  color: var(--color-primary);
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 6px 24px rgba(70,178,200,0.10);
}

/* ------------------------------
 MOBILE NAVIGATION
------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 19px; top: 18px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 2rem;
  z-index: 120;
  transition: background 0.15s, box-shadow 0.15s, color 0.15s;
  box-shadow: 0 2px 6px 0 rgba(70,178,200,0.12);
  cursor: pointer;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-orange);
  color: var(--color-primary);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-accent);
  box-shadow: 0 4px 40px rgba(40,54,80,0.23);
  z-index: 299;
  padding: 32px 24px 24px 24px;
  transform: translateX(-130vw);
  transition: transform 0.34s cubic-bezier(.97,.12,.21,.86);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  position: absolute;
  right: 25px; top: 22px;
  z-index: 322;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--color-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 44px;
  gap: 27px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.19rem;
  padding: 11px 0 7px 3px;
  border-radius: 0 20px 20px 0;
  font-weight: 700;
  position: relative;
  transition: background 0.14s, color 0.15s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-yellow);
  color: var(--color-primary);
}

/* Hide normal nav and show burger on mobile */
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 990px) {
  .header-inner { padding-right: 80px; }
}
@media (max-width: 620px) {
  .header-inner { padding-right: 20px; }
}

/* ------------------------------
 HERO & CTA
------------------------------- */
.hero {
  background: var(--color-yellow);
  padding: 38px 0 54px 0;
  margin-bottom: 0;
  position: relative;
  box-shadow: 0 6px 48px 0 rgba(70,178,200,0.06);
  border-radius: 0 0 60px 60px;
  overflow: visible;
  animation: heroSwing 1.6s cubic-bezier(.65, -0.09, .25, 1.1) 0.05s 1;
}
@keyframes heroSwing {
  0% { transform: translateY(-36px) skewY(6deg); opacity: 0; }
  70% { transform: translateY(8px) skewY(-5deg); }
  90% { transform: translateY(-2px) skewY(1.5deg); }
  100% { transform: translateY(0) skewY(0); opacity: 1; }
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
  gap: 10px;
}
.hero h1 { font-size: 2.3rem; color: var(--color-primary); }
.hero p { font-size: 1.16rem; margin-bottom: 17px; }

.cta-section {
  background: var(--color-green);
  color: #fff;
  margin-bottom: 60px;
  border-radius: var(--radius);
  box-shadow: var(--shadow1);
  padding: 36px 0 34px 0;
  display: flex; align-items: center;
  animation: ctaPop 0.9s cubic-bezier(.8,1.3,.47,1.01);
}
@keyframes ctaPop {
  0% { transform: scale(0.94); opacity: 0; }
  60% { transform: scale(1.03);}
  100% { transform: scale(1); opacity: 1;}
}
.cta-section .content-wrapper { align-items: center; text-align: center; }
.cta-section h2 { color: #fff; margin-bottom: 16px; }

/* ------------------------------
 TESTIMONIALS
------------------------------- */
.testimonials-section {
  margin-bottom: 60px;
  padding: 32px 0 0 0;
  background: transparent;
}
.testimonials-section h2 {
  margin-bottom: 30px;
  font-size: 1.5rem;
  color: var(--color-primary);
}
.testimonial-card {
  box-shadow: var(--shadow1);
  background: var(--color-yellow);
  color: #222;
  border-radius: var(--radius-sm);
  margin-bottom: 26px;
  animation: testimonialIn 1.2s cubic-bezier(.71,.15,.24,1.03);
}
@keyframes testimonialIn {
  from { opacity: 0; transform: translateY(20px) scale(0.93) skewY(-2deg); }
  to   { opacity: 1; transform: none; }
}
.testimonial-card p {
  margin-bottom: 9px;
  font-size: 1.14rem;
  font-family: var(--font-display);
  color: inherit;
}
.testimonial-card span {
  font-size: 1rem; color: inherit;
}
/* High contrast for readable testimonials */
.testimonial-card { color: #222; }
.testimonial-card.featured { background: var(--color-green); color: #fff; }

/* ------------------------------
 FOOTER
------------------------------- */
footer {
  background: var(--color-accent);
  color: #fff;
  padding: 32px 0 0 0;
  font-size: 1rem;
  border-radius: 48px 48px 0 0;
  box-shadow: 0 -2px 32px rgba(40,54,80,0.08);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px 10px 18px;
}
.footer-brand {
  display: flex; flex-direction: row; align-items: center; gap: 13px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.13rem;
}
.footer-brand img {
  width: 38px;
}
.footer-contact, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.99rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 9px;
  font-family: var(--font-display);
}
.footer-nav a {
  color: #fff;
  text-decoration: underline dashed;
  font-size: 1.01rem;
  opacity: 0.96;
  transition: color 0.13s, opacity 0.12s;
}
.footer-nav a:hover {
  color: var(--color-yellow);
  opacity: 1;
}
.footer-social {
  display: flex; flex-direction: row; gap: 10px; margin-top: 7px;
}
.footer-social img {
  width: 32px; height: 32px;
  filter: drop-shadow(0 2px 6px rgba(40,54,80,0.08));
  transition: filter 0.18s, transform 0.16s;
  cursor: pointer;
}
.footer-social img:hover {
  filter: drop-shadow(0 4px 18px rgba(255,255,255,0.12));
  transform: scale(1.15) rotate(-9deg);
}
.footer-copyright {
  width: 100%;
  text-align: center;
  font-size: 0.97rem;
  color: #eafffa;
  opacity: 0.80;
  padding: 18px 0 2px 0;
}

/* ------------------------------
 COOKIE BANNER + MODAL
------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fffbe9;
  color: #302c03;
  box-shadow: 0 -4px 32px rgba(40,54,80,0.16);
  z-index: 999;
  padding: 18px 14px 14px 14px;
  display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 22px;
  font-size: 1rem;
  animation: cookieSlideIn 1.17s cubic-bezier(0.52, 1.26, 0.3, 0.84);
}
@keyframes cookieSlideIn {
  from { transform: translateY(110%); opacity: 0; }
  80% { transform: translateY(-5%); }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-text {
  max-width: 420px;
  font-size: 1.01rem;
  margin-right: 10px;
}
.cookie-banner button {
  appearance: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 18px;
  margin: 0 4px 0 0;
  padding: 10px 20px;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s;
  box-shadow: 0 2px 6px 0 rgba(40,54,80,0.09);
  cursor: pointer;
}
.cookie-banner .cookie-accept {
  background: var(--color-green);
  color: #fff;
}
.cookie-banner .cookie-reject {
  background: var(--color-red);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: var(--color-accent);
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  filter: brightness(1.13) contrast(1.05);
  box-shadow: 0 4px 16px 0 rgba(40,54,80,0.13);
  transform: scale(1.04);
}

.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(1.05);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 44px rgba(40,54,80,0.19);
  padding: 34px 26px 24px 26px;
  min-width: 296px;
  max-width: 96vw; width: 400px;
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s, transform 0.23s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1.0);
}
.cookie-modal h3 {
  color: var(--color-primary);
  margin-bottom: 11px;
}
.cookie-modal ul {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px;
}
.cookie-modal li {
  display: flex; flex-direction: row; align-items: center; gap: 12px;
  font-size: 1rem;
}
.cookie-modal label {
  font-size: 1rem;
}
.cookie-modal .cookie-modal-btns {
  display: flex; flex-direction: row; gap: 14px; margin-top: 13px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  background: var(--color-red);
  color: #fff;
}
.cookie-modal .modal-accept {
  background: var(--color-green);
  color: #fff;
}
.cookie-modal .modal-save {
  background: var(--color-accent);
  color: #fff;
}

/* Checkbox style for cookie modal */
input[type="checkbox"].cookie-toggle {
  width: 18px; height: 18px;
  accent-color: var(--color-accent);
  margin-right: 4px;
}
input[type="checkbox"][disabled] {
  accent-color: var(--color-green);
  opacity: 0.6;
  cursor: not-allowed;
}

/* Cookie modal overlay backdrop */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(40,54,80, 0.25);
  backdrop-filter: blur(3px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ------------------------------
 FORMS (if future forms appear)
------------------------------- */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid #E0E6EF;
  padding: 11px 15px;
  margin-bottom: 16px;
  outline: none;
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-accent);
}

button[disabled], .cta-btn[disabled] {
  opacity: 0.6;
  filter: grayscale(0.5);
  cursor: not-allowed;
}

/* ------------------------------
 RESPONSIVE ADAPTIONS (MOBILE-FIRST)
------------------------------- */
@media (max-width: 900px) {
  .container { max-width: 98vw; padding: 0 10px; }
  .feature-grid, .service-list { gap: 16px; }
  .footer-inner { flex-direction: column; gap: 24px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.63rem; }
  h2 { font-size: 1.3rem; }
  .feature-item, .service-item { width: 100%; min-width: 0; }
  .feature-grid, .service-list { flex-direction: column; gap: 20px; }
  .content-grid, .card-container { flex-direction: column; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 13px; }
  .hero { padding: 30px 0 32px 0; border-radius: 0 0 29px 29px; }
  .cta-section { padding: 19px 0 18px; border-radius: var(--radius-sm); margin-bottom: 21px; }
  .cta-section h2 { font-size: 1.05rem; }
  .footer-inner { padding: 0 7px; }
}
@media (max-width: 495px) {
  .hero .content-wrapper { padding: 0 2px; }
  .cta-btn { min-width: 60vw; padding: 9px 11vw; font-size: 1rem; }
}
@media (max-width: 430px) {
  .container { padding: 0 3px; }
}

/* Other little tweaks for playful dynamic */
h1, h2, .cta-btn {
  text-shadow: 0 2px 6px rgba(70,178,200,0.06);
}
.card, .feature-item, .service-item {
  animation: popCardIn 1.13s cubic-bezier(.37,.9,.47,1.39);
}
@keyframes popCardIn {
  from { opacity: 0; transform: scale(0.92) rotate(-4deg); }
  to   { opacity: 1; transform: none; }
}

/* Micro-interactions for playful touch */
.feature-item:hover img, .service-item:hover img {
  background: var(--color-yellow);
  animation: swing 0.5s linear;
}
@keyframes swing {
  20% { transform: rotate(12deg); }
  40% { transform: rotate(-18deg); }
  60% { transform: rotate(12deg); }
  80% { transform: rotate(-5deg); }
  100% { transform: none; }
}

/* Table responsiveness on mobile */
@media (max-width: 600px) {
  .pricing-table, .pricing-table thead, .pricing-table tbody, .pricing-table tr, .pricing-table th, .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table th {
    text-align: left;
    background: var(--color-accent);
    color: #fff;
  }
  .pricing-table tr { margin-bottom: 14px; border-bottom: 3px solid #E0E6EF; }
  .pricing-table td {
    padding: 8px 10px;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid #e0e7ef;
  }
}

/* ------------------------------
 MISC HELPERS
------------------------------- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* No grid, no columns, only flex layouts as per requirement */

