/* Fonts */
:root {
  --default-font: "Noto Serif", system-ui, -apple-system, "Segoe UI", serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Noto Serif", serif;
  --nav-font: "Noto Serif", serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #f8fafc; /* slate-50 */
  --default-color: #0f172a; /* slate-900 */
  --heading-color: #0b132b; /* deep navy */
  --accent-color: #0ea5ff; /* sky-500 */
  --surface-color: #ffffff; /* white */
  --contrast-color: #ffffff; /* for text on accent */
  --bg-color: #eef2f7; /* light section bg */
  --nav-color: #0f172a;
  --nav-hover-color: #1e293b;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #0f172a;
  --nav-dropdown-hover-color: #1e293b;
}

/* Color Presets */

.light-background {
  --background-color: #f1f5f9; /* slate-100 */
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0b1020;
  --default-color: #e2e8f0;
  --heading-color: #ffffff;
  --surface-color: #111827;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 11px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li a {
    border-bottom: 1px solid var(--accent-color);
    margin: 0 1rem;
    transition: border-color 0.3s ease, border-top 0.3s ease;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    border-color: var(--default-color);
    border-top: 1px solid var(--accent-color);
    border-bottom: none;
    transition: border-color 0.3s ease, border-top 0.3s ease,
      border-bottom 0.3s ease;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/* Mobile Nav - visual restyle (appearance only) */
@media (max-width: 1199px) {
  .navmenu ul {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 16px 12px;
  }

  .navmenu li + li {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    margin-top: 6px;
    padding-top: 6px;
  }

  .navmenu a,
  .navmenu a:focus {
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 600;
    color: var(--nav-dropdown-color);
  }

  .navmenu a:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    color: var(--nav-hover-color);
  }

  .navmenu .active,
  .navmenu .active:focus {
    background: var(--accent-color);
    color: var(--contrast-color);
  }

  .mobile-nav-toggle {
    background: rgba(15, 23, 42, 0.04);
    border-radius: 8px;
    padding: 6px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .mobile-nav-active .mobile-nav-toggle {
    background: var(--accent-color);
    color: var(--contrast-color);
  }

  .mobile-nav-active .navmenu > ul {
    animation: mobileMenuIn 0.25s ease forwards;
    transform-origin: top right;
  }
}

@keyframes mobileMenuIn {
  from {
    transform: translateY(-8px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--accent-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/* ========================
   Footer V2 Redesign
   ======================== */
.footer-v2 { background: #0b132b; color: #e2e8f0; }
.footer-v2 a { color: #cbd5e1; }
.footer-v2 a:hover { color: var(--accent-color); }
.footer-v2 .f-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; padding: 40px 0; }
@media (max-width: 991.98px) { .footer-v2 .f-grid { grid-template-columns: 1fr; } }
.footer-v2 .f-logo img { width: 36px; height: 36px; border-radius: 50%; margin-right: 10px; }
.footer-v2 .f-logo span { font-weight: 700; color: #fff; }
.footer-v2 .f-brand p { margin: 10px 0 14px 0; color: #cbd5e1; }
.footer-v2 .f-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); margin-right: 8px; }
.footer-v2 .f-links h4, .footer-v2 .f-contact h4 { color: #fff; margin-bottom: 10px; font-size: 16px; }
.footer-v2 .f-links ul, .footer-v2 .f-contact ul { list-style: none; padding: 0; margin: 0; }
.footer-v2 .f-links li { margin: 8px 0; }
.footer-v2 .f-contact li { display: flex; align-items: center; gap: 8px; margin: 8px 0; }
.footer-v2 .f-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 14px 0; display: flex; align-items: center; justify-content: space-between; }
@media (max-width: 640px) { .footer-v2 .f-bottom { flex-direction: column; gap: 8px; } }
.footer-v2 .f-bottom p { margin: 0; color: #94a3b8; }
.footer-v2 .f-bottom-links a { margin-left: 12px; color: #cbd5e1; }
.footer-v2 .f-bottom-links a:first-child { margin-left: 0; }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ========================
   Thanks page layout
   ======================== */
.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.thanks-page .main {
  flex: 1 0 auto;
  display: grid;
  align-items: center;
}
.thanks-page #footer {
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .download-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color) 90%, black 50%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  border-radius: 3px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .download-btn + .download-btn {
  margin-left: 20px;
}

.hero .download-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .download-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.2px;
  padding: 12px 32px;
  border-radius: 8px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 8px;
  line-height: 0;
  transition: transform 0.3s ease;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about .read-more:hover i {
  transform: translateX(6px);
}

/*--------------------------------------------------------------

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.technologies-v2 {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.technologies-v2 .tech-head {
  text-align: center;
  padding-bottom: 28px;
}
.technologies-v2 .tech-eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--contrast-color);
  font-size: 12px;
  margin-bottom: 10px;
}
.technologies-v2 .tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 991.98px) {
  .technologies-v2 .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .technologies-v2 .tech-grid {
    grid-template-columns: 1fr;
  }
}
.technologies-v2 .tech-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.technologies-v2 .tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgba(2, 6, 23, 0.08);
}
.technologies-v2 .tech-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 22px;
}
.technologies-v2 .tech-body h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
}
.technologies-v2 .tech-body p {
  margin: 0 0 8px 0;
  color: #334155;
  font-size: 14px;
}
.technologies-v2 .tech-body ul {
  margin: 0;
  padding-left: 18px;
  color: #0f172a;
  font-size: 14px;
}

/* Technologies v3 - Dark Theme */
.technologies-v3 {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.tech-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(14, 165, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(14, 165, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.tech-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.tech-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), #0ea5ff);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(14, 165, 255, 0.3);
}

.tech-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-description {
  font-size: 20px;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.tech-showcase {
  position: relative;
  z-index: 2;
}

.tech-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding: 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.tech-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-icon-large {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent-color), #0ea5ff);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

.tech-icon-large i {
  font-size: 48px;
  color: white;
}

.tech-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(14, 165, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow 3s ease-in-out infinite;
}

.tech-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.tech-content p {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 30px;
}

.tech-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-tag {
  background: rgba(14, 165, 255, 0.2);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(14, 165, 255, 0.3);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tech-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.tech-card-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #0ea5ff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tech-card-dark:hover::before {
  transform: scaleX(1);
}

.tech-card-dark:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(14, 165, 255, 0.1);
}

.tech-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), #0ea5ff);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.tech-card-dark:hover .tech-card-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(14, 165, 255, 0.4);
}

.tech-card-icon i {
  font-size: 28px;
  color: white;
}

.tech-card-dark h4 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.tech-card-dark p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.6;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes glow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

@media (max-width: 768px) {
  .tech-feature {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tech-title {
    font-size: 36px;
  }
  
  .tech-description {
    font-size: 18px;
  }
  
  .tech-icon-large {
    width: 100px;
    height: 100px;
  }
  
  .tech-icon-large i {
    font-size: 40px;
  }
}

.feature-details-v2 {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.feature-details-v2 .fd-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 991.98px) {
  .feature-details-v2 .fd-grid {
    grid-template-columns: 1fr;
  }
}
.feature-details-v2 .fd-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
@media (max-width: 640px) {
  .feature-details-v2 .fd-card {
    grid-template-columns: 1fr;
  }
}
.feature-details-v2 .fd-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(2, 6, 23, 0.08);
}
.feature-details-v2 .fd-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-details-v2 .fd-body {
  padding: 16px;
}
.feature-details-v2 .fd-body h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
}
.feature-details-v2 .fd-kicker {
  color: var(--accent-color);
  margin-bottom: 8px;
  font-style: italic;
}
.feature-details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.feature-details .features-item + .features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .feature-details .features-item + .features-item {
    margin-top: 40px;
  }
}

.feature-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.feature-details .features-item ul {
  list-style: none;
  padding: 0;
}

.feature-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.feature-details .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.feature-details .features-item p:last-child {
  margin-bottom: 0;
}
.feature-item-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: var(--background-color);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-right: 15px;
}

.feature-text {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.feature-item strong {
  font-size: 18px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 25px;
    transition: none;
  }
}

/* Styles pour le bloc Témoignages */
.testimonials-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.testimonial-card {
  background-color: var(--background-color);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  border-radius: 20%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.testimonial-author-name {
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-author-title {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ========================
   Testimonials V2 Redesign
   ======================== */
.testimonials-v2 { background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }
.testimonials-v2 .t-head { text-align: center; margin-bottom: 16px; }
.testimonials-v2 .t-scroller { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; }
.testimonials-v2 .t-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr); gap: 16px; padding-bottom: 6px; }
.testimonials-v2 .t-item { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 16px; display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: start; min-height: 140px; }
.testimonials-v2 .t-avatar { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--accent-color), transparent 90%); color: var(--accent-color); font-size: 18px; }
.testimonials-v2 .t-meta { display: flex; flex-direction: column; gap: 2px; }
.testimonials-v2 .t-item p { grid-column: 1 / -1; margin: 4px 0 0 0; color: #334155; }

/* ========================
   Contact V2 Redesign
   ======================== */
.contact-v2 { background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }
.contact-v2 .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 991.98px) { .contact-v2 .contact-grid { grid-template-columns: 1fr; } }
.contact-v2 .info-head h2 { margin: 0 0 8px 0; }
.contact-v2 .info-head p { margin: 0 0 14px 0; color: #334155; }
.contact-v2 .info-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 640px) { .contact-v2 .info-cards { grid-template-columns: 1fr; } }
.contact-v2 .info-card { display: flex; align-items: center; gap: 10px; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 12px; }
.contact-v2 .info-card i { color: var(--accent-color); }
.contact-v2 .contact-form .form-control { border-radius: 10px; border-color: #e5e7eb; }
.contact-v2 .contact-btn { background: var(--accent-color); color: var(--contrast-color); border: none; border-radius: 10px; padding: 10px 16px; }

.testimonial-rating {
  display: flex;
  margin-bottom: 15px;
}

.rating-star {
  color: var(--accent-color);
  margin-right: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .pricing-section,
  .testimonials-section {
    padding: 70px 0;
  }

  .pricing-card.featured {
    transform: scale(1);
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .pricing-price {
    font-size: 2rem;
  }

  .pricing-title {
    font-size: 1.3rem;
  }

  .testimonial-card {
    margin-bottom: 30px;
  }
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  border-radius: 2rem;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
  border-radius: 2rem;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  border-radius: 2rem;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
  border-radius: 2rem;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

#cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(11, 19, 43, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: white;
  border: 1px solid rgba(14, 165, 255, 0.3);
  padding: 0;
  font-family: "Noto Serif", serif;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(14, 165, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  z-index: 1000;
  max-width: 500px;
  width: calc(100% - 40px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

#cookie-popup.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#cookie-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #0ea5ff, #22d3ee);
  border-radius: 20px 20px 0 0;
}

#cookie-popup p {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.6;
}

#cookie-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}

#cookie-popup .popup-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

#cookie-popup .popup-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), #0ea5ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#cookie-popup .popup-icon i {
  font-size: 20px;
  color: white;
}

#cookie-popup .popup-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 0;
}

#cookie-popup .popup-message {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
}

#cookie-popup .popup-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}

#cookie-popup button {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(203, 213, 225, 0.3);
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: "Noto Serif", serif;
}

