/* === CSS RESET & NORMALIZE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #191D2C;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

ul,ol {
  padding-left: 24px;
  margin-bottom: 24px;
  list-style-position: outside;
}
ul li, ol li {
  margin-bottom: 8px;
}
li:last-child {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Russo One', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  color: #191D2C;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  color: #004dc1;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #1d3394;
}

p, blockquote, pre, code {
  margin-bottom: 18px;
  font-size: 1rem;
}
blockquote {
  border-left: 5px solid #A1FFE6;
  background: #e8fef9;
  padding: 18px 24px;
  border-radius: 12px;
  font-style: italic;
  color: #191D2C;
  margin: 20px 0;
}
strong {
  color: #191D2C;
  font-weight: bold;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}

/* === BRAND COLORS & PLAYFUL DYNAMIC ACCENTS === */
:root {
  --primary: #191D2C;
  --secondary: #A1FFE6;
  --accent: #F7D354;
  --brand-green: #16e0a0;
  --brand-blue: #1cd0ff;
  --brand-pink: #FF5CC7;
  --white: #fff;
  --shadow: rgba(25, 29, 44, 0.08);
}

/* === NAV & HEADER === */
header {
  background: var(--primary);
  padding: 0 0 0 0;
  box-shadow: 0 4px 16px var(--shadow);
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 70px;
}
nav > a {
  color: var(--white);
  font-family: 'Russo One', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
}
nav > a:hover:not(.cta-primary),
nav > a:focus:not(.cta-primary) {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(161,255,230,0.14);
}
nav > a.active,
nav > a[aria-current="page"] {
  background: var(--accent);
  color: var(--primary);
}
nav > a img {
  height: 38px;
  width: auto;
  margin-right: 16px;
  vertical-align: middle;
}

/* CTA BUTTONS */
.cta-primary, button.cta-primary {
  background: linear-gradient(90deg,var(--brand-blue),var(--brand-pink));
  color: var(--primary);
  font-family: 'Russo One', Arial, sans-serif;
  font-size: 1.08rem;
  padding: 13px 36px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 6px 24px rgba(25,29,44,0.10);
  cursor: pointer;
  letter-spacing: 0.05em;
  margin-top: 8px;
  margin-bottom: 10px;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  outline: none;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg,var(--brand-green),var(--brand-blue));
  color: #fff;
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
  box-shadow: 0 10px 34px 0 rgba(25,29,44,0.13);
}
.cta-secondary {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Russo One', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 30px;
  border-radius: 24px;
  border: none;
  box-shadow: 0 2px 8px rgba(247,211,84,0.10);
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 10px;
  transition: background 0.2s, color 0.2s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--primary);
  color: var(--accent);
}

/* ==== BURGER MENU (MOBILE) ====*/
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: var(--accent);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  margin: 0 16px 0 auto;
  position: relative;
  z-index: 201;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(25,29,44,0.94);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.56,-0.01,.49,.97);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 70px;
  box-shadow: 0 6px 40px 0 rgba(31,31,58,0.15);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--accent);
  font-size: 2.5rem;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 17px;
  right: 25px;
  z-index: 1301;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--secondary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 34px 0 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Russo One', Arial, sans-serif;
  font-size: 1.35rem;
  color: var(--white);
  border-radius: 17px;
  padding: 10px 9px 8px 6px;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

/* === LAYOUT & SECTIONS === */
main {
  width: 100%;
  min-height: 70vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.hero {
  background: linear-gradient(120deg,var(--secondary) 59%, var(--brand-blue) 101%);
  border-radius: 0 0 65px 65px/0 0 26px 40px;
  box-shadow: 0 10px 30px rgba(82,255,210,.08), 0 2px 10px rgba(41,255,229,.09);
  animation: hero-float 2s infinite alternate cubic-bezier(.67,1.32,.59,1.02);
}
@keyframes hero-float {
  to { box-shadow: 0 14px 44px rgba(82,255,210,.16), 0 6px 18px rgba(41,255,229,.16); }
}

.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  color: #222b35;
  margin-bottom: 18px;
  font-weight: 400;
}

.feature-grid, .team-bio-grid, .post-preview-grid, .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid > div,
.team-bio-grid > div,
.post-preview-grid > div,
.product-item {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 18px var(--shadow);
  padding: 24px 20px 18px 20px;
  margin-bottom: 20px;
  position: relative;
  min-width: 230px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.feature-grid > div:hover,
.team-bio-grid > div:hover,
.post-preview-grid > div:hover,
.product-item:hover {
  box-shadow: 0 10px 38px rgba(161,255,230,0.22);
  transform: translateY(-6px) scale(1.025) rotate(-1.5deg);
}

.feature-grid img,
.team-bio-grid img,
.post-preview-grid img {
  height: 50px; width: 50px;
  border-radius: 12px;
  margin-bottom: 2px;
  background: var(--secondary);
  padding: 4px;
}

.product-item h3 {
  font-size: 1.22rem;
  margin-bottom: 8px;
  color: var(--accent);
}
.add-to-cart {
  background: var(--brand-pink);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 9px 24px;
  font-family: 'Russo One', Arial, sans-serif;
  font-size: 1rem;
  margin-top: 10px;
  box-shadow: 0 3px 12px rgba(255, 92, 199, 0.11);
  transition: background 0.2s, transform 0.15s;
}
.add-to-cart:hover, .add-to-cart:focus {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.08);
}

