/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}

/* BRAND TYPOGRAPHY */
:root {
  --primary: #21436E;
  --primary-rgb: 33,67,110;
  --secondary: #4AC29A;
  --accent: #F2F7FA;
  --neon: #32ffd1;
  --neon-blue: #3f8aff;
  --dark-bg: #15192A;
  --card-bg: #192342;
  --white: #fff;
  --shadow: 0 4px 24px 0 rgba(33,67,110,0.15);
  --radius: 16px;
  --focus: #74fff1;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--dark-bg);
  color: var(--accent);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--white);
  margin-bottom: 12px;
}
h1 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
h2 {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
h3 {
  font-size: 1.2rem;
  font-weight: 500;
}
.text-section h2, .text-section h1, .content-wrapper h1, .content-wrapper h2 {
  color: var(--secondary); /* Futuristic highlight */
}
p, li, ol, ul, span {
  font-size: 1rem;
}

/* LAYOUT & SPACING */
.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}
.section, section, main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 28px 2px rgba(62,255,209,0.15), var(--shadow);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonials {
  padding-top: 0;
  padding-bottom: 0;
}
.testimonial-card {
  background: var(--accent);
  color: #202540;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(79,200,154,0.15);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  margin-top: 12px;
}
.testimonial-card span {
  font-size: 0.96em;
  color: var(--primary);
  font-weight: 700;
  margin-top: 6px;
  align-self: flex-end;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* NAVIGATION & HEADER */
header {
  background: linear-gradient(90deg, rgba(33,67,110,1) 70%, rgba(74,194,154,0.55) 100%);
  box-shadow: 0 2px 24px rgba(33,67,110,0.20);
  z-index: 99;
  padding: 0;
  position: relative;
}
nav {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  padding: 16px 0 16px 0;
}
nav a {
  color: var(--accent);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 8px;
  padding: 9px 14px;
  transition: background 0.16s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: var(--secondary);
  color: var(--dark-bg);
}
nav a.cta-primary {
  background: var(--neon-blue);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  position: relative;
  box-shadow: 0 0 8px 1px var(--neon-blue);
  transition: box-shadow 0.2s, transform 0.13s;
}
nav a.cta-primary:hover, nav a.cta-primary:focus {
  box-shadow: 0 0 16px 4px var(--neon-blue), 0 2px 8px rgba(33,67,110,0.15);
  transform: scale(1.035);
  color: var(--white);
}
nav a img {
  height: 38px;
  width: auto;
  margin-right: 16px;
  border-radius: 60% 40% 45% 50% / 55% 45% 60% 50%;
}
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--dark-bg);
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  box-shadow: 0px 2px 6px rgba(74,194,154,0.10);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  z-index: 120;
  position: relative;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--neon);
  color: var(--dark-bg);
}
/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  width: 100vw;
  height: 100vh;
  background: rgba(21,25,42,0.97);
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.59,.32,.39,1.28);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 26px 10px 26px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.9rem;
  color: var(--white);
  background: rgba(74,194,154,.98);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s;
  box-shadow: 0 2px 10px rgba(74,194,154,0.09);
  cursor: pointer;
  z-index: 155;
}
.mobile-menu-close:hover {
  background: var(--neon-blue);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin-top: 66px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--accent);
  border-bottom: 1px solid rgba(69,190,153,0.07);
  padding: 11px 0;
  transition: color 0.19s, background 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--neon);
  background: rgba(74,194,154,0.07);
}

/* HERO SECTION */
.hero {
  background:linear-gradient(100deg, #222e40 70%, #4AC29A 110%);
  padding: 56px 20px 44px 20px;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  box-shadow: 0 8px 64px 10px rgba(33,67,110,0.19);
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
}

/* CTA BUTTONS */
.cta-primary {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark-bg);
  padding: 13px 28px;
  border-radius: 52px;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  margin-top: 12px;
  margin-bottom: 0;
  box-shadow: 0 0 18px 2px var(--neon-blue), 0 2px 8px rgba(33,67,110,0.10);
  transition: background 0.20s, color 0.18s, transform 0.14s, box-shadow 0.22s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--neon);
  color: var(--primary);
  transform: scale(1.045);
  box-shadow: 0 0 36px 6px var(--neon), 0 2px 16px rgba(33,67,110,0.13);
}

