/* ------------------- 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;
}
body {
  line-height: 1.5;
  background: #111827;
  color: #F7F8FA;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}

*, *:before, *:after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #3EC4FF;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #64FFDA;
  outline: none;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 16px;
}
li {
  margin-bottom: 6px;
}

/* ------------------- TYPOGRAPHY ------------------- */
h1, .display {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.1;
  text-shadow: 0 0 12px #205DAA20;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 8px #205DAA22;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #3EC4FF;
  margin-bottom: 10px;
}
p, li, blockquote, .body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #E2E6EF;
  line-height: 1.7;
}
blockquote {
  font-style: italic;
  color: #142744;
}
.subheadline {
  font-size: 1.2rem;
  margin-bottom: 26px;
  color: #C1EBFF;
}
strong {
  color: #205DAA;
}


/* ------------------- BRAND COLORS ------------------- */
:root {
  --primary: #205DAA;
  --secondary: #1B334B;
  --accent: #F7F8FA;
  --neon: #3ec4ff;
  --neon-pink: #ec38bc;
  --success: #1fd7c1;
  --warning: #ffd600;
  --card-bg: #182642;
  --input-bg: #EBF6FF;
  --footer-bg: #181F2A;
}

/* ------------------- LAYOUT CONTAINERS ------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

@media (max-width: 768px) {
  .section {
    padding: 30px 8px;
    margin-bottom: 40px;
  }
}

/* ------------------- HEADER & NAVIGATION ------------------- */
header {
  width: 100%;
  background: #181F2A;
  box-shadow: 0 2px 12px #13294438;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 18px;
}
.logo img {
  height: 41px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #E2E6EF;
  letter-spacing: 0.5px;
  padding: 6px 0;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  margin: 4px auto 0 auto;
  width: 0%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg,#3ec4ff 0%, #ec38bc 100%);
  transition: width 0.23s cubic-bezier(.4,0,.2,1);
}
.main-nav a:hover:after,.main-nav a:focus:after {
  width: 90%;
}

