/* =========================
   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,
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 {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #0C1B30;
  height: 100%;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #0C1B30;
  color: #F1F7FA;
  line-height: 1.6;
  scroll-behavior: smooth;
  font-size: 1rem;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
  border-radius: 8px;
  border: none;
  background: none;
}

/* =========================
   BRAND VARIABLES & COLORS
   ========================= */
:root {
  --brand-primary: #1A74AC;
  --brand-secondary: #FEA82F;
  --brand-accent: #F1F7FA;
  --brand-dark: #0C1B30;
  --brand-grey: #1D2636;
  --brand-surface: #101c32;
  --brand-card: #14213d;
  --brand-border: #22314E;
  --brand-shadow: 0 4px 24px 0 rgba(26, 116, 172, 0.14);
  --neon-blue: #27C2F2;
  --neon-orange: #FEA82F;
  --neon-cyan: #3EF2B5;
  --neon-shadow: 0 0 8px 1px #27C2F2;
  --text: #F1F7FA;
  --text-dark: #14213d;
  --text-light: #dde6f5;
  --font-display: 'Baloo 2', 'Segoe UI', Open Sans, Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* =========================
   LAYOUT & UTILS
   ========================= */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-surface);
  border-radius: 24px;
  box-shadow: var(--brand-shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--brand-card);
  border-radius: 18px;
  box-shadow: var(--brand-shadow);
  padding: 28px 20px;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s;
  border: 1.5px solid transparent;
}
.card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(39,194,242,0.26);
  border-color: var(--neon-blue);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--brand-accent);
  color: var(--brand-dark);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(26,116,172,0.08);
  border: 2px solid var(--brand-secondary);
  max-width: 540px;
}
.testimonial-card p {
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.testimonial-card span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-primary);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.035em;
}
h1 {
  font-size: 2.8rem;
  color: var(--brand-secondary);
  text-shadow: 0 0 8px var(--brand-secondary), 0 2px 12px #1A74AC66;
}
h2 {
  font-size: 2rem;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.18rem;
}
p, ul, ol, blockquote {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--text-light);
}
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
  color: var(--brand-accent);
  font-size: 1.08rem;
}
ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--brand-secondary);
  border-radius: 50%;
  box-shadow: 0 0 4px var(--brand-secondary);
  opacity: 0.9;
}

strong {
  font-weight: 600;
  color: var(--brand-secondary);
}
.price {
  color: var(--neon-cyan);
  font-size: 1.1em;
  font-weight: 600;
  margin-left: 10px;
}

/* =========================
   BUTTONS AND CTAs
   ========================= */
.btn-primary, 
.main-nav a.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 38px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 0 16px 2px #36a0ff55;
  transition: background 0.19s, box-shadow 0.25s, transform 0.2s;
  cursor: pointer;
  text-align: center;
  margin: 12px 0 0 0;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.btn-primary:hover,
.main-nav a.btn-primary:hover,
.btn-primary:focus {
  background: var(--neon-blue);
  color: #fff;
  box-shadow: 0 0 16px 4px #27C2F2cc;
  transform: translateY(-2px) scale(1.05);
}
.btn-secondary {
  background: var(--brand-secondary);
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 13px 34px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 0 10px 0 #fea82f80;
  margin: 12px 0 0 0;
  transition: background 0.19s, color 0.19s, transform 0.2s;
  display: inline-block;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--neon-orange);
  color: var(--brand-dark);
  transform: translateY(-2px) scale(1.04);
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  width: 100%;
  background: #101c32;
  box-shadow: 0 5px 20px 0 rgba(26,116,172,0.06);
  position: relative;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 74px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--brand-accent);
  padding: 7px 18px;
  border-radius: 8px;
  font-size: 1.09rem;
  transition: background .18s, color .18s, box-shadow .22s;
  position: relative;
  z-index: 1;
}
.main-nav a:not(.btn-primary):hover, .main-nav a:not(.btn-primary):focus {
  background: var(--brand-primary);
  color: #fff;
  text-shadow: 0 0 10px #1A74AC66;
}
.main-nav a.btn-primary {
  margin-left: 18px;
}

/* =============
 MOBILE MENU
 ============= */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-secondary);
  color: var(--brand-dark);
  font-size: 2.2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 6px 1px #fea82fd0;
  cursor: pointer;
  z-index: 999;
  transition: box-shadow 0.2s;
}
.mobile-menu-toggle:hover {
  box-shadow: 0 0 22px 5px #fea82f88;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #101c32;
  box-shadow: 0 8px 40px 10px #1a74ac35;
  z-index: 1999;
  transform: translateX(-105%);
  transition: transform 0.3s cubic-bezier(.78,.01,.27,.99);
  opacity: 1;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: var(--brand-secondary);
  cursor: pointer;
  z-index: 99;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: flex-start;
  margin-top: 100px;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.28rem;
  font-family: var(--font-display);
  color: var(--text);
  padding: 12px 20px;
  border-radius: 8px;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-primary);
  color: #fff;
}

