/* --- CSS 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,
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;
  vertical-align: baseline;
  font-size: 100%;
  font-family: inherit;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F7F5E8;
  color: #23323A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 24px;
  padding-left: 0;
}
a {
  color: #1FC380;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.87,-.41,.19,1.44);
}
a:hover, a:focus {
  color: #EB3B65;
}

/* HEADINGS */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #EB3B65, #1FC380 75%, #79A6F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 {
  font-size: 2rem;
  color: #EB3B65;
}
h3 {
  font-size: 1.25rem;
  color: #23323A;
}
h4 {
  font-size: 1.1rem;
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(35,50,58,0.08);
  padding: 32px 24px;
  transition: transform 0.2s cubic-bezier(.87,-.41,.19,1.44),
    box-shadow 0.22s cubic-bezier(.87,-.41,.19,1.44);
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(235,59,101, 0.18), 0 1.5px 4px #A3B18A44;
  z-index: 2;
}

.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;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 12px 1px #1FC38018;
  padding: 20px;
  min-width: 230px;
  margin-bottom: 20px;
  margin-right: 20px;
  max-width: 380px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 12px 0;
}
.testimonial-card p {
  font-size: 1rem;
  color: #23323A;
}
.testimonial-card footer {
  font-size: 0.95rem;
  color: #1FC380;
  font-weight: 600;
}

/* --- FEATURE GRID & ITEM --- */
.feature-grid, .service-list, .team-list, .project-overview-list, .blog-list, .blog-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  margin-top: 12px;
  margin-bottom: 16px;
}
.feature-grid li, .service-list li, .team-list li, .blog-list li, .blog-preview-list li, .project-overview-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2.5px 16px 0px rgba(31,195,128,0.07);
  padding: 28px 20px 20px 20px;
  flex: 1 1 275px;
  min-width: 230px;
  max-width: 350px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.19s;
}
.feature-grid li:hover, .service-list li:hover, .team-list li:hover, .blog-list li:hover, .blog-preview-list li:hover, .project-overview-list li:hover {
  box-shadow: 0 8px 24px rgba(235,59,101, 0.135), 0 2px 8px #79A6F644;
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}
.feature-grid li img, .service-list li img {
  width: 44px;
  height: 44px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.founder-highlight {
  background: #1FC3800C;
  border-left: 6px solid #EB3B65;
  border-radius: 12px;
  padding: 24px 24px 18px 20px;
  margin-top: 28px;
  margin-bottom: 32px;
}
.founder-highlight h3 {
  color: #23323A;
  margin-bottom: 12px;
}
.founder-highlight p {
  color: #23323A;
}
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0 0 0;
  list-style: disc inside;
}
.values-list li {
  background: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.99rem;
  font-weight: 500;
  color: #1FC380;
  box-shadow: 0 1.5px 6px #A3B18A26;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 12px;
}
.client-logos img { height: 38px; }