#cookie-popup button:hover {
  background: rgba(14, 165, 255, 0.1);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

#cookie-popup button.accept {
  background: linear-gradient(135deg, var(--accent-color), #0ea5ff);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(14, 165, 255, 0.3);
}

#cookie-popup button.accept:hover {
  background: linear-gradient(135deg, #0ea5ff, var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 255, 0.4);
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

#cookie-popup .popup-message a:hover {
  color: #0ea5ff;
  border-bottom-color: var(--accent-color);
}

@media (max-width: 768px) {
  #cookie-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(100px);
    max-width: none;
    width: auto;
  }
  
  #cookie-popup.show {
    transform: translateY(0);
  }
  
  #cookie-popup .popup-content {
    padding: 25px;
  }
  
  #cookie-popup .popup-actions {
    flex-direction: column;
  }
  
  #cookie-popup button {
    width: 100%;
    justify-content: center;
  }
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.about_elem {
  margin-bottom: 2rem;
}

.swiper-slide {
  opacity: 0.4;
  transform: scale(0.92);
  transition: all 0.3s ease-in-out;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.swiper-pagination-bullet {
  background-color: #888;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid var(--bg-color);
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--bg-color);
  color: var(--accent-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

.growth {
  background-image: url("img/background-image.webp");
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  padding: 100px 0;
}

.lead {
  color: var(--accent-color);
  font-weight: 500;
}

/* ========================
   Hero V2 Redesign
   ======================== */
.hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero-v2 .hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      900px 500px at 10% 20%,
      color-mix(in srgb, var(--accent-color), transparent 75%),
      transparent 60%
    ),
    linear-gradient(135deg, rgba(11, 19, 43, 0.9) 0%, rgba(15, 23, 42, 1) 40%, rgba(11, 19, 43, 0.9) 100%);
}
.hero-v2 .hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 991.98px) {
  .hero-v2 .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.hero-v2 .hero-eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--contrast-color);
  font-size: 12px;
  margin-bottom: 10px;
}
.hero-v2 .hero-title {
  color: #fff;
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 10px 0;
}
@media (max-width: 640px) {
  .hero-v2 .hero-title {
    font-size: 30px;
  }
}
.hero-v2 .hero-subtitle {
  color: #cbd5e1;
  margin: 0 0 18px 0;
}
.hero-v2 .hero-actions {
  display: flex;
  gap: 12px;
}
.hero-v2 .hero-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 10px;
  padding: 10px 16px;
}
.hero-v2 .hero-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 10px;
  padding: 10px 16px;
}
.hero-v2 .hero-brands {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.hero-v2 .hero-brands .badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e2e8f0;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}
.hero-v2 .hero-visual {
  position: relative;
}
.hero-v2 .hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.35);
}
.hero-v2 .hero-card img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-v2 .hero-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}
.hero-v2 .hero-float {
  position: absolute;
  right: -10px;
  top: -10px;
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #e2e8f0;
  padding: 8px 12px;
  border-radius: 12px;
}
.hero-v2 .hero-float i {
  color: var(--accent-color);
}