/* ================
  MAIN CONTENT
================= */
main {
  flex: 1 1 auto;
  width: 100%;
  background: linear-gradient(109deg, #101c32 0%, #1A74AC 100%);
  padding: 42px 0 0 0;
}

section {
  margin-bottom: 60px;
  padding: 40px 0;
}

/* ========================
   CTA on Hero Section
   ======================== */
.section.hero, section:first-of-type {
  background: linear-gradient(103deg, #1A74AC 0%, #27C2F2 100%);
  color: #fff;
  box-shadow: 0 10px 40px 10px #27c2f233;
  position: relative;
}
.section.hero h1, section:first-of-type h1 {
  color: #fff;
  text-shadow: 0 0 16px #1A74AC, 0 5px 25px #27C2F2cc;
}
.section.hero .btn-primary, section:first-of-type .btn-primary {
  background: var(--neon-blue);
  color: var(--brand-dark);
  box-shadow: 0 0 18px 3px #3ef2b555;
}
.section.hero .btn-primary:hover {
  background: var(--brand-secondary);
  color: var(--brand-dark);
}

/* =====================
   CARDS & ICONS
====================== */
.card img, ul li img {
  width: 34px;
  height: 34px;
  margin-right: 18px;
  vertical-align: middle;
  display: inline-block;
}
ul li img {
  position: relative;
  top: 7px;
  left: 0;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

/* =====================
   FOOTER
====================== */
footer {
  width: 100%;
  background: #101c32;
  border-top: 2px solid var(--brand-primary);
  color: var(--brand-accent);
  padding: 26px 0 14px 0;
  margin-top: 30px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--brand-accent);
  font-size: 1.01rem;
  font-family: var(--font-body);
  opacity: 0.85;
  padding: 4px 0;
  transition: color .17s;
}
.footer-nav a:hover { color: var(--neon-blue); opacity:1; }
.brand-info {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--brand-accent);
  font-size: .98rem;
  font-family: var(--font-body);
}
.brand-info img {
  width: 46px;
  height: 46px;
}
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-links a img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 2px 12px #1A74AC55);
  transition: transform .16s;
}
.social-links a:hover img {
  transform: scale(1.12) rotate(6deg);
}

/* =====================
   COOKIE CONSENT BANNER
====================== */
.cookie-banner {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #132140cc;
  color: var(--brand-accent);
  border-top: 3px solid var(--brand-secondary);
  box-shadow: 0 -4px 28px 0 #13214055;
  padding: 22px 20px;
  z-index: 3000;
  font-family: var(--font-body);
  font-size: 1rem;
  animation: bannerIn 0.37s cubic-bezier(.43, 1.14, .47, 1.03);
}
.cookie-banner__text {
  flex: 2 1 80%;
  margin-right: 10px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-btn {
  padding: 11px 26px;
  border-radius: 32px;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background .18s, color .19s, transform .16s;
}
.cookie-btn--accept {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-btn--accept:hover {
  background: var(--neon-cyan);
  color: var(--brand-dark);
}
.cookie-btn--reject {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cookie-btn--reject:hover {
  background: var(--neon-blue);
  color: #fff;
}
.cookie-btn--settings {
  background: transparent;
  color: var(--brand-secondary);
  border: 1px solid var(--brand-secondary);
}
.cookie-btn--settings:hover {
  background: var(--brand-secondary);
  color: var(--brand-dark);
}
@keyframes bannerIn {
  from {transform: translateY(80px); opacity: 0;} to {transform: translateY(0); opacity: 1;}
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 3333;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: #0c1b3099;
  animation: fadeIn .26s cubic-bezier(.47,1.04,.57,.97);
}
@keyframes fadeIn {
  from {opacity: 0;} to {opacity:1;}
}
.cookie-modal {
  background: var(--brand-card);
  border-radius: 22px;
  box-shadow: 0 6px 36px 2px #1A74AC44;
  padding: 38px 28px 28px 28px;
  max-width: 480px;
  width: 94vw;
  color: var(--brand-accent);
  font-family: var(--font-body);
  text-align: left;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.6rem;
  color: var(--neon-blue);
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--brand-primary);
}
.cookie-modal-footer {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 21px;
  font-size: 1.9rem;
  color: var(--brand-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .18s;
}
.cookie-modal-close:hover { color: var(--brand-primary); }

/* =====================
   RESPONSIVE BREAKPOINTS
====================== */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
  .footer .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 990px) {
  header .container { flex-direction: column; align-items: flex-start; gap:10px; }
  .main-nav {gap:7px;}
  .footer-nav {gap:10px;}
}
@media (max-width: 850px) {
  h1 { font-size: 2.12rem; }
  h2 { font-size: 1.44rem; }
  .section, section{ padding: 32px 9px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .section {
    padding: 30px 5px;
  }
  .text-image-section, .content-grid, .card-container, .feature-list {
    flex-direction: column !important;
    gap: 22px !important;
  }
  .footer .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    gap: 26px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.12rem; }
  .section { padding: 18px 2px; }
  .card, .testimonial-card {padding: 13px 10px;}
  .cookie-modal {padding:16px 6vw 10px 6vw;}
}
@media (max-width: 480px) {
  .brand-info img { width:32px; height:32px; }
  .social-links a img { width:29px; height:29px; }
  .cookie-banner { flex-direction: column; gap:13px; font-size:0.98rem; padding:15px 5px; }
  .cookie-banner__actions { gap:10px; }
}

/* =====================
    ANIMATIONS
====================== */
.btn-primary, .btn-secondary, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: box-shadow .21s, background .19s, color .19s, transform .14s;
}
.card, .testimonial-card {
  transition: box-shadow .22s, border-color .16s, transform .2s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 10px 48px 3px #27C2F255;
  border-color: var(--neon-cyan);
  transform: scale(1.015);
}

/* =====================
    MISC. DESIGN ENHANCEMENTS
====================== */
::-webkit-scrollbar { width: 8px; background: #14213d; }
::-webkit-scrollbar-thumb { background: var(--brand-primary); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-blue); }

::selection {
  background: var(--neon-cyan);
  color: var(--brand-dark);
}

/* ====== END BRAND CSS ====== */