/* LUMINARY SHOCK – gradient_modern style.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;
  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.6;
  font-size: 16px;
  background: linear-gradient(135deg, #F9F9F9 0%, #F4F4FF 100%);
  color: #232336;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #E94560;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #1A1A2E;
  text-decoration: underline;
}
*:focus {
  outline: 2px solid #E94560;
  outline-offset: 2px;
}

/* =================== TYPOGRAPHY ======================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  color: #1A1A2E;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.25;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  line-height: 1.26;
}
h4 {
  font-size: 1.125rem;
  color: #1A1A2E;
  margin-bottom: 8px;
}
p, ul, ol, li, blockquote {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #232336;
  font-size: 1rem;
}
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.375rem; }
  h3 { font-size: 1.8rem; }
}

/* =============== GENERAL PATTERNS =============== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }
}

/* ============== HEADER NAVIGATION =============== */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(34,23,46,0.05);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 24px;
}
header img {
  height: 42px;
  margin-right: 32px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #1A1A2E;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 4px;
  transition: background 0.17s, color 0.17s;
}
header nav a:hover {
  background: #F4F4FF;
  color: #E94560;
}
.cta.primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #E94560 0%, #1A1A2E 100%);
  color: #fff;
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-weight: 700;
  padding: 10px 28px;
  border: none;
  border-radius: 28px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px 0 rgba(233, 69, 96, 0.10);
  cursor: pointer;
  transition: background 0.23s, box-shadow 0.22s, transform 0.18s;
  margin-left: 24px;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(92deg, #1A1A2E 9%, #E94560 100%);
  box-shadow: 0 8px 32px 0 rgba(233, 69, 96, 0.18);
  transform: translateY(-2px) scale(1.03);
}
.cta.secondary {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #E94560;
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-weight: 700;
  padding: 10px 28px;
  border: 2px solid #E94560;
  border-radius: 28px;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px 0 rgba(233, 69, 96, 0.10);
  cursor: pointer;
  transition: background 0.23s, color 0.17s, border 0.19s, box-shadow 0.18s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #E94560;
  color: #fff;
  border-color: #E94560;
  box-shadow: 0 6px 22px 0 rgba(26,26,46,0.12);
}

/* ========== MOBILE MENÜ ========== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 18px;
  top: 16px;
  z-index: 420;
  background: #fff;
  color: #E94560;
  border: none;
  font-size: 2.2rem;
  padding: 5px 18px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(26,26,46,0.08);
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F4F4FF;
  color: #1A1A2E;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  background: #fff;
  top: 0; left: 0; height: 100vh; width: 100vw;
  z-index: 950;
  transform: translateX(-100vw);
  box-shadow: 2px 0 32px rgba(26,26,46,0.16);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.85,0,0.4,1.1), opacity 0.2s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #E94560;
  font-size: 2.1rem;
  padding: 12px 21px 8px 2px;
  margin: 18px 12px 0 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #1A1A2E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 36px 36px 32px 32px;
}
.mobile-nav a {
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #1A1A2E;
  letter-spacing: 0.01em;
  padding: 8px 2px;
  border-radius: 4px;
  transition: background 0.18s, color 0.17s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #F4F4FF;
  color: #E94560;
}
@media (max-width: 1000px) {
  header nav, header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1001px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ============= HERO SECTION ============= */
