/* =============================
   CSS RESET & BASELINE NORMALIZE
   ============================= */
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, 
main, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F2F2F2;
  color: #245372;
  min-height: 100vh;
  font-size: 16px;
  position: relative;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: #245372;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #EEC643;
  text-decoration: underline;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #245372;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.5rem;
  color: #245372;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  font-weight: 600;
}
p {
  margin-bottom: 16px;
  color: #245372;
}
strong {
  font-weight: 700;
  color: #2D7690;
}

blockquote {
  color: #245372;
  padding-left: 20px;
  border-left: 5px solid #EEC643;
  font-style: italic;
  background: #fff8df;
  border-radius: 12px 16px 16px 12px;
  margin-bottom: 12px;
}
cite {
  color: #245372;
  font-style: normal;
  font-size: 1rem;
}

/* =============================
   BRAND COLORS & VARIABLES
   ============================= */
:root {
  --color-primary: #245372;
  --color-secondary: #F2F2F2;
  --color-accent: #EEC643;
  --color-bg-light: #fff;
  --color-danger: #ed516b;
  --color-success: #7be495;
  --shadow-soft: 0 4px 16px rgba(36,83,114,0.06);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

/* =====================
   UTILITY CLASSES
   ===================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  box-shadow: var(--shadow-soft);
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section {
    padding: 24px 0;
    margin-bottom: 40px;
  }
  .content-wrapper {
    padding: 24px 10px;
  }
}

/* =============================
   NAVIGATION & HEADER
   ============================= */
header {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(36,83,114,0.07);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1rem;
  position: relative;
  padding: 2px 0;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--color-accent);
  transition: width 0.28s;
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.cta-btn {
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.12rem;
  padding: 13px 32px;
  border-radius: 99px;
  box-shadow: 0 6px 24px rgba(238,198,67,0.13);
  border: none;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.18s, transform 0.14s;
  outline: none;
  display: inline-block;
  margin-left: 16px;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFD51E;
  color: var(--color-primary);
  box-shadow: 0 8px 28px rgba(238,198,67,0.33);
  transform: translateY(-2px) scale(1.025) rotate(-2deg);
}
.mini-cta {
  font-size: 1rem;
  padding: 10px 24px;
  margin-left: 0;
  margin-top: 20px;
}

/* Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: var(--color-primary);
  margin-left: 18px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(36,83,114,0.07);
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ffd51e;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  .cta-btn {
    padding: 10px 22px;
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    z-index: 2005;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2010;
  background: var(--color-primary);
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.45,1.3,.5,1);
  box-shadow: 0 8px 46px rgba(36,83,114,0.18);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin: 20px 22px 0 0;
  cursor: pointer;
  box-shadow: 0 0px 9px rgba(36,83,114,0.04);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 20px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #fff;
  padding: 6px 0;
  border-bottom: 2px dotted #ffd51e;
  transition: color 0.18s, border 0.2s, background 0.20s;
  border-radius: 3px;
  width: 100%;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: rgba(238,198,67,0.15);
  color: #ffe680;
  border-bottom: 2px solid #ffd51e;
}

@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none!important;
  }
}

/* ============================
   HERO SECTION & SUBHEADLINE
   ============================ */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  background: linear-gradient(125deg, #ffe680 80%, #eec643 100%);
  border-radius: 20px;
  padding: 54px 24px;
  box-shadow: 0 10px 34px rgba(36,83,114,0.09);
  margin-bottom: 24px;
  animation: heroBounceIn 0.8s cubic-bezier(0.55,1.5,0.2,0.9);
}
@keyframes heroBounceIn {
  0% { opacity: 0; transform: translateY(-30px) scale(0.98); }
  60% { opacity: 1; transform: translateY(9px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1.0); }
}
.subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.28rem;
  color: #245372;
  margin-bottom: 12px;
  margin-top: -10px;
  font-weight: 500;
  background: rgba(238,198,67,0.13);
  padding: 7px 14px;
  border-radius: 12px;
}

