/* --------------------------------------------
   CSS RESET + BASELINE NORMALIZATION
--------------------------------------------- */
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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-size: 16px;
  background: #fff;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #174568;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #f32069;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px 0;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  color: #174568;
}
h2 {
  font-size: 2rem;
  color: #174568;
}
h3 {
  font-size: 1.5rem;
  color: #222;
  font-weight: 700;
}
p {
  font-size: 1.125rem;
  margin-bottom: 1em;
}
strong {
  font-weight: 700;
}


/* --------------------------------------------
   BRAND VIBRANT ENERGETIC BASE PALETTE
--------------------------------------------- */
:root {
  --primary: #174568;
  --secondary: #F9B72E;
  --accent: #F4F4F4;
  --electric-purple: #6C63FF;
  --hot-pink: #F32069;
  --teal: #13DEC9;
  --white: #fff;
  --dark: #18191A;
  --shadow: rgba(10,30,60,0.10);
}


/* --------------------------------------------
   LAYOUT CONTAINERS & SECTIONS
--------------------------------------------- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 24px;
  box-shadow: 0 2px 20px var(--shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 25px 8px;
    margin-bottom: 32px;
    border-radius: 16px;
  }
}

/* FLEX PATTERN – GAPS & GRIDS */
.card-container, .features, .content-grid, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px 24px 22px;
  min-width: 240px;
  flex: 1 1 260px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(243,32,105,0.13), 0 2px 12px var(--shadow);
  transform: translateY(-4px) scale(1.025);
}

.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) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 12px 8px 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 8px var(--shadow);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px 28px 22px 28px;
  border-radius: 20px;
  box-shadow: 0 2px 18px var(--shadow);
  margin-bottom: 20px;
  color: #18191A;
}
.testimonial-card p {
  font-size: 1.25rem;
  font-style: italic;
  color: #174568;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: #174568;
  font-size: 1.1rem;
}
.testimonial-card span {
  color: var(--hot-pink);
  font-size: 1.15rem;
  margin-left: 12px;
  font-weight: bold;
}
.testimonial-card div {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 16px 10px;
  }
}

/* --------------------------------------------
   HEADER & NAVIGATION (DESKTOP/MOBILE)
--------------------------------------------- */
header {
  width: 100%;
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(23,69,104,0.09);
  position: sticky;
  top: 0;
  z-index: 109;
}
header .container {
  display: flex;
  align-items: center;
  height: 72px;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}
header img {
  height: 40px;
  width: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.desktop-nav a {
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.13rem;
  padding: 6px 15px;
  border-radius: 6px;
  transition: background 0.18s, color 0.14s;
  position: relative;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.desktop-nav .cta-primary {
  margin-left: 14px;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 800;
  border-radius: 12px;
  padding: 9px 24px;
  font-size: 1.18rem;
  letter-spacing: 0.03em;
  transition: background 0.18s, color 0.12s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(249,183,46,0.13);
}
.desktop-nav .cta-primary:hover, .desktop-nav .cta-primary:focus {
  background: var(--hot-pink);
  color: #fff;
  transform: scale(1.045);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  font-size: 2rem;
  line-height: 1;
  border: none;
  background: transparent;
  color: var(--secondary);
  display: none;
  cursor: pointer;
  z-index: 121;
  margin-left: 18px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #fff;
  background: var(--hot-pink);
}
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(102deg, var(--primary) 86%, var(--secondary) 100%);
  box-shadow: 0 6px 36px 0 rgba(10,30,60,.16);
  z-index: 200;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.77,.06,.26,1.02), opacity 0.2s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 221;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--hot-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 48px;
}
.mobile-nav a {
  width: 90vw;
  max-width: 340px;
  color: #fff;
  font-size: 1.35rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 10px;
  text-align: center;
  padding: 16px 0;
  background: none;
  transition: background 0.15s, color 0.17s, transform 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.04);
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none!important;
  } 
}