.cta-btn {
  background: linear-gradient(90deg, #3ec4ff 0%, #205DAA 100%);
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  padding: 11px 28px;
  border-radius: 32px;
  box-shadow: 0 2px 18px #3ec4ff22;
  cursor: pointer;
  margin-left: 20px;
  transition: box-shadow 0.21s, background 0.21s, transform 0.21s;
  outline: none;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#ec38bc 0%, #3ec4ff 100%);
  box-shadow: 0 4px 18px #3ec4ff44, 0 0 0 2px #3ec4ff90;
  transform: translateY(-2px) scale(1.03);
  color: #fff;
}

/* Burger button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #3EC4FF;
  font-size: 2.15rem;
  cursor: pointer;
  padding: 4px 14px 2px 14px;
  transition: background 0.13s;
  border-radius: 6px;
  margin-left: 14px;
}
.mobile-menu-toggle:focus {
  background: #1B334B;
  outline: 2px solid #3EC4FF;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }
  .cta-btn {
    margin-left: 10px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 0px;
  }
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 860px) {
  .main-nav,.cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ------------------- MOBILE MENU ------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,36,72,0.97);
  backdrop-filter: blur(2px);
  z-index: 401;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.7,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 34px 0 30px 22px;
  align-self: flex-start;
  background: none;
  border: none;
  color: #3EC4FF;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.13s;
  border-radius: 6px;
  padding: 6px 13px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1B334B;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 1.13rem;
  padding: 16px 0;
  border-bottom: 1px solid #3ec4ff13;
  transition: color 0.16s, background 0.16s;
  border-radius: 0px;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #3EC4FF;
  background: #1B334B;
  outline: none;
}

@media (min-width: 861px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-close{
    display:none;
  }
}

/* ------------------- HERO & BACKGROUNDS ------------------- */
.hero-section {
  background: linear-gradient(120deg, #202F47 50%, #205DAA 100%);
  padding: 75px 0 60px 0;
  box-shadow: 0 8px 36px #205DAA18;
}
.hero-section .content-wrapper {
  align-items: center;
  gap: 18px;
  text-align: center;
}
.hero-section h1 {
  font-size: 2.75rem;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 0 16px #3ec4ff19;
}
.hero-section .cta-btn {
  margin-top: 18px;
}

@media (max-width: 550px) {
  .hero-section {
    padding: 54px 0 32px 0;
  }
  .hero-section h1 {
    font-size: 1.45rem;
  }
}

/* ------------------- FLEXBOX LAYOUTS: FEATURES, CARDS, SECTIONS ------------------- */
.feature-grid, .key-figures, .team-members, .service-list, .feature-list, .pricing-table, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .feature-grid, .key-figures, .team-members, .service-list, .feature-list, .pricing-table, .testimonial-list {
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
  }
}

.feature-item, .service-item, .plan, .team-member, .faq-item, .detailed-features li, .benefit-points li, .user-scenarios li {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 8px 28px #3ec4ff18, 0 1.5px 4px #181F2A31;
  padding: 28px 26px 24px 26px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-item img, .service-item img, .plan img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 14px #3ec4ff55);
}
.feature-item h3, .service-item h3 {
  color: #3EC4FF;
  font-size: 1.13rem;
}

.plan.best {
  border: 2.5px solid #3EC4FF;
  background: linear-gradient(110deg, #1d3759 65%, #1fd7c13f 100%);
  position: relative;
  box-shadow: 0 8px 34px #3ec4ff38, 0 2px 12px #205DAA11;
}

.plan .price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 18px;
}
.plan {
  flex: 1 1 310px;
  min-width: 240px;
  max-width: 360px;
  margin: 0 4px 20px 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.plan .cta-btn {
  width: 100%;
  margin-top: 8px;
  margin-left: 0;
}
.plan-features {
  margin-bottom: 8px;
  margin-left: 18px;
}

@media (max-width: 1024px) {
  .pricing-table {
    flex-direction: column;
    gap: 26px;
  }
  .plan {
    max-width: 100%;
    width: 100%;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 8px 30px #205DAA11;
  padding: 28px 24px 24px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

/* Fake card look for .about/team and .key-figures */
.key-figures div {
  background: #233564;
  color: #fff;
  border-radius: 14px;
  padding: 22px 18px;
  min-width: 148px;
  margin: 0 8px 16px 0;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  box-shadow: 0 2px 12px #3ec4ff14;
}

/* About - .team-section members */
.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 8px 18px #205daa13;
  padding: 24px 18px 20px 18px;
  min-width: 220px;
  flex: 1 1 225px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.team-role {
  color: #66e7ff;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.bio {
  color: #E2E6EF;
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* Service list cards for solutions-wifi */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-item {
  flex: 1 1 220px;
  max-width: 340px;
  min-width: 210px;
}

/* --------------- TESTIMONIALS --------------- */
.testimonials-section {
  background: linear-gradient(100deg,#205DAA 0% , #111827 100%);
  padding: 50px 0 54px 0; 
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  background: #F7F8FA;
  color: #142744;
  border-radius: 17px;
  box-shadow: 0 12px 36px #205daa1b;
  padding: 26px 22px 24px 22px;
  flex: 1 1 300px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  transition: transform 0.21s, box-shadow 0.19s;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 42px #205DAA88, 0 0 0 2.5px #3ec4ff78;
}
.testimonial-info {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #195e95;
  font-size: 1.00rem;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.customer-name {
  font-weight: 600;
  color: #205DAA;
}
.star-rating {
  color: #FFD600 !important;
  font-size: 1.3em !important;
  margin-left: 8px;
}
.testimonials-section h2 {
  color: #fff;
}

@media (max-width: 1000px) {
  .testimonial-list {
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

/* --------------- GENERAL FLEX PATTERNS -------------- */
.feature-item, .card, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----------- FAQ & ACCORDION ------------- */
.faq-section, .faq-tarifs {
  background: #182642;
}
.faq-accordion, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #192A44;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 2px 12px #205daa1a;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item h3 {
  color: #3EC4FF;
  margin-bottom: 8px;
}
.faq-item p {
  color: #B7DDFC;
}

.more-info-contact a {
  color: #3EC4FF;
  font-weight: 600;
}

/* ----------- CALL TO ACTION (CTA) ------------- */
.call-to-action-home, .cta-contact-section {
  background: linear-gradient(80deg, #3ec4ff18 0%, #181F2A 100%);
  text-align: center;
  padding-top: 45px;
  padding-bottom: 45px;
  border-radius: 24px;
  box-shadow: 0 4px 22px #3ec4ff19;
  margin-bottom: 60px;
}
.call-to-action-home h2, .cta-contact-section h2 {
  color: #fff;
  letter-spacing: -.5px;
}
.call-to-action-home p, .cta-contact-section p {
  color: #B7DDFC;
  font-size: 1.16rem;
}
.call-to-action-home .cta-btn, .cta-contact-section .cta-btn {
  margin-top: 20px;
}

/* ----------- FOOTER --------------- */
footer {
  background: var(--footer-bg);
  border-top: 2px solid #3ec4ff13;
  padding: 40px 0 16px 0;
  margin-top: 30px;
  color: #B7DDFC;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.logo-footer img {
  height: 32px;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #3ec4ff;
  text-decoration: underline;
  transition: color 0.17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #EC38BC;
  outline: none;
}
.footer-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: #C1EBFF;
  font-size: 0.98rem;
}
.footer-contact-info img {
  width: 17px;
  height: 17px;
  margin-right: 6px;
}
.footer-legal {
  color: #405C7A;
  font-size: 0.96rem;
}

@media (max-width: 700px) {
  footer .container {
    gap: 14px;
    padding: 0 8px;
  }
  .footer-contact-info {
    gap: 8px 10px;
    flex-direction: column;
  }
}

/* ----------- COOKIE CONSENT BANNER (FIXED BOTTOM) ------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #1B334B;
  box-shadow: 0 -2px 24px #205daa09;
  padding: 25px 18px 22px 18px;
  z-index: 5999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  transition: transform 0.32s cubic-bezier(.89,.18,.24,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #205DAA;
  color: #fff;
  border-radius: 32px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 9px 26px;
  margin: 2px 0 0 0;
  transition: background .18s, color .18s, box-shadow .15s;
  cursor: pointer;
  box-shadow: 0 2px 12px #3ec4ff17;
}
.cookie-btn.accept {
  background: linear-gradient(90deg,#3ec4ff 0%, #205DAA 100%);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: linear-gradient(90deg,#ec38bc 0%, #3ec4ff 100%);
  color: #fff;
}
.cookie-btn.settings {
  background: #1fd7c1;
  color: #1B334B;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #205DAA;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  border: 2px solid #205DAA;
  color: #205DAA;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #EC38BC;
  color: #fff;
  border-color: #EC38BC;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-btns {
    gap: 10px;
  }
}

/* COOKIE CONSENT PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 6200;
  background: #fff;
  color: #1B334B;
  border-radius: 18px;
  box-shadow: 0 9px 38px #205daa30;
  width: 94vw;
  max-width: 380px;
  transform: translate(-50%, -50%) scale(.91);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s cubic-bezier(.29,.7,.3,1),transform .19s cubic-bezier(.42,2.2,.19,1);
  padding: 30px 27px 19px 27px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: all;
}
.cookie-modal h2 {
  color: #205DAA;
  margin-bottom: 5px;
  font-size: 1.21rem;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  background: none;
  border: none;
  color: #205DAA;
  font-size: 1.4rem;
  cursor: pointer;
}
.cookie-modal .cookie-switch {
  margin-left: 12px;
  accent-color: #3EC4FF;
}
.cookie-modal label {
  font-size: 1.02rem;
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 9px;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 15px;
}
.cookie-modal .cookie-desc {
  color: #293957;
  font-size: 0.98rem;
  margin-left: 34px;
}

/* ----------- MISC STYLES & DECORATIVE SHADOWS --------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #15233d;
}
::-webkit-scrollbar-thumb {
  background: #205DAA88;
  border-radius: 8px;
}
::-webkit-selection {
  background: #3EC4FF;
  color: #fff;
}
::selection {
  background: #3EC4FF;
  color: #fff;
}

hr {
  border: none;
  height: 1.5px;
  background: linear-gradient(90deg,#3ec4ff 0%, #ec38bc 100%);
  border-radius: 1px;
  margin: 32px auto;
  width: 64%;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
}

/* ---------------- RESPONSIVE: MOBILE FIRST ------------------ */
@media (max-width: 700px) {
  h1 {font-size: 1.39rem;}
  h2 {font-size: 1.09rem;}
  .logo img, .logo-footer img {height: 26px;}
  .container {padding: 0 8px;}
  .feature-item,
  .service-item,
  .plan,
  .team-member,
  .testimonial-card {
    padding: 21px 10px 16px 14px;
    font-size: 0.97rem;
  }
  .key-figures div {
    font-size: 0.99rem;
    min-width: 80px;
    padding: 14px 6px;
  }
}

@media (max-width: 400px) {
  .cookie-modal {
    padding: 11vw 4vw 7vw 4vw;
    font-size: 0.99rem;
  }
}

/* ----------- ANIMATIONS & MICRO-INTERACTIONS --------------- */
.cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: all 0.16s cubic-bezier(.63,.06,.27,1);
}
.cta-btn:active, .cookie-btn:active, .mobile-menu-toggle:active {
  transform: scale(0.96);
}
.testimonial-card, .plan, .service-item, .feature-item, .faq-item {
  transition: transform 0.21s, box-shadow 0.18s;
}
.testimonial-card:active, .plan:active, .service-item:active, .feature-item:active {
  transform: scale(0.98);
}

/* ----------- UTILITIES (HELPERS) --------------- */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.gap-20 { gap: 20px; }

/* ----------- DISABLED STATES --------------- */
button:disabled, .cta-btn:disabled {
  background: #b1c8e3 !important;
  color: #fff !important;
  pointer-events: none;
  opacity: .62;
}

/* ----------- PRINT CLEANUP --------------- */
@media print {
  *, *:before, *:after {
    background: #fff !important;
    color: #000 !important;
    text-shadow: none !important;
    box-shadow: none !important;
  }
  header,footer,.cookie-banner,.cookie-modal {display:none !important;}
}