.hero {
  background: linear-gradient(105deg, #F9F9F9 68%, #E94560 120%);
  border-radius: 32px;
  box-shadow: 0 8px 40px rgba(26, 26, 46, 0.07), 0 1.5px 4px rgba(233, 69, 96, 0.09);
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 340px;
  gap: 30px;
}
.hero .content-wrapper {
  max-width: 720px;
  padding: 18px 0;
  gap: 26px;
}
.hero h1 { color: #1A1A2E; }
.hero-subhead {
  font-size: 1.18rem;
  color: #444;
  margin-bottom: 14px;
}
@media (max-width: 900px) {
  .hero .container {
    min-height: 220px;
    gap: 22px;
  }
}
@media (max-width: 700px) {
  .hero {
    border-radius: 16px;
    margin-bottom: 32px;
  }
  .hero .content-wrapper {
    padding: 4px 0;
    gap: 20px;
  }
}

/* =============== FEATURES/CONTENT FLEX =============== */
.features, .services-list, .feature-grid, .blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid {
  width: 100%;
  margin-top: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 22px 0 rgba(26,26,46,0.06);
  padding: 26px 22px;
  gap: 15px;
  flex: 1 1 250px;
  min-width: 210px;
}
.feature-item img {
  height: 44px;
  width: 44px;
  object-fit: contain;
}
.feature-item h3 {
  color: #E94560;
  font-size: 1.25rem;
}
.feature-item p {
  color: #232336;
}
@media (max-width: 900px) {
  .feature-grid, .services-list, .blog-post-list {
    flex-direction: column;
    gap: 22px;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
  }
}

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

/* =============== CARD LAYOUTS ================ */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(233, 69, 96, 0.07), 0 1px 2px rgba(26,26,46,0.09);
  margin-bottom: 20px;
  transition: transform 0.21s, box-shadow 0.19s;
  position: relative;
}
.card:hover, .card:focus {
  transform: translateY(-3px) scale(1.018);
  box-shadow: 0 8px 36px 0 rgba(233,69,96,0.16);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
}

/* ================ SERVICE HIGHLIGHTS & PRICING ================ */
.services-list {
  flex-wrap: wrap;
  gap: 24px;
}
.service-highlight, .service-detailed {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(26,26,46,0.08);
  padding: 24px 22px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  min-width: 210px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  border-left: 5px solid #E94560;
  transition: box-shadow 0.18s, transform 0.15s;
}
.service-highlight:hover, .service-detailed:hover {
  box-shadow: 0 8px 30px 0 rgba(233,69,96,0.09);
  transform: translateY(-2.5px) scale(1.012);
}
.service-highlight h3, .service-detailed h3 {
  color: #E94560;
  margin-bottom: 5px;
  font-size: 1.12rem;
}
.service-price {
  font-size: 1.02rem;
  font-weight: bold;
  background: #F4F4FF;
  color: #1A1A2E;
  padding: 4px 16px;
  border-radius: 16px;
  margin-top: 9px;
  letter-spacing: 0.01em;
}
.pricing-table {
  width: 100%;
  margin-top: 32px;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(26,26,46,0.07);
}
.pricing-table th,
.pricing-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: #E94560;
  color: #fff;
  font-family: 'Oswald', 'Roboto', sans-serif;
}
.pricing-table tbody tr:not(:last-child) {
  border-bottom: 1px solid #ECE8F6;
}
.pricing-table tr:hover {
  background: #F4F4FF;
}
@media (max-width: 700px) {
  .pricing-table, .pricing-table thead, .pricing-table tbody, .pricing-table tr, .pricing-table th, .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table th { border-radius: 0; }
  .pricing-table td { padding-left: 16px; }
}

/* ================ TESTIMONIALS ================ */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #F9F9F9;
  border-left: 6px solid #E94560;
  border-radius: 16px;
  box-shadow: 0 3px 14px 0 rgba(26,26,46,0.07);
  transition: box-shadow 0.19s;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.11rem;
  line-height: 1.6;
  color: #232336;
  margin: 0;
  max-width: 480px;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  font-size: 0.97rem;
  gap: 2px;
  color: #1A1A2E;
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-weight: 500;
  margin-left: 16px;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .testimonial-meta { margin-left: 0; }
}

/* ============ BLOG ============ */
.blog-post-list {
  width: 100%;
}
.blog-post-featured {
  background: linear-gradient(90deg, #fff 82%, #E94560 170%);
  color: #1A1A2E;
  border-radius: 16px;
  box-shadow: 0 3px 16px 0 rgba(233,69,96,0.08);
  padding: 24px 20px;
  margin-bottom: 20px;
}
.blog-post-list .blog-post {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px rgba(26,26,46,0.05);
  padding: 18px 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.16s;
}
.blog-post-list .blog-post:hover {
  box-shadow: 0 7px 22px 0 rgba(233,69,96,0.10);
  transform: translateY(-2.5px) scale(1.016);
}
.category-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding-top: 8px;
}
.category-overview li {
  background: #F4F4FF;
  color: #1A1A2E;
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-family: 'Roboto', sans-serif;
}

/* =========== LEGAL SECTION ============ */
.legal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 20px 0 rgba(26,26,46,0.04);
}
@media (max-width: 700px) {
  .legal {
    border-radius: 10px;
    padding: 16px 8px;
  }
}

/* ============ CONTACT PAGE SECTIONS =========== */
.contact-snippet, .map-snippet, .text-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 9px rgba(233, 69, 96, 0.05);
  padding: 18px 20px;
  margin: 0 0 18px 0;
  color: #232336;
}
@media (max-width: 700px) {
  .contact-snippet, .map-snippet, .text-section {
    padding: 12px 7px;
    margin-bottom: 13px;
  }
}