/* ========================
   Features V2 Redesign
   ======================== */
.features-v2 {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.features-v2 .features-head {
  text-align: center;
  padding-bottom: 24px;
}
.features-v2 .features-eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--contrast-color);
  font-size: 12px;
  margin-bottom: 10px;
}
.features-v2 .features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}
@media (max-width: 991.98px) {
  .features-v2 .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .features-v2 .features-grid {
    grid-template-columns: 1fr;
  }
}
.features-v2 .feat-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.features-v2 .feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgba(2, 6, 23, 0.08);
}
.features-v2 .feat-card.timeline {
  position: relative;
}

.features-v2 .feat-card.highlight {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}
.features-v2 .feat-card.highlight .feat-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
}
.features-v2 .feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 22px;
}
.features-v2 .feat-body h4 {
  margin: 0 0 6px 0;
  font-size: 18px;
}
.features-v2 .feat-body p {
  margin: 0;
  color: #334155;
}
.features-v2 .feat-card.highlight .feat-body p,
.features-v2 .feat-card.highlight .feat-body h4 {
  color: var(--contrast-color);
}

/* ========================
   Growth V2 Redesign
   ======================== */
.growth-v2 {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.growth-v2 .growth-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1200px 600px at 10% 10%,
      color-mix(in srgb, var(--accent-color), transparent 70%),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 90% 20%,
      color-mix(in srgb, #22d3ee, transparent 70%),
      transparent 65%
    ),
    linear-gradient(135deg, rgba(11, 19, 43, 0.5) 0%, rgba(15, 23, 42, 0.5) 30%, rgba(11, 19, 43, 0.5) 100%);
  filter: saturate(1.2);
}