/* --- USP BANNER --- */
.usp-banner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  background: #fafcfd;
  border-radius: 22px;
  box-shadow: 0 2px 12px #e8f5f6;
  padding: 18px 16px;
  justify-content: center;
  text-align: center;
}
.usp-banner li {
  color: #191D2C;
  font-family: 'Russo One';
  font-size: 1.1rem;
}

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--brand-pink);
  background-blend-mode: multiply;
  border-radius: 30px;
  box-shadow: 0 8px 22px rgba(255, 92, 199, 0.11);
  margin-bottom: 36px;
  color: #191D2C;
  animation: cta-jump 2.8s infinite alternate cubic-bezier(.65,1.12,.39,.99);
}
@keyframes cta-jump {
  to { box-shadow: 0 18px 54px rgba(247,211,84,0.13); }
}
.cta-banner .cta-primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 6px 24px rgba(247,211,84,0.11);
  margin-top: 12px;
  font-size: 1.13rem;
}
.cta-banner .cta-primary:hover {
  background: var(--brand-blue);
  color: #fff;
}

/* === TESTIMONIALS & REVIEW CARDS === */
.testimonials .testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffdfa;
  border-radius: 17px;
  box-shadow: 0 2px 14px rgba(247,211,84,0.12);
  color: #191D2C;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.14s;
  min-width: 220px;
  max-width: 650px;
}
.testimonials .testimonial-card strong {
  color: var(--brand-pink);
  margin-left: 8px;
  font-size: 1.05rem;
  font-style: normal;
}
.testimonials .testimonial-card img {
  height: 40px; width: 40px; min-width: 40px;
  border-radius: 50%;
  background: var(--secondary);
  padding: 3px;
  box-shadow: 0 2px 8px #e6f8f8;
}
.testimonials .testimonial-card:hover {
  box-shadow: 0 8px 34px #f7d35433;
  transform: scale(1.025) rotate(-1deg);
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 13px;
}
.star-rating img {
  width: 28px;
  height: 28px;
}
.star-rating span {
  margin-left: 6px;
  font-family: 'Russo One';
  font-size: 1.09rem;
  color: var(--primary);
}

/* === CARD CONTAINER & FLEX UTILITY === */
.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;
}

/***** BLOG CATEGORIES FILTER *****/
.categories-filter {
  margin-top: 26px;
  font-family: 'Russo One';
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  padding: 12px 20px;
  border-radius: 8px;
  border: 2px dashed var(--accent);
  color: var(--brand-pink);
  background: #fffae3;
}

/***** FORM STYLES *****/
input[type="email"] {
  border: 2px solid var(--brand-blue);
  border-radius: 24px;
  padding: 11px 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-right: 7px;
  outline: none;
  margin-bottom: 10px;
  transition: border 0.2s;
}
input[type="email"]:focus {
  border: 2px solid var(--brand-pink);
}
button {
  font-family: 'Russo One', Arial, sans-serif;
  cursor: pointer;
}

/***** TABLES *****/
table {
  width: 100%;
  border-collapse: collapse;
  background: #f6fff9;
  margin-bottom: 18px;
  border-radius: 18px;
  box-shadow: 0 1px 8px #b0f3e1a8;
  overflow: hidden;
  font-size: 1rem;
  margin-top: 8px;
}
th, td {
  padding: 14px 10px;
  text-align: left;
  border-bottom: 1px solid #e0f8ec;
}
th {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Russo One', Arial, sans-serif;
  font-size: 1.01rem;
}
tr:last-child td { border-bottom: none; }

/***** FAQ & DL LISTS *****/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list dt {
  font-family: 'Russo One', Arial, sans-serif;
  color: var(--brand-blue);
  margin-bottom: 3px;
  font-size: 1.1rem;
}
.faq-list dd {
  margin-bottom: 8px;
  margin-left: 20px;
  font-size: 1rem;
  color: #2c3551;
}

/***** FEATURE/VALUES/ICONS BLOCKS *****/
.values-icons, .guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 26px 0 14px 0;
}
.values-icons p, .guarantees p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Russo One';
  color: var(--primary);
  font-size: 1.09rem;
  background: #f8f8fd;
  border-radius: 14px;
  padding: 8px 16px;
  box-shadow: 0 1px 6px #ecfdfb;
}