/* =====================
   FEATURES SECTION
   ===================== */
.features-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 24px;
  animation: sectionFadeIn 0.5s 0.15s backwards;
}
@keyframes sectionFadeIn {
  from { opacity: 0; filter: blur(10px); }
  to   { opacity: 1; filter: blur(0); }
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
}
.feature-grid li {
  background: #fffde2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  color: #245372;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(36,83,114,0.07);
  border: 2px solid #ffe680;
  min-width: 220px;
  transition: border 0.18s, box-shadow 0.16s, background 0.16s;
  font-weight: 600;
}
.feature-grid li img {
  width: 36px;
  height: 36px;
  filter: none;
  border-radius: 50%;
  background: #fff9c8;
  box-shadow: 0 1px 5px rgba(36,83,114,0.05);
  margin-right: 8px;
}
.feature-grid li:hover, .feature-grid li:focus {
  border: 2px solid #245372;
  background: #fffbe7;
  box-shadow: 0 5px 16px rgba(36,83,114,0.14);
}

/* =========================
   USP-LIST
   ========================= */
.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin: 22px 0 0 0;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #2D7690;
  font-weight: 600;
  background: none;
}
.usp-list li {
  padding: 10px 18px;
  background: #fffde2;
  border-radius: 88px 18px 40px 18px;
  border: 1.5px dashed #EEC643;
  box-shadow: 0 2px 10px rgba(238,198,67,0.04);
  margin-bottom: 0px;
}

/* =====================
   ABOUT & TEXT BLOCKS
   ===================== */
.about-section, .about-snippet-section, .team-section, .legal-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  margin-top: 8px;
}
.text-section ul, .text-section ol {
  margin-left: 0;
  margin-bottom: 16px;
}
.text-section ul li, .usp-list li {
  margin-bottom: 8px;
  line-height: 1.6;
  padding-left: 0!important;
}
.text-section ul, .usp-list {
  padding-left: 15px;
}
.text-section a {
  color: #ed516b;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}
.text-section a:hover, .text-section a:focus {
  color: #245372;
}

/* =====================
   SERVICES LIST/CARDS
   ===================== */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 22px;
}
.service-item {
  flex: 1 1 275px;
  min-width: 260px;
  max-width: 330px;
  background: #fffefa;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 14px rgba(36,83,114,0.07);
  border: 2.5px solid #ffe680;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 16px 16px 16px;
  transition: border 0.2s, box-shadow 0.18s, transform 0.15s, background 0.18s;
  position: relative;
  z-index: 1;
}
.service-item img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: #fff9c8;
  box-shadow: 0 1px 6px rgba(238,198,67,0.08);
}
.service-item h3 {
  color: #245372;
  font-size: 1.16rem;
  margin-bottom: 8px;
  margin-top: 0;
}
.service-item p {
  color: #245372;
  font-size: 1rem;
}
.service-item:hover, .service-item:focus-within {
  border: 2.5px solid #EEC643;
  background: #ffeed6;
  box-shadow: 0 7px 22px rgba(238,198,67,0.09);
  transform: translateY(-5px) scale(1.04) rotate(-1.5deg);
}

/* =====================
   CARD CONTAINERS
   ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffefa;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 14px rgba(36,83,114,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 16px;
}

/* =====================
   PRICING TABLE & FAQ
   ===================== */