/* --------------------------------------------
   HERO & PROMINENT CTA STYLES
--------------------------------------------- */
.hero,
.services-hero,
.workflow-intro,
.pricing-hero,
.testimonial-hero,
.contact-form,
.thank-you {
  background: linear-gradient(92deg, var(--secondary) 0%, var(--hot-pink) 100%);
  color: var(--primary);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 36px var(--shadow);
  margin-bottom: 40px;
}
.hero .content-wrapper,
.services-hero .content-wrapper,
.workflow-intro .content-wrapper,
.pricing-hero .content-wrapper,
.testimonial-hero .content-wrapper,
.contact-form .content-wrapper,
.thank-you .content-wrapper {
  gap: 24px;
  align-items: flex-start;
  padding-top: 36px;
  padding-bottom: 36px;
}

.hero h1, .services-hero h1, .workflow-intro h1,
.pricing-hero h1, .testimonial-hero h1, .contact-form h1, .thank-you h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--primary);
  text-shadow: 0 2px 0 #fff, 0 3px 8px rgba(243, 32, 105,.08);
  margin-bottom: 8px;
}

.hero p, .services-hero p, .workflow-intro p, .pricing-hero p {
  font-size: 1.3rem;
  font-weight: 500;
}

.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  border-radius: 16px;
  padding: 14px 36px;
  margin-top: 8px;
  font-size: 1.18rem;
  text-align: center;
  letter-spacing: .05em;
  background: var(--hot-pink);
  color: #fff;
  border: none;
  box-shadow: 0 2px 16px rgba(249,183,46,0.08);
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow 0.15s, transform 0.12s;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.07);
  box-shadow: 0 2px 24px var(--shadow);
}
.cta-secondary {
  background: var(--secondary);
  color: #174568;
  font-weight: 900;
  padding: 12px 32px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--primary);
  color: #fff;
}

/* --------------------------------------------
   SECTIONS & FEATURE LISTS
--------------------------------------------- */
.features ul, .about-history ul, .service-offerings ul, .service-benefits ul, .contact-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 24px;
}
.features ul li, .about-history ul li, .service-offerings ul li, .service-benefits ul li, .contact-info ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 16px 18px 16px 14px;
  border-radius: 11px;
  min-width: 220px;
  box-shadow: 0 1px 8px var(--shadow);
  font-size: 1.11rem;
  color: #174568;
  font-weight: 600;
  margin-bottom: 10px;
}
.features ul li img, .service-offerings ul li img, .service-benefits ul li img, .contact-info ul li img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 1px 4px #fff;
  padding: 5px;
  margin-right: 10px;
  flex-shrink: 0;
}
.about-history ul li {
  background: #f6f7f9;
  color: #555;
  font-weight: 500;
}

@media (max-width: 900px) {
  .features ul, .service-offerings ul, .service-benefits ul, .about-history ul, .contact-info ul {
    flex-direction: column;
    gap: 16px;
  }
}

/* --------------------------------------------
   TABLES (PRICING)
--------------------------------------------- */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--shadow);
  margin-bottom: 32px;
  overflow: hidden;
  font-size: 1.1rem;
}
thead {
  background: var(--secondary);
  color: var(--primary);
}
th, td {
  padding: 16px 12px;
  text-align: left;
}
th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
td {
  border-bottom: 1px solid #f4f4f4;
}
tbody tr:last-child td {
  border-bottom: none;
}
caption {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 6px;
  background: #fff;
}

/* --------------------------------------------
   FOOTER
--------------------------------------------- */
footer {
  background: var(--primary);
  color: #FFF;
  padding: 40px 0 20px 0;
  margin-top: 60px;
  box-shadow: 0 -2px 16px var(--shadow);
  border-radius: 32px 32px 0 0;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--secondary);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--hot-pink);
}
.footer-contact {
  color: #FFF;
  font-size: 1rem;
  opacity: .87;
}
footer small {
  color: #fff;
  opacity: .82;
  font-size: 0.95rem;
  margin-top: 8px;
}

@media (max-width: 600px) {
  footer {
    padding: 24px 0 16px;
    border-radius: 24px 24px 0 0;
    margin-top: 20px;
  }
  .footer-nav {
    gap: 8px;
    font-size: 0.98rem;
  }
}