.growth-v2 .growth-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.3), rgba(2, 6, 23, 0.6));
}

.growth-v2 .growth-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 120px 0;
  color: #e2e8f0;
}

@media (max-width: 991.98px) {
  .growth-v2 .growth-grid {
    grid-template-columns: 1fr;
    padding: 80px 0;
  }
}

.growth-v2 .eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-size: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--contrast-color);
  margin-bottom: 16px;
}

.growth-v2 .growth-title {
  color: #fff;
  font-size: 44px;
  line-height: 1.12;
  margin: 0 0 14px 0;
}

@media (max-width: 640px) {
  .growth-v2 .growth-title {
    font-size: 30px;
  }
}

.growth-v2 .growth-subtitle {
  color: #cbd5e1;
  font-size: 18px;
  margin: 0 0 22px 0;
}

.growth-v2 .growth-cta .growth-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.growth-v2 .growth-stats {
  display: flex;
  gap: 18px;
  margin-top: 26px;
}
.growth-v2 .stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 16px;
  border-radius: 12px;
  min-width: 120px;
  text-align: center;
}
.growth-v2 .stat-value {
  display: block;
  font-size: 22px;
  color: #fff;
}
.growth-v2 .stat-label {
  display: block;
  font-size: 12px;
  color: #cbd5e1;
}

