/* RESET & BASE TYPOGRAPHY */
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;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFFDF7;
  color: #264653;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}
img {max-width: 100%; display: block; border-radius: 8px;}
ul, ol {list-style: none;}
a { color: inherit; text-decoration: none; transition: color .2s;}
strong {font-weight: 700;}
em {font-style: italic;}

/* ARTISTIC/CREATIVE VARIABLES */
:root {
  --primary: #264653;
  --secondary: #2A9D8F;
  --accent: #F4A261;
  --white: #FFFDF7;
  --grey-bg: #F6F6F8;
  --soft-grey: #ececec;
  --text-dark: #264653;
  --text-light: #FFFDF7;
  --box-radius: 18px;
  --shadow-md: 0 6px 24px rgba(40,56,82,.10), 0 2px 8px rgba(80,130,160,.06);
  --shadow-deep: 0 8px 32px rgba(40,56,82,.14), 0 4px 12px rgba(80,130,160,.10);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* CONTAINER & FLEX LAYOUTS */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: var(--primary);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 72px;
}
.logo img {height: 40px;}
.desktop-nav {
  display: flex;
  gap: 28px;
}
.desktop-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--accent);
  border-radius: 8px;
  padding: 6px 14px;
  transition: background .2s, color .2s;
}
.desktop-nav a:hover, .desktop-nav a.active {
  background: var(--accent);
  color: var(--primary);
}
.cta-primary {
  font-family: var(--font-display);
  background: var(--accent);
  color: var(--primary);
  padding: 10px 30px;
  border-radius: 36px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-md);
  border: none;
  transition: background .2s, box-shadow .2s, color .2s, transform .1s;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--secondary);
  color: var(--text-light);
  box-shadow: var(--shadow-deep);
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 32px;
  font-family: var(--font-display);
  cursor: pointer;
  z-index: 1200;
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--secondary);
  color: #fff;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.7,.2,.1,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 80px;
  padding-left: 34px;
  padding-right: 34px;
  gap: 38px;
  box-shadow: var(--shadow-deep);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 30px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 2em;
  font-size: 32px;
  padding: 6px 18px;
  cursor: pointer;
  z-index: 2200;
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  padding: 12px 0;
  border-bottom: 1px dashed var(--accent);
  transition: color .2s, background .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
  border-radius: 8px;
  padding-left: 10px;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(104deg, var(--secondary) 0%, var(--accent) 100%);
  color: var(--text-dark);
  border-radius: 0 0 62px 62px;
  box-shadow: var(--shadow-md);
  margin-bottom: 42px;
  padding: 60px 0 42px 0;
}
.hero-section h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.01em;
}
.hero-subtitle {
  font-size: 1.22rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 18px;
  margin-top: 6px;
}
.hero-section .cta-primary {
  margin-top: 22px;
  font-size: 1.1em;
}

/* FEATURES, SERVICES, TEAM */
.feature-grid, .service-grid, .service-details-grid, .team-list, .case-grid, .blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid {
  margin-top: 14px;
}
.feature-item {
  background: var(--white);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-md);
  padding: 26px 24px;
  flex: 1 1 calc(240px + 10vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .2s, transform .1s;
}
.feature-item:hover {
  box-shadow: var(--shadow-deep);
  transform: translateY(-4px) scale(1.025) rotate(-1.5deg);
}
.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.24rem;
  color: var(--secondary);
  font-weight: 700;
}
.feature-item img {
  height: 44px;
  width: 44px;
  margin-bottom: 4px;
}

/* CARD SPACING PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-md);
  padding: 22px 20px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  transition: box-shadow .18s, transform .12s;
}
.card:hover {
  box-shadow: var(--shadow-deep);
  transform: translateY(-2px) scale(1.02);
}

.service-grid {
  margin-bottom: 30px;
}
.service-card {
  background: var(--grey-bg);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-md);
  padding: 24px 18px;
  flex: 1 1 calc(240px + 10vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .12s;
  position: relative;
  overflow: hidden;
}
.service-card strong {
  color: var(--secondary);
}
.service-card:hover {
  box-shadow: var(--shadow-deep);
  transform: translateY(-2px) scale(1.01);
}
.service-card img {
  height: 40px;
  margin-bottom: 8px;
}
.service-details-grid {
  gap: 28px;
  margin-bottom: 30px;
}
.service-detail {
  background: var(--white);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-md);
  padding: 28px 22px;
  flex: 1 1 calc(300px + 10vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  min-width: 240px;
  transition: box-shadow .16s, transform .09s;
}
.service-detail:hover {
  box-shadow: var(--shadow-deep);
  transform: translateY(-3px) scale(1.01);
}
.service-detail img {
  height: 40px;
  width: 40px;
}
.service-detail strong { color: var(--secondary); }

/* TEAM SECTION */
.team-list {
  gap: 32px;
  margin-bottom: 24px;
}
.team-member {
  background: var(--grey-bg);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-md);
  padding: 22px 16px;
  flex: 1 1 calc(230px + 7vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 190px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .12s;
}
.team-member img {
  height: 38px;
  margin-bottom: 6px;
}
.team-member h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
}
.team-role {
  color: var(--secondary);
  font-size: .97em;
  font-weight: 600;
  margin-bottom: 5px;
}
.team-member p {font-size: .95em;}