/* ========== CTA SECTION ============ */
section.cta {
  background: linear-gradient(92deg, #E94560 64%, #1A1A2E 100%);
  color: #fff;
  padding: 32px 20px;
  border-radius: 24px;
  margin-bottom: 44px;
  box-shadow: 0 7px 38px rgba(233,69,96,0.12);
}
section.cta .cta.primary {
  margin-right: 32px;
  background: #fff;
  color: #E94560;
  border: 2px solid #fff;
}
section.cta .cta.primary:hover {
  color: #1A1A2E;
}
section.cta .contact-snippet {
  background: transparent;
  color: #fff;
  box-shadow: none;
}
/* ================ FOOTER ================ */
footer {
  background: linear-gradient(90deg, #E94560 0%, #1A1A2E 120%);
  color: #fff;
  padding: 32px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1.5px solid rgba(255,255,255,0.25);
  padding-bottom: 22px;
}
.footer-top img {
  height: 38px;
}
.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-top nav a {
  color: #fff;
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 7px 12px;
  border-radius: 4px;
  transition: background 0.17s, color 0.14s;
}
.footer-top nav a:hover, .footer-top nav a:focus {
  background: rgba(255,255,255,0.12);
  color: #F9F9F9;
}
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 26px;
}
.legal-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.legal-links a {
  color: #fff;
  text-decoration: underline;
  font-size: 0.97rem;
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #F4F4FF;
  font-size: 0.97rem;
}
.footer-address a {
  color: #F9F9F9;
  font-weight: 500;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* =============== COOKIE CONSENT BANNER =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #fff 72%, #E94560 150%);
  color: #1A1A2E;
  box-shadow: 0 -2px 28px 0 rgba(233,69,96,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 34px 18px 18px;
  gap: 24px;
  min-height: 60px;
  font-size: 1.01rem;
  border-top: 2px solid #E94560;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.3s, transform 0.4s cubic-bezier(0.86, 0.25, 0.35, 1.07);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner .btn-cookie {
  display: inline-flex;
  align-items: center;
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  border-radius: 20px;
  border: none;
  outline: none;
  padding: 8px 22px;
  cursor: pointer;
  box-shadow: 0 2px 11px 0 rgba(26,26,46,0.09);
  transition: background 0.18s, color 0.16s, box-shadow 0.17s;
}
.btn-cookie.accept {
  background: #E94560;
  color: #fff;
}
.btn-cookie.accept:hover, .btn-cookie.accept:focus {
  background: #1A1A2E;
  color: #fff;
  box-shadow: 0 6px 20px 0 rgba(233,69,96,0.13);
}
.btn-cookie.reject {
  background: transparent;
  color: #1A1A2E;
  border: 2px solid #1A1A2E;
}
.btn-cookie.reject:hover, .btn-cookie.reject:focus {
  background: #1A1A2E;
  color: #fff;
  border-color: #E94560;
}
.btn-cookie.settings {
  background: #fff;
  color: #E94560;
  border: 2px solid #E94560;
}
.btn-cookie.settings:hover, .btn-cookie.settings:focus {
  background: #E94560;
  color: #fff;
  border-color: #E94560;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 8px 16px 8px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}

/* === COOKIE PREFS MODAL === */
.cookie-modal-overlay {
  position: fixed;
  z-index: 99999;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(26,26,46,0.37);
  display: none;
  justify-content: center;
  align-items: center;
  transition: background 0.25s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #1A1A2E;
  border-radius: 22px;
  box-shadow: 0 10px 40px 0 rgba(233,69,96,0.15), 0 2px 12px rgba(26,26,46,0.13);
  padding: 36px 32px 22px 32px;
  min-width: 320px;
  max-width: 95vw;
  max-height: 86vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: fadeInUp 0.37s cubic-bezier(0.87,0.08,0.38,1.01);
}
@keyframes fadeInUp {
  from { transform: translateY(60px); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #E94560;
}
.cookie-modal .category {
  margin: 12px 0 10px 0;
}
.cookie-modal .category label {
  font-size: 1.08rem;
  color: #232336;
  padding-left: 8px;
  font-family: 'Roboto', sans-serif;
}
.cookie-modal .category input[type="checkbox"] {
  accent-color: #E94560;
}
.cookie-modal .category .readonly {
  color: #444;
  opacity: 0.65;
  cursor: default;
}
.cookie-modal .cookie-actions {
  margin-top: 22px;
}
.cookie-modal .close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  color: #E94560;
  border: none;
  font-size: 1.45rem;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  color: #1A1A2E;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 18px 6px 12px 10px;
    min-width: 0;
  }
}

/* ============ LAYOUT FLEX CLASSES =============== */
.card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* ============ UTILS, SPACING, AND MICRO-ANIMATIONS ============= */
.btn, button {
  font-family: 'Oswald', 'Roboto', sans-serif;
  cursor: pointer;
  font-weight: 500;
  border: none;
  outline: none;
  border-radius: 8px;
  transition: background 0.18s, color 0.17s, box-shadow 0.15s, transform 0.15s;
}
[hidden]{display:none !important;}

div.next-steps ul {
  margin-top: 7px;
  padding-left: 20px;
}
div.next-steps li{margin-bottom:6px;}

/* Responsive adjustments for very small screens */
@media (max-width: 420px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .cta.primary, .cta.secondary {
    font-size: 0.91rem;
    padding: 8px 12px;
  }
}

/* =============== END =============== */
