/* =======================
   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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #1C2531;
  color: #F5F7FB;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-style: none;
}
a {
  color: #E6B7C3;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #FFF;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 1rem;
}
li {
  margin-bottom: 8px;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 14px 10px;
}
th {
  background: #223044;
  color: #E6B7C3;
  font-weight: bold;
}
tr {
  border-bottom: 1px solid #39485a;
}

/* ============================
   CUSTOM PROPERTIES/FALLBACKS
   ============================ */
:root {
  --color-primary: #2A3B4D;
  --color-secondary: #E6B7C3;
  --color-accent: #FFFFFF;
  --color-bg-gradient-from: #1C2531;
  --color-bg-gradient-via: #2A3B4D;
  --color-bg-gradient-to: #23374e;
  --color-card-bg: #222e3b;
  --color-card-shadow: rgba(60, 255, 236, 0.06);
  --color-neon: #77fff9;
  --color-error: #e6606d;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --border-radius: 18px;
  --shadow-xl: 0 4px 32px 0 rgba(60,255,236,0.13), 0 1.5px 6px rgba(42,59,77,0.22);
  --shadow-md: 0 2px 14px rgba(60,255,236,0.11);
  --transition-fast: 0.18s cubic-bezier(.61,.01,.62,.95);
  --transition-slow: 0.44s cubic-bezier(.25,1,.5,1);
}

body {
  background: linear-gradient(135deg, var(--color-bg-gradient-from) 0%, var(--color-bg-gradient-via) 44%, var(--color-bg-gradient-to) 100%);
}

/* ================
   TYPOGRAPHY
   ================ */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  line-height: 1.14;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
p, td, th {
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
  color: #E3F3FC;
}
.text-section > ul,
.text-section > ol {
  margin-bottom: 16px;
}
.text-section em {
  color: var(--color-secondary);
}

/* ================
   LAYOUT FLEXBOX
   ================ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

/* ===============
   BRANDING LOGO
   =============== */
.logo {
  margin-right: 30px;
  flex-shrink: 0;
}
.logo img {
  height: 48px;
}

/* ===============
   HEADER / NAV
   =============== */
header {
  background: rgba(28,37,49,0.99);
  border-bottom: 1.5px solid #2A3B4D;
  padding: 0 0 4px;
  z-index: 120;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 76px;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav.main-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  color: #e3f3fc;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 8px;
  position: relative;
  transition: background var(--transition-fast), color var(--transition-fast);
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  background: #2A3B4D;
  color: var(--color-secondary);
}
.cta.primary {
  background: linear-gradient(90deg, #59FFD6 0%, #E6B7C3 100%);
  color: #181C1F;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 30px;
  margin-left: 24px;
  box-shadow: 0 4px 30px 0 rgba(230,183,195,0.13), 0 0.5px 1.5px rgba(90, 255, 225, 0.09);
  transition: box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
  text-shadow: 0 2px 9px #e6b7c36b;
  position: relative;
  z-index: 2;
}
.cta.primary:hover,
.cta.primary:focus {
  background: linear-gradient(90deg, #27e9f7 0%, #E6B7C3 100%);
  color: #101925;
  box-shadow: 0 2px 24px 0 #77fff99b;
}
.cta.secondary {
  background: transparent;
  border: 2px solid #E6B7C3;
  color: #E6B7C3;
  border-radius: var(--border-radius);
  padding: 11px 28px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 32px;
  cursor: pointer;
  box-shadow: none;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #E6B7C3;
  color: #172030;
  box-shadow: 0 2px 22px 0 #e6b7c371;
}

/* ===============
   MOBILE NAV MENU
   =============== */
.mobile-menu-toggle {
  margin-left: 16px;
  font-size: 2.2rem;
  line-height: 1;
  background: none;
  border: none;
  color: var(--color-secondary);
  cursor: pointer;
  z-index: 202;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--color-accent);
  background: rgba(230,183,195,0.08);
  border-radius: 50%;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2002;
  background: rgba(24,29,38,0.96);
  box-shadow: 0 12px 40px rgba(42,59,77,0.18);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.4,1.4,.45,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 2.0rem;
  margin: 24px 0 16px 24px;
  cursor: pointer;
  align-self: flex-start;
  transition: color var(--transition-fast);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-accent);
}
nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin: 24px 0 0 32px;
}
nav.mobile-nav a {
  color: #e6b7c3;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  padding: 10px 0 10px 8px;
  border-radius: 8px;
  width: fit-content;
  transition: background var(--transition-fast), color var(--transition-fast);
}
nav.mobile-nav a:hover, nav.mobile-nav a:focus {
  color: #fff;
  background: #2A3B4D;
}

/* ===============
   HERO SECTION
   =============== */
