/* RESET & BASELINE STYLES */
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #F7F7F8;
  background: #202A36;
  background-image: linear-gradient(140deg, #233246 0%, #232A3C 100%);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #3AC2FF;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  text-shadow: 0 0 8px #3AC2FF55;
}

/* BRAND COLORS & FONTS */
:root {
  --color-primary: #2C3E55;
  --color-secondary: #F7F7F8;
  --color-accent: #3AC2FF;
  --shadow-main: 0 2px 16px 0 rgba(58,194,255, 0.06), 0 1.5px 80px 0 rgba(42,70,120,0.15);
  --br-lg: 20px;
  --br-md: 14px;
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
}

/* TYPOGRAPHY SCALE */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #3AC2FF;
  letter-spacing: 0.02em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #fff;
}
h4, .h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, ul, ol, li, table, th, td, label {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #F7F7F8;
}
strong {
  color: #3AC2FF;
  font-weight: bold;
}
ul, ol {
  margin-left: 1.25rem;
  margin-bottom: 16px;
}

/* FLEX CONTAINER UTILITIES */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #263951;
  border-radius: var(--br-md);
  box-shadow: var(--shadow-main);
  padding: 24px 20px;
  overflow: hidden;
  transition: transform 0.17s cubic-bezier(.45,.1,.4,1), box-shadow 0.19s;
}
.card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 2px 25px 0 #3AC2FF55, 0 1.5px 80px 0 #26395130;
}
.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;
  padding: 20px;
  background: #fff;
  border-radius: var(--br-md);
  box-shadow: 0 2px 24px 0 #1d263345, 0 2px 20px 0 #3AC2FF11;
  min-width: 260px;
  max-width: 380px;
  color: #232A3C;
  margin-bottom: 20px;
  margin-right: 20px;
}
.testimonial-card p {
  color: #232A3C;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.testimonial-meta {
  font-family: var(--font-display);
  color: #3AC2FF;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #263951;
  border-radius: var(--br-md);
  padding: 22px 20px;
  min-width: 220px;
  box-shadow: 0 1px 12px 0 #3ac2ff17;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.17s;
}
.feature-item:hover {
  box-shadow: 0 2px 20px 0 #3AC2FF33, 0 0px 80px 0 #26395130;
  transform: translateY(-2px) scale(1.02);
}
.feature-item img {
  width: 48px;
  height: 48px;
}
/* Responsive feature grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
/* TABLES */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  background: #24304a;
  border-radius: var(--br-lg);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  font-family: var(--font-body);
  padding: 16px 18px;
  border-bottom: 1px solid #303e51;
  text-align: left;
}
.pricing-table th {
  background: #2C3E55;
  color: #3AC2FF;
  font-size: 1.09rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.pricing-table td {
  background: #263951;
  color: #F7F7F8;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* BUTTONS & CTA */
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  outline: none;
  border-radius: var(--br-md);
  padding: 13px 36px;
  margin-top: 14px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1.5px 8px 0 #3AC2FF55;
  background: linear-gradient(110deg, #3AC2FF 3%, #2C3E55 67%, #3AC2FF 96%);
  color: #fff;
  letter-spacing: 0.012em;
  text-shadow: 0 1px 12px #21262a11;
  transition: background 0.2s, box-shadow 0.24s, transform 0.15s;
  position: relative;
  z-index: 1;
  gap: 6px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #1a283c;
  color: #3AC2FF;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 3px 18px #3AC2FF77;
}
.cta-secondary {
  background: #263951;
  color: #3AC2FF;
  border: 2px solid #3AC2FF;
  transition: color 0.19s, background 0.18s, box-shadow 0.18s;
  margin-left: 16px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #3AC2FF;
  color: #232A3C;
  box-shadow: 0 2px 18px #3AC2FF77;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #232A3C;
  box-shadow: 0 2px 16px 0 #31406033;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  min-height: 74px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.97rem;
  letter-spacing: 0.015em;
  padding: 8px 11px;
  border-radius: 8px;
  transition: background 0.18s, color 0.14s, box-shadow 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #3AC2FF;
  color: #21262a;
  text-shadow: none;
  box-shadow: 0 2px 10px #3AC2FF55;
}
.mobile-menu-toggle {
  background: #232A3C;
  color: #3AC2FF;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.1s, color 0.13s;
  z-index: 40;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #3AC2FF;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 40, 60, 0.99);
  backdrop-filter: blur(4.5px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(.6,.04,.6,1), opacity 0.3s;
  z-index: 102;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  color: #3AC2FF;
  font-size: 2.2rem;
  border: none;
  outline: none;
  margin-top: 18px;
  margin-right: 22px;
  cursor: pointer;
  transition: color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
  width: 100vw;
  align-items: flex-start;
  padding-left: 48px;
  padding-bottom: 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 9px 6px 9px 0;
  border-radius: 11px;
  transition: color 0.14s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #3AC2FF;
  background: #2C3E55;
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 8px;
  }
  .cta-primary {
    padding: 11px 22px;
    font-size: 0.95rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 6px;
  }
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 851px) {
  .mobile-menu {
    display: none!important;
  }
}

/* HERO SECTION */
.hero {
  padding: 64px 0 40px 0;
  background: linear-gradient(110deg, #233246 85%, #2C3E55 100%);
  box-shadow: 0 4px 64px 0 #1d263333;
}
.hero .container {
  flex-direction: column;
  align-items: start;
}
.hero .h1, .hero h1 {
  color: #fff;
  font-size: 2.7rem;
  margin-bottom: 18px;
  text-shadow: 0 3px 32px #3AC2FF33;
}
.hero p {
  color: #c5def0;
  font-size: 1.18rem;
  margin-bottom: 28px;
  max-width: 660px;
}

/* FEATURES SECTION */
.features .feature-item {
  min-width: 215px;
  max-width: 280px;
}
.features ul, .features .feature-grid {
  margin-bottom: 0px;
}

/* PRICING HIGHLIGHTS */
.pricing-highlights,
.what-is-included ul {
  list-style: circle inside;
  color: #3AC2FF;
  margin-left: 0;
  font-size: 1rem;
  margin-bottom: 20px;
}
.price-disclaimer, .what-is-included {
  color: #b8ccd6;
  font-size: 0.97rem;
}

/* TESTIMONIALS */
.testimonials, .testimonial-list, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
.testimonial-slider, .testimonial-list {
  margin-top: 16px;
  flex-direction: row;
}
.aggregate-rating, .rating-summary {
  margin-top: 18px;
  color: #3AC2FF;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
}

/* CONTACT PAGE ELEMENTS */
.contact-short-form ul,
.contact .content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 10px;
}
.contact-short-form ul li,
.contact .content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.07rem;
}
.contact_cta {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.address-info, .phone_number, .email_address, .map-snippet, .office-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  background: #263951;
  border-radius: var(--br-md);
  padding: 12px 16px;
  color: #F7F7F8;
  font-family: var(--font-body);
  font-size: 1rem;
}

/* TEXT SECTIONS */
.text-section, .privacy_policy_text, .rodo_information, .terms_and_conditions, .thank_you_message, .cookies_policy_text {
  background: #232A3C;
  border-radius: var(--br-md);
  box-shadow: 0 2px 16px 0 #26395111;
  color: #F7F7F8;
  padding: 26px 18px;
  margin-bottom: 18px;
}

/* LEGAL SECTIONS */
.legal {
  margin: 40px 0;
}


/* CASE STUDIES */
.project-descriptions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.project-descriptions .text-section {
  max-width: 390px;
  min-width: 220px;
}
.results-overview ul {
  list-style: disc inside;
  color: #3AC2FF;
}

/* FOOTER */
footer {
  margin-top: 64px;
  width: 100%;
  background: #232A3C;
  color: #fff;
  padding: 36px 0 20px 0;
  box-shadow: 0 -2px 44px 0 #212b3842;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  margin-bottom: 12px;
}
.footer-brand img {
  height: 48px;
}
.footer-nav {
  display: flex;
  gap: 21px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #3AC2FF;
  font-family: var(--font-display);
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  text-decoration: underline dotted transparent 2px;
  transition: color 0.18s, text-decoration-color 0.18s;
}
.footer-nav a:hover {
  color: #fff;
  text-decoration-color: #3AC2FF;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F7F7F8;
  font-size: 0.97rem;
}
.footer-copy {
  margin-top: 19px;
  width: 100%;
  text-align: center;
  color: #92b6ca;
  font-size: 0.97rem;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #232A3C;
  color: #F7F7F8;
  padding: 24px 26px 18px 26px;
  box-shadow: 0 -8px 32px #3AC2FF33;
  z-index: 200;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 1rem;
  opacity: 1;
  transition: transform 0.18s cubic-bezier(.48,.52,0,1), opacity 0.22s;
}
.cookie-banner.hide,
.cookie-banner[aria-hidden="true"] {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--br-md);
  padding: 10px 22px;
  font-size: 1rem;
  cursor: pointer;
  margin: 0 3px;
  transition: background 0.16s, color 0.13s;
}
.cookie-banner .accept {
  background: #3AC2FF;
  color: #fff;
  box-shadow: 0 0px 10px 0 #3AC2FF33;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #2C3E55;
  color: #3AC2FF;
}
.cookie-banner .settings {
  background: #263951;
  color: #3AC2FF;
  border: 1.5px solid #3AC2FF;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #3AC2FF;
  color: #232A3C;
}
.cookie-banner .reject {
  background: #3a404a;
  color: #fff;
  border: 1.5px solid #606877;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #c94b53;
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-53%) scale(1);
  z-index: 240;
  width: 94vw;
  max-width: 410px;
  background: #263951;
  border-radius: var(--br-lg);
  box-shadow: 0 2px 44px 0 #25324455;
  color: #F7F7F8;
  opacity: 1;
  transition: opacity 0.18s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 24px 20px 24px;
}
.cookie-modal[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,10%) scale(0.92);
}
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,39,48,0.86);
  z-index: 220;
  transition: opacity 0.22s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-overlay[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #3AC2FF;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-modal label {
  color: #F7F7F8;
  font-weight: 500;
}
.cookie-modal .category-essential {
  color: #3AC2FF;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 13px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 14px;
  background: none;
  border: none;
  color: #3AC2FF;
  font-size: 1.7rem;
  cursor: pointer;
}