/***** FOOTER *****/
footer {
  background: var(--primary);
  color: var(--white);
  padding: 45px 0 20px 0;
  margin-top: 36px;
}
footer .container { display: flex; flex-direction: column; gap: 36px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-brand img {
  height: 38px;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.footer-contact-info img {
  width: 18px;
  height: 18px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 14px;
}
.footer-menu a {
  color: var(--accent);
  font-size: 1.01rem;
  border-bottom: 1px dotted var(--accent);
  padding-bottom: 2px;
  transition: color 0.19s, border-color 0.19s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

/**** REVIEW SUBMISSION ****/
.review-submission p a {
  color: var(--brand-blue);
  border-bottom: 1px dashed var(--brand-blue);
  transition: color 0.18s;
}
.review-submission p a:hover {
  color: var(--accent);
}

/**** Responsive Mobile Breakpoints ****/
@media (max-width: 1100px) {
  .feature-grid > div, .team-bio-grid > div, .post-preview-grid > div, .product-item {
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  nav { gap: 10px; }
  .feature-grid, .team-bio-grid, .post-preview-grid, .product-grid { gap: 14px; }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container { padding: 0 8px; }
  section, .section { padding: 26px 7px; margin-bottom: 36px; }
  .content-wrapper {
    gap: 16px;
  }
  .feature-grid, .team-bio-grid, .post-preview-grid, .product-grid, .values-icons, .guarantees, .usp-banner ul {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .card, .card-container, .testimonial-card, .feature-item, .content-grid, .usp-banner ul {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .categories-filter {
    font-size: 0.95rem;
    padding: 8px 10px;
  }
  .testimonials .testimonial-card {
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    max-width: 100%;
  }
  .cta-banner { 
    padding: 28px 6px; 
    font-size: 1rem;
  }
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  h3 {
    font-size: 1.09rem;
  }
  input[type="email"] {
    font-size: 0.97rem;
    padding: 8px 14px;
  }
  .usp-banner ul { padding: 8px; }
}

/***** TRANSITIONS, SHADOWS, AND MICRO-INTERACTIONS *****/
a, button, input, .cta-primary, .card, .feature-item, .add-to-cart, .mobile-menu, .mobile-menu-close {
  transition-timing-function: cubic-bezier(.53,1.37,.53,.92);
}
.cta-primary, .cta-secondary, .add-to-cart { transition: background 0.18s, color 0.18s, transform 0.22s; }

/***** COOKIE CONSENT BANNER/BUTTONS/MODAL *****/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  box-shadow: 0 -2px 28px #262c46ef;
  padding: 18px 13px 22px 13px;
  gap: 14px;
  animation: cookie-fade-in 0.9s both;
}
@keyframes cookie-fade-in {
  0% { opacity: 0; transform: translateY(48px); }
  85% { opacity: 1; }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner p {
  color: #222b35;
  max-width: 900px;
  font-size: 1.04rem;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 5px;
}
.cookie-button,
.cookie-settings-btn {
  padding: 10px 22px;
  border-radius: 24px;
  border: none;
  font-family: 'Russo One', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 6px #f7d35432;
  transition: background 0.19s, color 0.19s, transform 0.18s;
}
.cookie-button.accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-button.reject {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-settings-btn {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-button:hover {
  background: var(--brand-blue);
  color: #fff;
  transform: translateY(-2px) scale(1.035);
}
.cookie-settings-btn:hover {
  background: var(--brand-pink);
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(25,29,44,0.70);
  backdrop-filter: blur(2px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in .4s both;
}
@keyframes cookie-modal-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 36px rgba(25,29,44,0.22);
  padding: 38px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 480px;
  width: 96vw;
  position: relative;
  z-index: 4100;
  animation: cookie-modal-slide-in .35s cubic-bezier(.61,1.3,.51,.95) both;
}
@keyframes cookie-modal-slide-in {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0px); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Russo One', Arial, sans-serif;
  font-size: 1.36rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-category {
  background: #f1fcfa;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  flex: 1;
  font-size: 1.06rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-green);
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.cookie-category.essential label {
  color: var(--brand-pink);
  font-weight: 600;
}
.cookie-category.essential input[type="checkbox"] {
  display: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: var(--brand-pink);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 4200;
}
.cookie-modal-close:hover {
  color: var(--primary);
}

@media (max-width: 520px) {
  .cookie-modal { padding: 20px 8px 18px 8px; }
}

/* === MISC === */
::-webkit-scrollbar {
  width: 7px;
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-blue);
  border-radius: 9px;
}

/**** Micro bounce for icon, playful headings, energetic feel ****/
h1, h2, h3, .cta-primary, .add-to-cart {
  animation: popUp .10s cubic-bezier(.55,1.55,.71,1.34);
}
@keyframes popUp {
  from { transform: scale(0.97); }
  to   { transform: scale(1); }
}

/* === END OF CSS === */
