/* CSS RESET & 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,
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: #F4F6F8;
  color: #23282d;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button,
input {
  font-family: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}

/* BRAND FONTS + IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;700&display=swap');

:root {
  --primary: #124269;
  --secondary: #28A49A;
  --accent: #F4F6F8;
  --yellow: #FFD952;
  --magenta: #EA4C89;
  --blue: #3498F3;
  --green: #90e066;
  --white: #fff;
  --black: #23282d;
  --shadow: 0 4px 16px 0 rgba(30, 30, 110, 0.08);
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius: 10px;
  --transition: all 0.25s cubic-bezier(.83,.03,.28,.83);
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

/*******************
 * HEADER & NAVIGATION
 *******************/
header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(20,66,105,0.06);
  position: sticky;
  z-index: 40;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  padding: 8px 6px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.main-nav a:not(.cta-btn):hover {
  background: var(--secondary);
  color: var(--white);
}
.main-nav .cta-btn {
  margin-left: 14px;
}
.logo {
  margin-right: 20px;
}

/**********************
 * CTA BUTTONS & LINKS
 **********************/
.cta-btn {
  background: var(--yellow);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  border: none;
  border-radius: 28px;
  padding: 12px 34px;
  margin: 0;
  box-shadow: 0 2px 8px rgba(255,217,82,0.15);
  cursor: pointer;
  transition: var(--transition), box-shadow 0.2s;
  letter-spacing: 0.03em;
  outline: none;
  display: inline-block;
  position: relative;
  z-index: 1;
  animation: bounceBtn 1.8s infinite ease-in-out alternate;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 4px 22px 0 rgba(234,76,137,0.14);
  transform: scale(1.09) rotate(-2deg);
}
.secondary-link {
  color: var(--magenta);
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
  display: inline-block;
  border-bottom: 2px dashed var(--magenta);
  transition: var(--transition);
}
.secondary-link:hover {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

/********************
* BURGER MOBILE MENU
********************/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 110;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--white);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 98vw;
  background: var(--primary);
  color: var(--white);
  z-index: 1000;
  transform: translateX(-105vw);
  transition: transform 0.35s cubic-bezier(.83,.03,.28,.83);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--yellow);
  font-size: 40px;
  position: absolute;
  top: 18px;
  right: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  z-index: 1010;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--magenta);
}
.mobile-nav {
  margin-top: 90px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: var(--yellow);
  font-size: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  background: none;
  padding: 8px 0;
  border-radius: 0;
  transition: color 0.18s;
}
.mobile-nav a:hover {
  color: var(--green);
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 970px) {
  .main-nav a { font-size: 15px; }
}
@media (max-width: 860px) {
  .main-nav { gap: 10px; }
  .cta-btn { padding: 10px 22px; font-size: 15px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding: 14px 16px;
  }
}

/********************
* SECTIONS & LAYOUTS
********************/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
}


/************************
* HERO/INTRO SECTIONS
************************/
.hero, .thank-you-section, .blog-intro {
  background: linear-gradient(92deg, #F4F6F8 60%, #FFD952 100%);
  border-radius: 0 0 80px 0;
  position: relative;
  padding: 50px 0 64px 0;
}
.hero h1, .thank-you-section h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s both;
}
.hero p,
.thank-you-section p,
.section p {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 16px;
  font-family: 'Roboto', Arial, sans-serif;
}

/********************
* FEATURES/TEAM/GRID
********************/
.features, .service-list, .team-intros, .feature-grid, .service-cards, .ebook-list, .post-previews, .package-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature-grid > div, .service-cards > div, .team-intros > div, .service-list > div, .ebook-list > div, .post-previews > div, .package-overview > div {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 27px 24px 30px 24px;
  min-width: 245px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.21s, transform 0.21s;
  z-index: 1;
}
.feature-grid > div:hover, .service-cards > div:hover, .team-intros > div:hover, .ebook-list > div:hover, .service-list > div:hover, .post-previews > div:hover, .package-overview > div:hover {
  box-shadow: 0 4px 32px 0 rgba(40,164,154,0.13), 0 1.5px 10px #FFD95233;
  transform: translateY(-8px) scale(1.04) rotate(-1deg);
}
.feature-grid img, .service-cards img, .ebook-list img, .service-list img, .team-intros img {
  height: 52px;
  width: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 3px 10px rgba(40,164,154,0.07));
}
.features h3,
.feature-grid h3,
.service-cards h3,
.team-intros h3,
.ebook-list h2,
.service-list h2,
.post-previews h3,
.package-overview h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  letter-spacing: -0.5px;
}