@media (max-width: 600px) {
  .container, .content-wrapper {
    padding-left: 6px;
    padding-right: 6px;
  }
  .content-wrapper { gap: 18px; }
  .section {
    margin-bottom: 36px;
    padding: 24px 5px;
  }
  .footer-brand img {
    height: 36px;
  }
  .card, .feature-item {
    padding: 13px 10px;
    min-width: 150px;
    max-width: 100%;
  }
  .testimonial-card {
    min-width: 180px;
    max-width: unset;
    padding: 11px 8px;
    font-size: 0.97rem;
  }
}

/* RESPONSIVE FLEX ADJUSTMENTS */
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 5px;
    padding-right: 5px;
  }
  .content-grid,
  .feature-grid,
  .project-descriptions,
  .card-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .testimonials,
  .testimonial-list,
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer-contact {
    flex-direction: column;
    gap: 5px;
  }
}
/* Hamburger always visible on small */
@media (max-width: 790px) {
  .cta-primary, .cta-secondary {
    font-size: 0.95rem;
    padding: 11px 14px;
  }
}

/* MICRO-INTERACTIONS/ANIMATIONS for buttons and cards */
button, .cta-primary, .cta-secondary {
  transition: background 0.23s, color 0.17s, box-shadow 0.22s, transform 0.13s;
}
.card, .feature-item {
  transition: box-shadow 0.21s, transform 0.16s;
}
.card:active, .feature-item:active {
  transform: scale(.98);
}

/* Form/Inputs (Minimal for future) */
input, select, textarea {
  border-radius: 8px;
  border: 1.5px solid #3AC2FF33;
  background: #232A3C;
  color: #F7F7F8;
  font-size: 1rem;
  padding: 9px 13px;
  margin-bottom: 8px;
  outline: none;
  font-family: var(--font-body);
  width: 100%;
  transition: border 0.14s, box-shadow 0.19s;
}
input:focus, select:focus, textarea:focus {
  border-color: #3AC2FF;
  box-shadow: 0 2px 10px #3AC2FF22;
}

/* General spacing rules */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}
.card-container, .content-grid, .project-descriptions, .feature-grid, .testimonial-slider, .testimonial-list {
  gap: 20px;
}
.text-image-section { gap: 30px; }
.testimonial-card { gap: 20px; }
.feature-item { gap: 15px; }

/* Misc: Hide scrollbars for mobile-menu and overlays */
.mobile-menu, .cookie-modal {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* NEON ACCENT ANIMATIONS (simulate futuristic style) */
.cta-primary, .main-nav a.selected, .footer-nav a.selected {
  box-shadow: 0 0 16px #3AC2FFaa;
  text-shadow: 0 0 6px #3AC2FF66;
}

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