/* SECTION LISTS & ICONS */
ul li, ol li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 1.08rem;
}
ul li img, ol li img {
  width: 26px;
  height: 26px;
  margin-right: 6px;
  background: rgba(74,194,154,0.16);
  border-radius: 8px;
  padding: 3px;
}

/* OFFER CARDS & PRICING TABLE */
.offer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.offer-card {
  background: var(--card-bg);
  border-left: 6px solid var(--secondary);
  border-radius: var(--radius);
  padding: 20px 24px;
  min-width: 230px;
  box-shadow: var(--shadow);
  transition: border-color 0.18s, transform 0.15s;
  flex: 1 0 260px;
}
.offer-card:hover {
  border-left: 6px solid var(--neon);
  transform: translateY(-6px) scale(1.04);
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 28px 0 0 0;
}
.plan {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 28px 32px 28px;
  flex: 1 0 250px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
  border: 2.5px solid transparent;
  transition: border-color 0.20s, box-shadow 0.13s, transform 0.14s;
}
.plan.highlighted {
  border-color: var(--secondary);
  box-shadow: 0 0 24px 3px var(--secondary);
  z-index: 1;
}
.plan:hover {
  border-color: var(--neon);
  box-shadow: 0 0 40px 2px var(--neon), var(--shadow);
  transform: scale(1.045);
}
.plan h2 {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 12px;
}
.plan p {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.plan ul {
  margin-top: 16px;
  list-style: none;
  text-align: left;
  color: var(--accent);
  font-size: 1rem;
  padding-left: 0;
}
.plan ul li {
  margin-bottom: 8px;
  gap: 7px;
  font-size: 1rem;
  align-items: flex-start;
}

/* SEARCH AREA */
.search-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  background: rgba(34,46,64,0.96);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(33,67,110,0.10);
  padding: 24px 18px;
  margin: 14px 0 16px 0;
}
.search-section label {
  font-size: 0.98rem;
  color: var(--secondary);
  margin-right: 2px;
  margin-bottom: 0;
}
.search-section input, .search-section select {
  background: var(--accent);
  color: #223143;
  padding: 9px 17px;
  border-radius: 8px;
  border: 1.8px solid var(--secondary);
  font-size: 1rem;
  margin-right: 8px;
  min-width: 160px;
  transition: border-color 0.17s, box-shadow 0.14s;
}
.search-section input:focus, .search-section select:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 8px 2px var(--neon-blue);
}
.search-section .cta-primary {
  margin: 0 0 0 12px;
  padding: 11px 24px;
  font-size: 1.04rem;
}

/* SORTING SELECT */
#sorting, #filters {
  background: var(--accent);
  color: #223143;
  padding: 9px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--secondary);
  font-size: 1rem;
  min-width: 140px;
  margin-left: 12px;
  margin-top: 6px;
  transition: border-color 0.17s;
}
#sorting:focus, #filters:focus {
  border-color: var(--neon);
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0 6px 0;
}
.contact-info li {
  font-size: 1.08rem;
  color: var(--accent);
  gap: 12px;
}
.contact-info img {
  width: 22px;
  height: 22px;
  margin-right: 5px;
  opacity: .96;
}