/********************
* TESTIMONIALS/CARDS
********************/
.testimonials, .client-success-stories {
  padding: 28px 0 44px 0;
  background: var(--accent);
}
.testimonial-slider, .client-success-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 17px 0 rgba(20,66,105,0.11);
  padding: 26px 25px;
  margin-bottom: 20px;
  min-width: 270px;
  max-width: 340px;
  border-left: 8px solid var(--secondary);
  position: relative;
  z-index: 1;
  animation: cardAppear 0.7s both;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card p {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}
.testimonial-author {
  color: var(--magenta);
  font-size: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.testimonial-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 44px 0 rgba(234, 76, 137, 0.09);
  transform: scale(1.04) rotate(1.5deg);
}

/********************
* TYPOGRAPHY
********************/
h1, .content-wrapper > h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.1;
  letter-spacing: -1px;
}
h2, .content-wrapper > h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.15;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 7px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  color: var(--primary);
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--black);
}
strong {
  font-weight: 700;
  color: var(--magenta);
}

/********************
* FAQ / ACCORDION
********************/
.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.faq-accordion > div {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  min-width: 270px;
  padding: 22px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.faq-accordion > div:hover {
  box-shadow: 0 4px 22px 0 rgba(40,164,154,0.14);
}

/********************
* PROCESS / BENEFITS
********************/
.process-steps, .benefits ul, .why-us ul, .guide-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.process-steps li, .benefits ul li, .why-us ul li, .guide-list li {
  position: relative;
  padding-left: 25px;
  font-size: 16px;
  color: var(--primary);
}
.process-steps li:before, .benefits ul li:before, .why-us ul li:before, .guide-list li:before {
  content: '\2022';
  color: var(--secondary);
  position: absolute;
  left: 8px;
  font-size: 21px;
  top: 1px;
}
.process-diagram {
  text-align: center;
  margin: 24px 0 0 0;
}

/********************
* TEXT / IMAGE SECTIONS
********************/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/********************
* CARDS / CARD-CONTAINER
********************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.card:hover {
  box-shadow: 0 4px 32px 0 rgba(40,164,154,0.13);
  transform: rotate(-1deg) scale(1.04);
}

/********************
* LAYOUT FLEX UTILS
********************/
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/********************
* FOOTER
********************/
footer {
  background: var(--primary);
  padding: 42px 0 20px 0;
  border-radius: 56px 56px 0 0;
  color: var(--white);
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-brand img {
  height: 44px;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-direction: column;
}
.footer-nav a {
  color: var(--yellow);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  transition: color 0.18s;
}
.footer-nav a:hover { color: var(--green); }
.footer-contact {
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--white);
}
.footer-contact img {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
}
.footer-contact a {
  color: var(--yellow);
  font-weight: 700;
  margin-left: 2px;
  word-break: break-word;
}
.footer-newsletter {
  background: var(--yellow);
  color: var(--primary);
  border-radius: var(--radius-md);
  padding: 16px 30px 14px 22px;
  font-size: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  flex: 2 1 350px;
  box-shadow: 0 4px 18px 0 #FFD95220;
  min-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-newsletter .cta-btn {
  margin-top: 10px;
  background: var(--magenta);
  color: var(--white);
  box-shadow: none;
  animation: none;
  font-size: 15px;
}
.footer-newsletter .cta-btn:hover { background: var(--primary); color: var(--yellow); }
.footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-socials a img {
  width: 30px;
  height: 30px;
  filter: brightness(2) contrast(1.45) drop-shadow(0 2px 7px #fff6);
  transition: filter 0.17s, transform 0.15s;
}
.footer-socials a:hover img {
  filter: brightness(1.3) contrast(2) drop-shadow(0 4px 14px var(--magenta));
  transform: scale(1.12) rotate(-5deg);
}
.footer-copyright {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #c4c9ce;
  opacity: 0.8;
  margin-top: 14px;
}

/********************
* RESPONSIVE DESIGN
********************/
@media (max-width: 1130px) {
  .container { max-width: 1003px; }
  .features, .feature-grid, .service-cards, .service-list, .team-intros, .ebook-list, .post-previews, .package-overview, .faq-accordion, .testimonial-slider, .client-success-stories, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 820px; }
  footer .container { gap: 18px; padding: 0 14px; }
}
@media (max-width: 768px) {
  .container { max-width: 99vw; padding: 0 8px; }
  .features, .feature-grid, .service-cards, .team-intros, .service-list, .ebook-list, .post-previews, .package-overview, .faq-accordion, .testimonial-slider, .client-success-stories, .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .feature-grid > div,
  .package-overview > div,
  .service-cards > div,
  .team-intros > div,
  .service-list > div,
  .ebook-list > div,
  .post-previews > div {
    max-width: 100%;
    min-width: 180px;
    flex: 1 1 99vw;
    padding: 19px 12px 20px 15px;
  }
  .section,
  .hero {
    padding: 27px 0 35px 0;
  }
  .content-wrapper h1 {
    font-size: 26px;
  }
  h2 { font-size: 20px; }
  .cta-btn { padding: 10px 18px; font-size: 15px; }
  footer {
    flex-direction: column;
    padding: 24px 0 14px 0;
    border-radius: 28px 28px 0 0;
  }
}
@media (max-width: 500px) {
  .container { padding: 0 2vw; }
  .footer-newsletter { font-size: 14px; padding: 12px 8px 10px 8px; }
}

/********************
* ANIMATIONS
********************/
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(44px); }
  to   { opacity: 1; transform: none; }
}
@keyframes bounceBtn {
  0% { transform: scale(1) rotate(0.5deg); }
  50% { transform: scale(1.11) rotate(-1.5deg); }
  100% { transform: scale(1) rotate(1deg); }
}
@keyframes cardAppear {
  from { opacity: 0; transform: scale(0.92) translateY(30px); }
  to   { opacity: 1; transform: none; }
}