.hero {
  background: linear-gradient(90deg, #222e3b 65%, #2A3B4D 100%);
  padding: 68px 0 52px 0;
  box-shadow: 0 6px 24px 0 #2A3B4D14;
  border-radius: 0 0 30px 30px;
  margin-bottom: 64px;
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.hero h1, .hero h2 {
  color: #fff;
  text-shadow: 0 2px 28px #59FFD6BB, 0 1.5px 3px #282c2f2b;
}
.hero .cta.primary {
  margin-top: 24px;
}

/* =============
   FLEX UTILS
   ============= */
.feature-grid,
.service-list,
.benefit-grid,
.usp-grid,
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
  justify-content: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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: 15px;
  padding: 22px 26px;
  background: #fff;
  color: #223044;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 14px #2A3B4D25;
  min-width: 270px;
  min-height: 160px;
  font-size: 1rem;
  margin-bottom: 20px;
  margin-right: 20px;
  border-left: 3.5px solid #E6B7C3;
  transition: box-shadow 0.22s;
}
.testimonial-card .testimonial-rating {
  color: #E6B7C3;
  font-size: 1.16rem;
  letter-spacing: 2px;
}
.testimonial-card .testimonial-author {
  font-size: 0.97rem;
  color: #7a8696;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px #E6B7C335;
  border-left-color: #59FFD6;
}

.feature-item, .usp-item, .benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 22px 18px 20px 19px;
  background: #222e3b;
  color: #E6B7C3;
  border-radius: var(--border-radius);
  box-shadow: 0 3px 18px #27e9f755;
  min-width: 216px;
  min-height: 180px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-left: 3px solid #77fff9;
  transition: box-shadow 0.18s, border-left-color 0.18s;
}
.feature-item:hover, .usp-item:hover, .benefit-item:hover {
  box-shadow: 0 8px 32px #59FFD6aa;
  border-left-color: #E6B7C3;
}
.feature-item img, .usp-item img, .benefit-item img {
  max-width: 38px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 6px #77fff941);
}

/* ================
   SERVICE CARDS   
   ================ */
.service-list {
  gap: 20px;
  margin-bottom: 32px;
  margin-top: 18px;
}
.service-card {
  background: #222e3b;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 13px #0776810c;
  padding: 22px 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  min-width: 230px;
  width: 100%;
  max-width: 320px;
  position: relative;
  border-bottom: 2.5px solid #59FFD6;
  transition: box-shadow 0.18s, border-bottom-color 0.18s;
}
.service-card:hover {
  box-shadow: 0 8px 30px #59FFD644;
  border-bottom-color: #E6B7C3;
}
.service-card h3 {
  font-size: 1.07rem;
  color: #fff;
}
.service-card .service-price {
  font-family: var(--font-display);
  color: #E6B7C3;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 14px;
}

/* ===============
   PRICING TABLE
   =============== */
.pricing-table thead th {
  border-radius: 0;
}
.pricing-table td, .pricing-table th {
  border-bottom: 1px solid #364455;
}
.pricing-table tbody tr:nth-child(even) td {
  background: #253147;
}
.pricing-table tbody tr:nth-child(odd) td {
  background: #1C2531;
}
.pricing-table th {
  background: #222e3b;
}

.package-options {
  margin: 14px 0 0 0;
  padding: 14px 8px 10px 14px;
  background: #1C2531;
  border-radius: 14px;
  box-shadow: 0 2px 8px #59FFD61b;
  color: #E6B7C3;
  max-width: 470px;
}
.package-options h3 {
  color: #fff;
  font-size: 1.11rem;
  margin-bottom: 9px;
}

.value-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.value-highlights li {
  background: #222e3b;
  color: #E6B7C3;
  border-radius: 14px;
  padding: 11px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 222px;
  margin-bottom: 10px;
  box-shadow: 0 1.5px 6px #77fff94f;
  font-size: 1rem;
  border-left: 3px solid #59FFD6;
}
.value-highlights img {
  max-width: 24px;
}

/* ==============
   FOOTER
   ============== */
footer {
  background: #19202a;
  border-top: 1.5px solid #273344;
  color: #A2B5C7;
  padding: 32px 0 22px 0;
  margin-top:48px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #E6B7C3;
  font-size: 1.01rem;
  font-family: var(--font-body);
  font-weight: 600;
  transition: color var(--transition-fast);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #77fff9;
}
footer p {
  font-size: 0.98rem;
  opacity: .8;
  color: #d3e0ee;
}