/* FOOTER */
footer {
  background: #181d2c;
  color: var(--accent);
  border-top: 3px solid var(--secondary);
  margin-top: 40px;
  padding: 32px 0 12px 0;
  font-size: 0.98rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
}
.footer-nav a {
  color: var(--secondary);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: var(--neon);
  text-decoration: underline;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 13px;
  color: var(--accent);
  font-size: 0.97rem;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #242e40;
  color: var(--accent);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 23px;
  justify-content: center;
  padding: 25px 18px 22px 18px;
  box-shadow: 0 -3px 24px rgba(33,67,110,0.24);
  z-index: 2000;
  transition: transform 0.28s cubic-bezier(.67,-0.2,.35,1.35), opacity 0.23s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 0 200px;
  font-size: 1.01rem;
  margin-right: 24px;
}
.cookie-banner button, .cookie-banner .cta-primary, .cookie-banner .cookie-settings {
  min-width: 120px;
  padding: 9px 18px;
  border-radius: 36px;
  border: none;
  margin: 0 10px 0 0;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.15s, color 0.16s;
}
.cookie-banner .accept-cookie {
  background: var(--secondary);
  color: var(--dark-bg);
}
.cookie-banner .accept-cookie:hover {
  background: var(--neon);
  color: var(--dark-bg);
}
.cookie-banner .reject-cookie {
  background: #27375b;
  color: var(--secondary);
}
.cookie-banner .reject-cookie:hover {
  background: #223143;
}
.cookie-banner .cookie-settings {
  background: none;
  color: var(--accent);
  text-decoration: underline;
  padding: 0 3px;
  min-width: unset;
}
.cookie-banner .cookie-settings:hover {
  color: var(--secondary);
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal {
  position: fixed;
  z-index: 2100;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33,67,110,0.65);
  opacity: 1;
  transition: opacity 0.31s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #232b44;
  color: var(--accent);
  padding: 38px 36px 30px 36px;
  border-radius: 20px;
  box-shadow: 0 15px 40px 8px rgba(33,67,110,0.36);
  max-width: 400px;
  width: 95vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal-content h3 {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-category .toggle {
  width: 37px;
  height: 21px;
  border-radius: 13px;
  background: var(--accent);
  position: relative;
  transition: background 0.16s;
  margin-left: 6px;
  cursor: pointer;
}
.cookie-category .toggle[aria-checked="true"] {
  background: var(--secondary);
}
.cookie-category .toggle .dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #27375b;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.14s, background 0.12s;
}
.cookie-category .toggle[aria-checked="true"] .dot {
  left: 18px;
  background: var(--dark-bg);
}
.cookie-modal-content .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.cookie-modal-content .close-modal {
  position: absolute;
  top: 13px; right: 16px;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-content .close-modal:hover {
  color: var(--neon);
}

/* TEXT SECTIONS */
.text-section {
  background: rgba(27,34,55,0.996);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 30px 28px;
  margin: 12px 0 10px 0;
  color: var(--accent);
  flex: 1 1 100%;
}
.text-section h1, .text-section h2, .text-section h3 {
  color: var(--secondary);
}

/* ANIMATIONS & TRANSITIONS */
html {
  scroll-behavior: smooth;
}
.fade-in {
  animation: fadeIn 0.7s cubic-bezier(.22,1.08,.39,0.98);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ======== RESPONSIVE DESIGN ======== */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
  .pricing-table, .offer-list { flex-direction: column; align-items: stretch; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .content-grid { flex-direction: column; gap: 16px; }
  .section, section, main > section { padding: 35px 12px; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .mobile-menu-toggle { display: flex; position: absolute; right: 16px; top: 14px; }
  .hero { padding: 38px 9px 28px 9px; border-radius: 0 0 32px 32px; }
  .pricing-table, .offer-list, .card-container, .content-grid { flex-direction: column; gap: 16px; }
  .text-image-section { flex-direction: column; gap: 20px; align-items: stretch; }
  .plan, .card, .offer-card, .testimonial-card { min-width: 0; width: 100%; }
  .search-section { flex-direction: column; gap: 13px; padding: 17px 7px; }
  .cookie-modal-content { padding: 24px 12px; width: 97vw; max-width: 97vw; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  .footer-info span { font-size: 0.94rem; }
  .hero {
    border-radius: 0 0 17px 17px;
    padding: 18px 2vw 15px 2vw;
  }
  .search-section label, .search-section input, .search-section select {
    font-size: 0.97rem;
  }
}

/* ===== FOCUS ACCESSIBILITY ===== */
a, button, input, select, .cta-primary:focus {
  outline: none;
  box-shadow: none;
}
a:focus, .cta-primary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

/* SELECTION COLORS */
::selection {
  background: var(--secondary);
  color: var(--dark-bg);
}

/* MISCELLANEOUS */
::-webkit-scrollbar {
  width: 10px;
  background: #232a3f;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Hide cookie modal and banner by default for fadeOut purposes (add .hide with JS). */

/* Hide 'display: grid', 'columns', and 'column-*' -- NOT USED ANYWHERE ON PURPOSE. */

/* === END OF STYLE === */