.growth-v2 .growth-right {
  display: grid;
  gap: 16px;
  align-content: start;
}
.growth-v2 .glass-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e2e8f0;
}
.growth-v2 .glass-card i {
  font-size: 22px;
  color: var(--accent-color);
}
.growth-v2 .glass-card h5 {
  margin: 0 0 2px 0;
  color: #fff;
  font-size: 16px;
}
.growth-v2 .glass-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 13px;
}

.growth-v2 .growth-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
}
.growth-v2 .growth-shape.one {
  width: 320px;
  height: 320px;
  background: #22d3ee;
  right: -80px;
  bottom: -60px;
}
.growth-v2 .growth-shape.two {
  width: 260px;
  height: 260px;
  background: var(--accent-color);
  left: -60px;
  top: -60px;
}

/* ========================
   About V2 Redesign
   ======================== */
.about-v2 {
  --about-card-bg: #ffffff;
  --about-card-border: #e5e7eb;
}
.about-v2 .about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 991.98px) {
  .about-v2 .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.about-v2 .about-media-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.15);
}
.about-v2 .about-image {
  width: 100%;
  height: auto;
  display: block;
}
.about-v2 .about-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.about-v2 .about-title {
  margin: 0 0 12px 0;
  font-size: 32px;
}
.about-v2 .about-lead {
  color: #334155;
  margin-bottom: 18px;
}

.about-v2 .about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 640px) {
  .about-v2 .about-features {
    grid-template-columns: 1fr;
  }
}
.about-v2 .about-feature {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid var(--about-card-border);
  border-radius: 12px;
  background: var(--about-card-bg);
}
.about-v2 .about-feature i {
  font-size: 18px;
  color: var(--accent-color);
}
.about-v2 .about-feature p {
  margin: 0;
  color: #0f172a;
}

.about-v2 .about-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.about-v2 .about-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 10px;
  padding: 10px 16px;
}
.about-v2 .about-btn.ghost {
  background: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

/* ========================
   About on policy/thanks pages
   ======================== */
.about.section.light-background:not(.about-v2) {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.about.section.light-background:not(.about-v2) .section-title {
  text-align: left;
  padding-bottom: 24px;
}
.about.section.light-background:not(.about-v2) .section-title h2 {
  font-size: 28px;
  margin-bottom: 8px;
}
.about.section.light-background:not(.about-v2) .section-title p {
  color: #334155;
  max-width: 820px;
  margin: 0;
}
.about.section.light-background:not(.about-v2) .content {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 22px rgba(2, 6, 23, 0.06);
}
.about.section.light-background:not(.about-v2) .content h3 {
  margin-top: 6px;
  margin-bottom: 8px;
  font-size: 20px;
}
.about.section.light-background:not(.about-v2) .content p {
  color: #0f172a;
}
.about.section.light-background:not(.about-v2) .content ul {
  padding-left: 18px;
}
.about.section.light-background:not(.about-v2) .content li {
  margin: 4px 0;
}
@media (max-width: 640px) {
  .about.section.light-background:not(.about-v2) .content { padding: 16px; }
}