/********************
* MICROINTERACTIONS
********************/
button,
a {
  transition: var(--transition);
}

/*******************************************
* COOKIE CONSENT BANNER & COOKIE SETTINGS MODAL
*******************************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: var(--yellow);
  box-shadow: 0 -3px 16px #0002;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 16px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2600;
  animation: fadeInUp 0.5s cubic-bezier(.83,.03,.28,.83);
}
.cookie-banner p {
  color: var(--primary);
  font-size: 15px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 15px;
  border: none;
  padding: 8px 22px;
  border-radius: 22px;
  cursor: pointer;
  transition: var(--transition);
  margin: 0 2px;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: var(--white);
}
.cookie-btn.accept:hover {
  background: var(--primary);
}
.cookie-btn.reject {
  background: var(--magenta);
  color: var(--white);
}
.cookie-btn.reject:hover {
  background: var(--primary);
}
.cookie-btn.settings {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
.cookie-btn.settings:hover {
  background: var(--yellow);
  color: var(--magenta);
  border-color: var(--magenta);
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 13px 4vw 14px 4vw;
  }
  .cookie-banner .cookie-btns {
    flex-direction: column;
    gap: 8px;
  }
}

.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(18,66,105,0.28);
  z-index: 2800;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -63%) scale(0.97);
  background: var(--white);
  min-width: 310px;
  max-width: 97vw;
  width: 400px;
  box-shadow: 0 11px 44px 7px rgba(20,66,105,0.22);
  border-radius: var(--radius-lg);
  z-index: 2999;
  padding: 34px 30px 21px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInUp 0.37s cubic-bezier(.55,0,.1,1.1);
}
.cookie-modal h2 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 9px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  margin-bottom: 11px;
}
.cookie-modal label {
  font-size: 15px;
  color: var(--primary);
}
.cookie-modal .cookie-switch {
  width: 42px;
  height: 25px;
  background: var(--accent);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
}
.cookie-modal .cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 3px; left: 4px;
  width: 20px; height: 18px;
  background: var(--yellow);
  border-radius: 50%;
  transition: background 0.21s, left 0.21s;
  box-shadow: 0 1px 3px #23282d22;
}
.cookie-modal .cookie-switch input:checked + .slider {
  background: var(--secondary);
  left: 18px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal .cookie-btn {
  min-width: 103px;
}
.cookie-modal .close-cookie-modal {
  background: none;
  border: none;
  color: var(--magenta);
  font-size: 27px;
  position: absolute;
  right: 19px; top: 18px;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .close-cookie-modal:hover {
  color: var(--primary);
}
@media (max-width: 500px) {
  .cookie-modal {
    width: 97vw;
    padding: 26px 5vw 19px 6vw;
  }
}

/*****************
 * MISC COMPONENTS
 *****************/
.package-overview > div strong {
  color: var(--magenta);
  margin-top: 6px;
  display: block;
  font-size: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.process-diagram img {
  margin: 0 auto;
  height: 80px;
}

/**********************
 * TEXT SELECTION COLOR
 **********************/
::selection {
  background: var(--yellow);
  color: var(--primary);
}

/********************
* PRINT FRIENDLY
********************/
@media print {
  .mobile-menu, .mobile-menu-toggle, .cta-btn, .footer-newsletter, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
  header,.main-nav,footer,.footer-nav { color:#000; background: #fff !important; box-shadow: none !important; }
}