/* TIMELINE STYLING */
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 28px 0;
}
.timeline-step {
  background: var(--soft-grey);
  border-radius: 21px;
  padding: 28px 20px;
  min-width: 170px;
  flex: 1 1 200px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(80,100,140,.08);
  position: relative;
}
.timeline-step h3 {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 7px;
}

/* SPACING FLEX LAYOUTS */
.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;
}

/* TESTIMONIALS */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 225px;
  flex: 1 1 250px;
  margin-bottom: 18px;
  transition: box-shadow .18s, transform .10s;
  border: 2.5px dashed var(--accent);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-deep);
  transform: translateY(-2px) scale(1.015) rotate(-1.1deg);
}
.testimonial-card p {
  color: var(--text-dark);
  font-size: 1.04em;
  text-align: center;
  font-weight: 500;
  font-family: var(--font-body);
}
.testimonial-author {
  font-family: var(--font-display);
  color: var(--secondary);
  font-size: 0.97em;
  margin-top: 4px;
  font-weight: 600;
}
.stars {
  color: var(--accent);
  letter-spacing: 0.13em;
  font-size: 1.32em;
  margin-top: -6px;
}

/* CARD/SECTION SPACING ENFORCED */
.card, .service-card, .service-detail, .team-member {
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/******* BENEFIT, IMPACT, HIGHLIGHTS, STATS *******/
.benefit-list, .impact-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  margin-top: 8px;
  padding-left: 18px;
}
.benefit-list li::before, .impact-list li::before {
  content: '\2022';
  color: var(--secondary);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-weight: bold;
}
.stat-highlights,
.key-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
}
.stat-highlights > div, .key-metrics > div {
  background: var(--soft-grey);
  color: var(--primary);
  border-radius: 16px;
  padding: 22px 16px;
  min-width: 120px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.11em;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

/* CTA SPECIAL SECTION */
.cta-section {
  background: linear-gradient(92deg,var(--secondary),var(--accent));
  border-radius: 48px;
  color: var(--primary);
  margin-bottom: 0;
  padding: 36px 0;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: 2.1em;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary);
}
.cta-desc {
  font-size: 1.11em;
  margin-bottom: 18px;
  font-weight: 400;
}

/* BLOG/NEWS CATEGORY FILTER TAGS */
.trending-topics, .category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.tag, .filter {
  background: var(--accent);
  color: var(--primary);
  padding: 5px 18px;
  border-radius: 18px;
  font-family: var(--font-display);
  font-size: .97em;
  font-weight: 700;
  transition: background .15s, color .15s, transform .14s;
  box-shadow: 0 2px 11px rgba(180,110,80,.08);
}
.filter:hover, .filter.active {
  background: var(--secondary);
  color: var(--text-light);
  cursor: pointer;
  transform: scale(1.06);
}

.blog-post {
  background: var(--white);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-md);
  padding: 20px 16px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .18s, transform .10s;
}
.blog-post h3 {
  font-family: var(--font-display);
  color: var(--secondary);
  font-size: 1.18em;
  font-weight: 700;
}
.post-link {
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-display);
  margin-top: 2px;
  transition: color .2s, text-decoration .1s;
}
.post-link:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 15px;
}
.faq-item h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.08em;
  font-weight: 700;
  margin-bottom: 4px;
}
.faq-item p {
  padding-left: 8px;
}

/* APPROACH STEPS (ABOUT) */
.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
  margin-top: 2px;
  padding-left: 18px;
}
.approach-steps li::before {
  content: '\25BA';
  color: var(--accent);
  margin-left: -1.1em;
  margin-right: .4em;
}

/****** IMPACT/CASE STUDY SPLIT *******/
.impact-list {
  gap: 26px;
  flex-direction: row;
  justify-content: space-between;
}
.impact-row {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  flex: 1 1 220px;
  min-width: 180px;
  margin-right: 14px;
  margin-bottom: 10px;
  padding: 15px 16px;
}
.impact-list ul {
  margin-top: 5px;
  margin-left: 8px;
}