/* --------------------------------------------
   CLIENT LOGOS
--------------------------------------------- */
.client-logos {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  margin: 18px 0 2px 0;
}
.client-logos li {
  background: #fff;
  border: 2.5px solid var(--secondary);
  border-radius: 16px;
  padding: 8px 12px;
  box-shadow: 0 1px 6px var(--shadow);
  display: flex;
  align-items: center;
}
.client-logos img {
  width: 64px;
  height: 32px;
  object-fit: contain;
}
@media (max-width: 600px) {
  .client-logos {
    flex-wrap: wrap;
    gap: 12px;
  }
  .client-logos img {
    width: 44px;
    height: 22px;
  }
}

/* --------------------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
--------------------------------------------- */
.card, .testimonial-card, .feature-item, .cta-primary, .cta-secondary, .desktop-nav a, .mobile-nav a {
  transition: box-shadow 0.19s, transform 0.18s, background 0.16s, color 0.15s;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 7px 24px var(--hot-pink), 0 2px 12px var(--shadow);
  transform: scale(1.032);
}

input[type="text"], input[type="email"], select, textarea {
  border: 2px solid var(--accent);
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1rem;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 18px;
  transition: border 0.14s, box-shadow 0.11s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--hot-pink);
  box-shadow: 0 0 0 2px var(--secondary);
  outline: none;
}

/* --------------------------------------------
   RESPONSIVE MEDIA & TYPOGRAPHY
--------------------------------------------- */
@media (max-width: 1200px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
}
@media (max-width: 768px) {
  .container { max-width: 100%; padding: 0 8px; }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; margin-bottom: 10px; }
  h3 { font-size: 1.06rem; }
  p { font-size: 1rem; }
  .card, .testimonial-card {
    padding: 16px 6px 16px 12px;
  }
}

/* --------------------------------------------
   COOKIE CONSENT BANNER & MODAL
--------------------------------------------- */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(93deg, var(--primary) 92%, var(--hot-pink) 100%);
  color: #fff;
  z-index: 400;
  font-size: 1.09rem;
  box-shadow: 0 -1px 18px 0 var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 10vw 18px 10vw;
  gap: 12px;
  animation: cookieFadeIn 0.8s cubic-bezier(.65,.05,.33,1.09) 0.05s backwards;
}
@keyframes cookieFadeIn{
  from{ opacity:0; transform:translateY(22px); }
  to{ opacity:1; transform:translateY(0); }
}
#cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-btn {
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  padding: 10px 22px;
  margin-right: 2px;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(20,20,20,.048);
  transition: background 0.12s, color 0.13s, transform 0.13s;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--hot-pink);
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--hot-pink);
  border: 2px solid var(--hot-pink);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--hot-pink);
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width: 600px) {
  #cookie-banner {
    padding: 18px 4vw 12px 4vw;
    font-size: 0.97rem;
  }
  #cookie-banner .cookie-actions {
    gap: 8px;
  }
}

/* COOKIE PREFERENCES MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,.28);
  z-index: 600;
  align-items: center;
  justify-content: center;
}
#cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 28px var(--shadow);
  padding: 36px 30px 22px 30px;
  max-width: 99vw;
  width: 390px;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: popin .4s cubic-bezier(.55,.07,.55,1.6) 0.09s backwards;
}
@keyframes popin {
  from { opacity:0; transform:scale(.92); }
  to { opacity:1; transform:scale(1); }
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 600;
  color: #174568;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 22px;
  height: 22px;
  margin-right: 6px;
}
.cookie-essential {
  opacity: 0.62;
}
.cookie-actions-modal {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 10px;
  justify-content: flex-end;
}
@media (max-width: 400px) {
  .cookie-modal-content {
    padding: 16px 4vw 16px 4vw;
    min-width: 0;
    width: 100vw;
  }
}

/* --------------------------------------------
   UTILITIES
--------------------------------------------- */
.mb-0 { margin-bottom: 0!important; }
.mt-0 { margin-top: 0!important; }
.pb-0 { padding-bottom: 0!important; }
.pt-0 { padding-top: 0!important; }
.text-center { text-align: center!important; }
.mt-section { margin-top: 60px!important; }

/* Visually hidden */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --------------------------------------------
   CUSTOM SCROLLBAR (Optional for vibrancy)
--------------------------------------------- */
::-webkit-scrollbar {
  width: 7px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 6px;
}

/* --------------------------------------------
   END - ALL FLEXBOX! NO GRID! NO COLUMNS!
--------------------------------------------- */