.pricing-table {
  margin-bottom: 28px;
  overflow-x: auto;
}
.pricing-table table {
  border-collapse: collapse;
  width: 100%;
  background: #fffde2;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(238,198,67,0.08);
  font-size: 1.07rem;
}
.pricing-table th, .pricing-table td {
  padding: 14px 18px;
  border-bottom: 2px solid #ffe680;
  text-align: left;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.pricing-table th {
  background: #ffe680;
  color: #245372;
}
.pricing-table td {
  color: #245372;
  font-weight: 500;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.transparent-pricing-note {
  margin-top: 10px;
  font-size: 1rem;
  color: #2D7690;
  background: #ffedaf;
  border-radius: 12px;
  padding: 10px 14px;
}

.pricing-faq-section ul li {
  margin-bottom: 13px;
  font-size: 1.01rem;
}

@media (max-width: 900px) {
  .services-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .services-list {
    flex-direction: column;
    align-items: stretch;
  }
  .service-item {
    max-width: 100%;
    min-width: unset;
  }
}

/* =====================
   TESTIMONIALS & REFERENCES
   ===================== */
.testimonials-section, .testimonials-preview-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px 20px 16px;
  background: #fffdfa;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 22px rgba(36,83,114,0.11);
  border: 2px solid #ffe680;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  position: relative;
  color: #245372;
  animation: floatIn 0.8s cubic-bezier(0.6,0.8,0.4,1); /* playful */
}
@keyframes floatIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.testimonial-card blockquote {
  color: #245372;
  font-size: 1.09rem;
  background: none;
  border-radius: 8px;
  margin: 0;
  border-left: 5px solid #EEC643;
  padding-left: 20px;
}
.testimonial-card cite {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #3880a2;
  font-size: 1.05rem;
  margin-left: 10px;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #2D7690;
  background: #ffedaf;
  border-radius: 9px 12px 25px 12px;
  padding: 6px 14px;
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-left: 10px;
}
.testimonial-meta span {
  margin-left: 10px;
  color: #EEC643;
  font-weight: 700;
  font-size: 1.1em;
}

/* =====================
   REFERENCE PROJECTS
   ===================== */
.reference-projects-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* =====================
   WORKFLOW / FAQ SHORT
   ===================== */
.workflow-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 24px;
}
.workflow-section ol {
  padding-left: 26px;
  margin-bottom: 16px;
}
.workflow-section ol li {
  margin-bottom: 11px;
  font-size: 1.05rem;
  color: #245372;
}
.faq-short {
  background: #fff6c8;
  border-radius: 16px 10px 28px 22px;
  padding: 18px 20px 10px 18px;
  box-shadow: 0 2px 14px rgba(238,198,67,0.07);
}
.faq-short h3 {
  margin-top: 0;
  margin-bottom: 10px;
}
.faq-short ul {
  margin-bottom: 0;
  margin-left: 16px;
}
.faq-short ul li {
  margin-bottom: 8px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* =====================
   CALL TO ACTION
   ===================== */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  background: linear-gradient(125deg,#ffd51e 75%,#eec643 100%);
  border-radius: 20px;
  box-shadow: 0 5px 24px rgba(238,198,67,0.08);
  margin-bottom: 24px;
  animation: ctaPopIn 0.85s cubic-bezier(0.2,1,0,1);
}
@keyframes ctaPopIn {
  0% { transform: scale(0.94) translateY(25px); opacity: 0; }
  65% { transform: scale(1.04) translateY(-5px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
.cta-section ul {
  margin-bottom: 0;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--color-primary);
  color: #fff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 -2px 12px rgba(36,83,114,0.07);
  margin-top: 48px;
  padding-bottom: 12px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-radius: 0 0 24px 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.22s;
  opacity: 0.82;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #EEC643;
  opacity: 1;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  color: #fff;
}
.footer-brand img {
  width: 37px;
  height: auto;
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #245372;
  color: #fff;
  z-index: 5002;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 22px 18px;
  box-shadow: 0 -2px 18px rgba(36,83,114,0.18);
  animation: slideBannerIn 0.34s 0.08s cubic-bezier(.7,2,0.25,1) backwards;
  font-size: 1rem;
}
@keyframes slideBannerIn {
  from { transform: translateY(120px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  max-width: 480px;
  line-height: 1.4;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 18px;
  padding: 9px 24px;
  transition: background 0.15s, color 0.13s, box-shadow 0.16s;
}
.cookie-btn.accept-all {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 0px 11px rgba(238,198,67,0.11);
}
.cookie-btn.accept-all:hover, .cookie-btn.accept-all:focus {
  background: #ffd51e;
}
.cookie-btn.reject-all {
  background: #ed516b;
  color: #fff;
}
.cookie-btn.reject-all:hover {
  background: #c31936;
}
.cookie-btn.settings {
  background: #fffefa;
  color: #245372;
  border: 1.5px solid #EEC643;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ffe680;
  color: #245372;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 20px 8px 28px 8px;
  }
  .cookie-banner__actions {
    flex-wrap: wrap;
    gap: 11px;
    justify-content: center;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5020;
  background: rgba(36,83,114,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.18s cubic-bezier(.72,2,0.24,1);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal__content {
  background: #fffde2;
  color: #245372;
  padding: 36px 32px 22px;
  border-radius: 32px 24px 40px 28px;
  box-shadow: 0 9px 32px rgba(36,83,114,0.24);
  min-width: 320px;
  max-width: 98vw;
  animation: modalPopIn 0.19s cubic-bezier(0.55,1.2,0.5,1.1);
  position: relative;
}
@keyframes modalPopIn {
  from { transform: translateY(60px) scale(0.8); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 18px;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.28rem;
  font-weight: bold;
}
.cookie-modal__close {
  background: #ed516b;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.29rem;
  cursor: pointer;
  transition: background 0.07s;
  margin-left: 10px;
}
.cookie-modal__close:focus, .cookie-modal__close:hover {
  background: #c31936;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 9px rgba(238,198,67,0.10);
  padding: 12px 16px;
  font-size: 1.03rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #EEC643;
  width: 20px;
  height: 20px;
  margin-right: 0;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
}
.cookie-category .always-on {
  font-size: 0.97em;
  color: #71cc64;
  font-weight: 800;
  margin-left: 4px;
  text-shadow: 0 0px 2px #fffbe6;
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 1080px) {
  .container {
    max-width: 97vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    padding: 20px 8px;
  }
}
@media (max-width: 768px) {
  h1 {font-size:2rem;}
  h2 {font-size:1.43rem;}
  .footer-wrapper {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    align-items: center;
  }
  .features-section {
    gap: 16px;
  }
  .usp-list {
    gap: 12px;
    justify-content: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 17px 11px 14px 11px;
  }
}

/* =============================
   FLEXBOX PATTERNS
   ============================= */
.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;
}
@media (max-width: 768px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================
   SPACING & ALIGNMENT RULES
   ============================= */
.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; }

/* =============================
   FUN FONTS & PLAYFUL ACCENTS
   ============================= */
body, html {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: var(--color-secondary);
  color: var(--color-primary);
}

h1, h2, h3, .cta-btn, .main-nav a, .footer-nav a, .mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
h1, h2, h3 {
  letter-spacing: -0.011em;
}

.cta-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-variant: small-caps;
  text-transform: none;
}

/* Micro-interactions (card wiggle on hover, button bounce) */
.card, .service-item, .feature-grid li, .testimonial-card, .cta-btn, .cookie-btn {
  transition: box-shadow 0.15s, transform 0.17s, background 0.12s, border 0.15s;
}
.card:hover, .service-item:hover, .feature-grid li:hover {
  transform: rotate(-2.5deg) scale(1.02);
  box-shadow: 0 4px 24px rgba(238,198,67,0.17);
  border-color: #EEC643;
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.98) rotate(-3deg);
}

/* Input Elements (generic) */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1.5px solid #EEC643;
  background: #fffbe1;
  margin-bottom: 12px;
  color: #245372;
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.5px solid #245372;
}
button:focus-visible {
  outline: 2px dashed #ed516b;
  outline-offset: 2px;
}

/* =============================
   MISC: THANK YOU & SUCCESS
   ============================= */
.thank-you-section .cta-btn {
  margin-top: 18px;
}

/* =============================
   SCROLLBAR STYLING FOR FUN!
   ============================= */
::-webkit-scrollbar {
  width: 12px;
  background: #ffe680;
}
::-webkit-scrollbar-thumb {
  background: #EEC643;
  border-radius: 10px;
}

/* =============================
   END
   ============================= */