.results-list {
  background: #A3B18A16;
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 26px;
}
.results-list h3 { color: #79A6F6; }
.results-list ul {
  list-style: disc inside;
  margin: 12px 0 0 0;
  color: #23323A;
}
.results-list li {
  margin-bottom: 8px;
}

.privacy-note {
  background: #F7F5E8;
  border-left: 4px solid #EB3B65;
  border-radius: 9px;
  padding: 14px 16px;
  margin: 18px 0 18px 0;
  font-size: 0.98rem;
  color: #23323A;
}
.privacy-note a {
  color: #1FC380;
  border-bottom: 1px dotted #1FC380;
  transition: color 0.19s;
}
.privacy-note a:hover { color: #EB3B65; }

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 24px;
}
.contact-details .text-section {
  flex: 1 1 280px;
  min-width: 200px;
  max-width: 400px;
}

.text-section {
  margin-bottom: 24px;
}
.text-section h3 {
  margin-bottom: 8px;
  font-size: 1.125rem;
  color: #EB3B65;
}
.text-section p {
  font-size: 1rem;
  color: #23323A;
  margin-bottom: 8px;
}
.text-section ul, .text-section ol {
  margin: 10px 0 10px 22px;
  color: #23323A;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.process-steps li {
  background: #79A6F616;
  border-left: 4px solid #79A6F6;
  border-radius: 7px;
  color: #23323A;
  padding: 10px 16px;
  margin-bottom: 0;
  font-weight: 600;
}

/*--- HERO SECTIONS ---*/
.hero-section {
  min-height: 330px;
  display: flex;
  align-items: center;
  padding: 54px 0 54px 0;
  background: linear-gradient(90deg, #F7F5E8 60%, #A3B18A16 100%);
  position: relative;
  margin-bottom: 0;
}
.hero-section .content-wrapper {
  align-items: flex-start;
}
.hero-section h1 {
  font-size: 2.3rem;
  margin-bottom: 18px;
}
@media (max-width: 480px) {
  .hero-section { padding: 36px 0 26px 0; }
  .hero-section h1 { font-size: 1.37rem; }
}

/*--- CTA SECTIONS ---*/
.cta-section {
  background: #23323A;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 22px #79A6F620;
  padding: 45px 25px 42px 25px;
  text-align: center;
}
.cta-section h2 {
  color: #1FC380;
  margin-bottom: 16px;
  font-size: 2rem;
}
.cta-section p {
  color: #FCFCFC;
  margin-bottom: 24px;
  font-size: 1.19rem;
}

/*--- BUTTONS & CTA ---*/
.cta-btn {
  display: inline-block;
  border: none;
  padding: 14px 32px;
  font-size: 1.07rem;
  border-radius: 40px;
  background: #EB3B65;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 3px 14px #EB3B6524;
  transform: translateY(0);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  margin-top: 12px;
  margin-right: 12px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1FC380;
  color: #fff;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 6px 20px #1FC38030;
}
.cta-link {
  display: inline-block;
  color: #1FC380;
  font-weight: bold;
  border-bottom: 2px solid #A3B18A;
  padding: 2px 2px 0 2px;
  margin-top: 7px;
  transition: color 0.17s, border-color 0.17s;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cta-link:hover {
  color: #EB3B65;
  border-color: #EB3B65;
}

/*--- HEADER/NAV ---*/
header {
  position: relative;
  background: #fff;
  border-bottom: 4px solid #A3B18A16;
  box-shadow: 0 2px 21px #A3B18A12;
  z-index: 30;
}
.brand-logo {
  height: 52px;
  margin-right: 32px;
}
.header .container, header .container {
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 0;
  padding: 0 20px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-left: 12px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #23323A;
  font-size: 1.02rem;
  position: relative;
  transition: color 0.17s;
  padding: 7px 6px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #EB3B65;
}
.main-nav a.active {
  color: #1FC380;
  border-bottom: 2.5px solid #1FC380;
}

/* --- MOBILE MENU TOGGLE --- */
.mobile-menu-toggle {
  display: none;
  background: #EB3B65;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  padding: 10px 14px;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 160;
  cursor: pointer;
  box-shadow: 0 2px 12px #EB3B6534;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover {
  background: #1FC380;
}

.mobile-menu {
  display: none;
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #23323ADD;
  z-index: 2000;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.87,-.41,.19,1.44) 0s, opacity 0.28s;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  color: #fff;
  background: #EB3B65;
  border: none;
  border-radius: 50%;
  font-size: 2.2rem;
  padding: 8px 17px 10px 17px;
  position: absolute;
  top: 22px;
  right: 32px;
  z-index: 2220;
  cursor: pointer;
  transition: background 0.16s;
}
.mobile-menu-close:hover {
  background: #1FC380;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 84px 0 0 44px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.37rem;
  font-weight: 700;
  padding: 12px 8px;
  transition: color 0.18s, background 0.18s;
  border-radius: 7px;
  margin-right: 14px;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A3B18A;
  color: #23323A;
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    min-height: 68px;
    padding: 0 12px;
  }
  .brand-logo { height: 36px; }
}

/* --- FOOTER --- */
footer {
  background: #23323A;
  color: #fff;
  padding: 42px 0 0 0;
  border-radius: 32px 32px 0 0;
  margin-top: 44px;
  box-shadow: 0 -2px 24px #1FC38012;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-direction: column;
  font-size: 1.02rem;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #1FC380;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: #EB3B65;
  text-decoration: underline;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-direction: row;
}
.footer-brand img {
  height: 44px;
  margin-top: 2px;
}
.contact-brief {
  color: #fff;
  font-size: 0.98rem;
  margin-top: 5px;
  max-width: 346px;
}
.contact-brief a {
  color: #79A6F6;
  border-bottom: 1px dotted #79A6F6;
}
.contact-brief a:hover { color: #EB3B65; }
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social img {
  height: 27px;
  width: 27px;
  border-radius: 9px;
  background: #fff;
  padding: 3px;
  box-shadow: 0 2px 12px #A3B18A22;
  transition: box-shadow 0.15s, background 0.16s;
}
.footer-social img:hover {
  background: #1FC380;
  box-shadow: 0 6px 22px #23323A3c;
}
footer small {
  color: #A3B18A;
  font-size: 0.92rem;
  margin-top: 24px;
  display: block;
  padding-bottom: 24px;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-brand {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- BLOG, ARTICLE, TEXT STYLES --- */
p {
  margin-bottom: 14px;
}
strong, b { font-weight: 700; }
em, i { font-style: italic; }
blockquote {
  font-size: 1.1rem;
  border-left: 5px solid #1FC380;
  background: #F7F5E860;
  border-radius: 7px;
  padding: 12px 24px;
  margin: 14px 0px;
  color: #EB3B65;
}

/* --- UTILITY CLASSES & RESPONSIVE --- */
@media (max-width: 920px) {
  .feature-grid, .service-list, .team-list, .blog-list, .blog-preview-list, .project-overview-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .testimonial-list,
  .feature-grid,
  .project-overview-list,
  .service-list,
  .team-list,
  .values-list,
  .blog-list,
  .blog-preview-list {
    flex-direction: column;
    gap: 20px !important;
    align-items: stretch;
  }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
  .testimonial-card,
  .card,
  .feature-grid li,
  .service-list li,
  .blog-list li,
  .blog-preview-list li,
  .team-list li,
  .project-overview-list li {
    max-width: 100%;
    margin-right: 0;
    padding: 18px 13px;
  }
  .cta-section {
    padding: 32px 7px 33px 7px;
    margin: 0 3px;
  }
  .section { padding: 34px 8px; }
}
@media (max-width: 480px) {
  .container { padding: 0 4px; }
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.cta-btn, .cta-link, .main-nav a, .footer-nav a, .mobile-menu-toggle, .mobile-menu-close, .footer-social img {
  will-change: transform;
  transition: background 0.16s, color 0.16s, box-shadow 0.14s, transform 0.17s;
}
.section, .card, .testimonial-card, .feature-grid li, .service-list li, .project-overview-list li {
  transition: box-shadow 0.18s, transform 0.16s;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3300;
  background: #23323Ae0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 22px 18px;
  gap: 18px;
  box-shadow: 0 -4px 18px #A3B18A30;
  font-size: 1rem;
  border-radius: 24px 24px 0 0;
  opacity: 1;
  transition: opacity 0.32s cubic-bezier(.87,-.41,.19,1.44), bottom 0.32s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  bottom: -200px;
}
.cookie-banner__text {
  flex: 2 1 220px;
  min-width: 200px;
  font-size: 1rem;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 30px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 8px;
  margin-bottom: 3px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.cookie-btn.accept {
  background: #1FC380;
  color: #fff;
}
.cookie-btn.reject {
  background: #EB3B65;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #23323A;
  border: 1.5px solid #A3B18A;
}
.cookie-btn.accept:hover,
.cookie-btn.settings:hover {
  background: #23323A;
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #23323A;
  color: #EB3B65;
}

.cookie-modal__overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 3320;
  background: rgba(35,50,58,0.70);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.18s cubic-bezier(.87,-.41,.19,1.44);
}
.cookie-modal__overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #23323A;
  border-radius: 22px;
  box-shadow: 0 6px 32px #23323A36;
  padding: 36px 22px 28px 22px;
  width: 94vw;
  max-width: 430px;
  z-index: 3333;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookieModalIn 0.32s cubic-bezier(.48,.34,.55,1.36);
}
@keyframes cookieModalIn {
  from { transform: translateY(80px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #EB3B65;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 1.37rem;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal-close:hover {
  background: #1FC380;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #23323A;
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal__prefs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 600;
  font-size: 1.03rem;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #1FC380;
}
.cookie-category .always-on {
  background: #A3B18A;
  color: #fff;
  font-size: 0.89rem;
  border-radius: 8px;
  padding: 2px 7px;
  margin-left: 6px;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
  width: 9px;
  background: #F7F5E8;
}
::-webkit-scrollbar-thumb {
  background: #A3B18A66;
  border-radius: 6px;
}

/* --- COLORS: ENERGETIC ELECTRIC --- */
:root {
  --primary: #23323A;
  --accent: #F7F5E8;
  --secondary: #A3B18A;
  --electric-pink: #EB3B65;
  --electric-green: #1FC380;
  --electric-blue: #79A6F6;
}

/* --- ELECTRIC VIBRANT BADGES (for pricing, highlights, etc) --- */
span {
  color: #EB3B65;
  background: #1FC3801A;
  padding: 0 7px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.99em;
}

/* --- END OF FILE --- */