/******** MAP/CONTACT ********/
.contact-details {
  background: var(--soft-grey);
  padding: 20px 24px;
  border-radius: 14px;
  font-size: 1.05em;
  margin: 20px 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.map-neutral {
  margin-top: 10px;
  background: #e7e4e0;
  color: var(--primary);
  border-radius: 18px;
  padding: 22px 10px;
  text-align: center;
  font-weight: 600;
  font-family: var(--font-display);
  opacity: 0.85;
}

/***** LEGAL STYLING (PRIVACY, RODO, CONDITIONS) ******/
.legal-section {
  background: var(--white);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 60px;
  margin-top: 36px;
  padding: 40px 25px;
}
.legal-section h1 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 2.3em;
  font-weight: 700;
  margin-bottom: 14px;
}
.legal-section h2 {
  font-family: var(--font-display);
  color: var(--secondary);
  margin-top: 18px;
  font-size: 1.14em;
  font-weight: 700;
}
.legal-section p, .legal-section ul {
  margin-bottom: 9px;
  padding-left: 0;
  font-size: 1em;
}
.legal-section ul li {
  margin-bottom: 4px;
  padding-left: 12px;
}
.legal-section ul li::before {
  content: '\25CF';
  color: var(--accent);
  margin-right: 6px;
}

/***** BLOG INTRO/NEWSLETTER/CATEGORY TAGS ******/
.blog-intro-section {
  background: linear-gradient(101deg, var(--accent) 0%, var(--secondary) 100%);
  color: var(--primary);
  border-radius: 0 0 56px 56px;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
  padding: 54px 0 35px 0;
}
.newsletter-section {
  background: var(--secondary);
  padding: 40px 0;
  margin-bottom: 0;
  border-radius: 42px;
  box-shadow: var(--shadow-md);
  color: var(--text-light);
  text-align: center;
}
.newsletter-section h2 {
  font-family: var(--font-display);
  font-size: 1.8em;
  font-weight: 800;
  color: var(--white);
}