/* ================
   COOKIE CONSENT
   ================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #191d23;
  color: #e3f3fc;
  z-index: 5006;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 -4px 28px #2A3B4D22;
  padding: 18px 10px 14px 10px;
  font-size: 1rem;
  animation: cookiebanner-in 0.6s cubic-bezier(.36,2.8,.35,1.15);
}
@keyframes cookiebanner-in {
  from { transform: translateY(100%); opacity:0; }
  to { transform:translateY(0); opacity:1;}
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 15px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #222e3b;
  color: #E6B7C3;
  border: none;
  border-radius: 9px;
  padding: 10px 19px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
  cursor: pointer;
  box-shadow: 0 2px 10px #59FFD633;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.cookie-banner button.accept {
  background: linear-gradient(90deg, #E6B7C3 0%, #59FFD6 100%);
  color: #222e3b;
}
.cookie-banner button.reject {
  background: #1C2531;
  color: #E6B7C3;
  border: 2px solid #59FFD6;
}
.cookie-banner button.settings {
  background: #2A3B4D;
  color: #77fff9;
}
.cookie-banner button:hover {
  filter: brightness(1.06);
  background: #59FFD6;
  color: #172030;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(13,16,19,.64);
  z-index: 5010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  animation: modal-fade-in .4s cubic-bezier(.45,1.5,.38,1.2);
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #222e3b;
  border-radius: 22px;
  box-shadow: 0 12px 50px #59FFD645;
  color: #E6B7C3;
  padding: 32px 34px 18px 34px;
  min-width: 330px;
  min-height: 210px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: modalup .4s cubic-bezier(.45,1.3,.45,1.1);
}
@keyframes modalup{
  from { transform: translateY(80px); opacity: 0;}
  to { transform: translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #fff;
}
.cookie-preferences {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #273344;
  border-radius: 10px;
  padding: 11px 17px;
  margin-bottom: 6px;
}
.cookie-category label {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #59FFD6;
  width: 19px;
  height: 19px;
}
.cookie-category .always {
  color: #77fff9;
  font-size: 1rem;
  font-weight: 600;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-close {
  background: none;
  border: none;
  color: #E6B7C3;
  position: absolute;
  top: 15px;
  right: 24px;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 16;
  transition: color 0.2s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #fff;
}

/* ===========
   UTILS
   =========== */
::-webkit-input-placeholder { color:#a0b2c5;}
::-moz-placeholder { color:#a0b2c5;}
:-ms-input-placeholder { color:#a0b2c5;}
::placeholder { color: #a0b2c5; opacity:1;}

.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.text-section ul, .text-section ol { margin-bottom: 0; }

/* ==============
   RESPONSIVE
   ============== */
@media (max-width: 1149px){
  .container { max-width: 92vw; }
}
@media (max-width: 950px){
  .hero .container { padding: 0 10px; }
  .main-nav { gap: 20px; }
  .feature-grid, .service-list, .usp-grid, .benefit-grid { gap: 16px; }
}

@media (max-width: 900px){
  .feature-grid, .service-list, .usp-grid, .benefit-grid { flex-direction: column; align-items: stretch; }
  .footer-nav { flex-direction: column; gap: 10px; }
  .service-card, .feature-item, .usp-item, .benefit-item { min-width: unset; max-width: 100%; width: 100%; }
}

@media (max-width: 768px) {
  header .container {
    gap: 12px;
    padding: 0 12px;
  }
  .main-nav,
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero { padding: 37px 0 26px 0; margin-bottom:38px; border-radius: 0 0 19px 19px; }
  .content-wrapper { padding: 0; }
  .feature-grid,
  .service-list,
  .usp-grid,
  .benefit-grid,
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-grid { flex-direction: column; gap: 18px; }
  .section {
    padding: 26px 6px;
    margin-bottom: 30px;
  }
  .footer-nav {
    gap: 10px;
    justify-content: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap:14px;
  }
}
@media (max-width:500px){
 .hero { padding: 21px 0 11px 0; }
 .logo img { height: 36px; }
 th, td { padding: 7px 3px; font-size: 0.98rem;}
 .service-card, .feature-item, .usp-item, .testimonial-card, .benefit-item { padding: 12px 9px; }
 .cookie-modal { min-width: 96vw; padding: 14px 6vw 9px 6vw; }
}

/* ===============
   MICRO-INTERACTIONS
   =============== */
.feature-item, .usp-item, .service-card, .testimonial-card, .benefit-item {
  cursor: pointer;
  will-change: box-shadow, border-color;
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast), border-bottom-color var(--transition-fast);
}
.feature-item:active, .usp-item:active, .service-card:active, .testimonial-card:active, .benefit-item:active {
  box-shadow: 0 2px 4px #59FFD699;
  opacity: 0.96;
}

button,
[type=button],
[type=submit] {
  border: none;
  background: none;
  font-family: var(--font-body);
  font-weight: 600;
}
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #E6B7C3;
}

/* ===============
   ANIMATIONS
   =============== */
.card, .feature-item, .service-card, .usp-item, .testimonial-card, .benefit-item {
  animation: fadeInUp 0.79s cubic-bezier(.36,2.2,.35,1.12) backwards;
}
@keyframes fadeInUp {
  from { transform: translateY(44px); opacity: 0; }
  to { transform: translateY(0); opacity: 1;}
}

/* ===============
   FORM / ERROR
   =============== */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  background: #253147;
  color: #E6B7C3;
  border: 1.5px solid #273344;
  padding: 10px 14px;
  border-radius: 9px;
  width: 100%;
  margin-bottom: 14px;
  transition: border var(--transition-fast);
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #77fff9;
  background: #222e3b;
}

.error,
input.error, textarea.error {
  border-color: var(--color-error);
}

/* ===============
   MISC.
   =============== */
::-webkit-scrollbar {
  width: 7px;
  background: #222E3B;
}
::-webkit-scrollbar-thumb {
  background: #2A3B4D;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #59FFD6;
}