/****** FOOTER STYLING ******/
footer {
  width: 100%;
  background: var(--primary);
  color: var(--text-light);
  padding-top: 42px;
  padding-bottom: 18px;
  box-shadow: 0 -3px 24px rgba(38,70,83,0.07);
  position: relative;
  z-index: 1;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  gap: 18px;
}
.footer-nav a {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1em;
  padding: 3px 10px;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
.footer-nav a:hover {
  background: var(--accent);
  color: var(--primary);
}
.footer-contact {
  margin-top: 12px;
  font-size: 0.99em;
  color: #efede4;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0.88;
}
.footer-bottom {
  font-size: .92em;
  margin-top: 14px;
  color: #dfdcd8;
  opacity: 0.7;
  border-top: 1px solid #324243;
  padding-top: 7px;
  text-align: right;
}

/******* THANK YOU/CONFIRMATION ******/
.confirmation-section {
  background: linear-gradient(105deg,var(--secondary),var(--accent));
  border-radius: 38px;
  color: var(--primary);
  margin: 60px 0 40px 0;
  padding: 80px 0;
  text-align: center;
}
.confirmation-section h1 {
  font-family: var(--font-display);
  font-size: 2.3em;
  font-weight: 800;
  color: var(--primary);
}
.confirmation-section p {
  font-size: 1.11em;
  margin: 16px auto 34px auto;
  max-width: 420px;
  font-weight: 500;
  color: var(--primary);
}

/***** MICRO-INTERACTIONS AND HOVERS *****/
a, .cta-primary, .feature-item, .service-card, .blog-post, .card, .service-detail, .testimonial-card, .step, .timeline-step, .team-member, .tag, .filter {
  transition: box-shadow .2s, background .15s, color .2s, transform .13s;
}

/* STEPS / PROCESS / IMPLEMENTATION */
.implementation-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.step {
  background: var(--soft-grey);
  border-radius: 15px;
  padding: 22px 16px;
  flex: 1 1 180px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}
.step img {
  height: 34px;
  margin-bottom: 6px;
}
.step h3 {
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.09em;
}

/***** CLASSIC TYPOGRAPHY SCALE *****/
h1, .h1 {font-family: var(--font-display); font-size: 2.2em; font-weight: 800; letter-spacing: 0.01em; margin-bottom: 6px;}
h2, .h2 {font-family: var(--font-display); font-size: 1.5em; font-weight: 700; color: var(--primary); margin-bottom: 6px;}
h3, .h3 {font-family: var(--font-display); font-size: 1.1em; font-weight: 700; color: var(--primary);}
h4, .h4 {font-family: var(--font-display); font-size: 1em; font-weight: 600; color: var(--primary);}
p, ul, ol, li, span, label, input, textarea, select {
  font-family: var(--font-body);
  font-size: 1em;
  color: var(--text-dark);
}
.tagline {font-family: var(--font-display); font-size: 1.1em; color: var(--accent); font-weight: 600; letter-spacing: 0.01em; margin: 13px 0;}

/******* RESPONSIVE STYLES ********/
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .feature-grid, .service-grid, .team-list, .service-details-grid, .case-grid, .blog-grid {gap: 14px;}
  .cta-section, .blog-intro-section {padding: 30px 0 24px 0;}
  .hero-section {padding: 34px 0;}
}
@media (max-width: 900px) {
  header .container, .footer-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .content-wrapper {gap: 20px;}
  .hero-section {padding-top: 30px;}
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-highlights, .key-metrics {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .service-detail, .feature-item, .service-card, .card, .testimonial-card, .timeline-step, .team-member, .step, .blog-post {
    min-width: 90vw;
    width: 100%;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid, .service-grid, .service-details-grid, .team-list, .case-grid, .blog-grid, .testimonial-grid, .stat-highlights, .key-metrics, .impact-list, .content-grid, .implementation-steps {
    flex-direction: column;
    gap: 16px;
  }
  .footer-flex {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .hero-section, .cta-section, .confirmation-section, .blog-intro-section, .newsletter-section, .legal-section {
    border-radius: 18px;
    padding: 28px 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 500px) {
  .container {padding: 0 4px;}
  .logo img {height: 28px;}
  .footer-contact, .footer-bottom {
    font-size: .87em;
    text-align: left;
  }
}

/***** COOKIE CONSENT BANNER *****/
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 3000;
  background: var(--accent);
  color: var(--primary);
  padding: 22px 14px 22px 14px;
  box-shadow: 0 -6px 12px rgba(38,70,83,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  animation: bannerin .4s;
}
@keyframes bannerin {from {transform: translateY(80px); opacity: 0;} to {transform: none; opacity: 1;}}
.cookie-consent-banner p {
  font-size: 1em;
  color: var(--primary);
  max-width: 400px;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1em;
  padding: 9px 20px;
  border-radius: 24px;
  border: none;
  margin: 0 2px;
  transition: background .18s, color .18s, box-shadow .10s;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(38,70,83,0.08);
}
.cookie-btn.accept {
  background: var(--secondary);
  color: var(--white);
}
.cookie-btn.reject {
  background: var(--primary);
  color: var(--accent);
}
.cookie-btn.settings {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-btn.accept:hover {background: #21867b; color: var(--white);}
.cookie-btn.reject:hover {background: var(--white); color: var(--primary);}
.cookie-btn.settings:hover {background: var(--secondary); color: var(--white);}
@media (max-width: 500px) {
  .cookie-consent-banner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
  }
  .cookie-consent-actions {
    gap: 6px;
  }
}

/***** COOKIE CONSENT MODAL POPUP *****/
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38,70,83,0.48);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3500;
  animation: modal-in .25s;
}
@keyframes modal-in {from {opacity: 0;} to {opacity: 1;}}
.cookie-modal-content {
  background: var(--white);
  color: var(--primary);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  padding: 38px 26px 28px 26px;
  max-width: 410px;
  width: 96vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: content-in .36s cubic-bezier(.63,-0.07,.31,1.17);
}
@keyframes content-in {from {transform: scale(.94); opacity: 0;} to {transform: scale(1); opacity: 1;}}
.cookie-modal-content h2 {
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  font-size: 28px;
  padding: 4px 14px;
  border-radius: 2em;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--accent);
  color: var(--primary);
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.cookie-category-label {
  font-family: var(--font-display);
  font-size: 1em;
  color: var(--primary);
  font-weight: 700;
}
.cookie-category-toggle[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: var(--secondary);
  cursor: pointer;
}
.cookie-category-desc {
  font-size: .98em;
  color: #60717a;
  margin-left: 3px;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  padding: 7px 16px;
  font-size: 0.99em;
}

/***** ELEVATED & CREATIVE ELEMENTS *****/
.card::before, .testimonial-card::before, .feature-item::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.card::before, .testimonial-card::before {
  width: 42px;
  height: 42px;
  background: var(--accent);
  opacity: 0.14;
  border-radius: 42px;
  top: 18px;
  right: 18px;
}
.feature-item::after {
  width: 38px;
  height: 38px;
  background: var(--secondary);
  opacity: 0.08;
  border-radius: 50%;
  bottom: 10px;
  left: 12px;
}
/******* HIDE ARTISTIC DECOR IN MOBILE ******/
@media (max-width: 600px) {
  .card::before, .testimonial-card::before, .feature-item::after {
    display: none;
  }
}
/******** CUSTOM SCROLLBARS *******/
body::-webkit-scrollbar {
  width: 10px;
  background: var(--grey-bg);
}
body::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 8px;
}

/***** BROWSER FONT INCLUSION (SAFE) *****/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

/***** PRINT SAFE ******/
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal {display: none !important;}
  body {background: #fff !important; color: #000 !important;}
  .container {padding: 0 !important;}
}
