:root{
  --bg:#ffffff; --panel:#f8f9fc; --panel-2:#edf0f8; --stroke:rgba(0,0,0,.08);
  --text:#1a1d24; --muted:#646b7a; --brand:#5a67d8; --brand-2:#4299e1; --accent:#38b2ac; --danger:#fc8181;
  --radius:18px; --radius-lg:22px; --shadow:0 24px 60px rgba(0,0,0,.08), 0 6px 18px rgba(0,0,0,.04);
}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0; font:16px/1.55 Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif; color:var(--text); background:
  radial-gradient(60vmax 60vmax at -10% 10%, rgba(92,107,216,.05), transparent 40%),
  radial-gradient(60vmax 60vmax at 110% -10%, rgba(66,153,225,.05), transparent 45%), var(--bg);
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; letter-spacing:.1px;}
.container{width:min(1160px,100% - 48px); margin-inline:auto}
a{color:inherit; text-decoration:none}
.btn{display:inline-flex; align-items:center; justify-content:center; gap:.6rem; padding:.9rem 1.2rem; border:1px solid transparent; border-radius:14px; font-weight:600; font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif; transition:.2s ease}
.btn-primary{background:linear-gradient(135deg,var(--brand),var(--brand-2)); color:#ffffff; box-shadow:0 10px 26px rgba(92,107,216,.15)}
.btn-primary:hover{transform:translateY(-1px); filter:saturate(1.06)}
.btn-ghost{background:transparent; border-color:var(--stroke); color:var(--text)}
.btn-ghost:hover{background:rgba(0,0,0,.03)}

.nav{position:sticky; top:0; z-index:50; backdrop-filter:saturate(1.2) blur(10px); background:linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.65)); border-bottom:1px solid var(--stroke)}
.nav .wrap{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; gap:.8rem; align-items:center}
.logo{inline-size:36px; block-size:36px; border-radius:12px; display:grid; place-items:center; position:relative; background:linear-gradient(135deg, var(--brand-2), var(--brand)); box-shadow:inset 0 0 0 1px rgba(255,255,255,.3), 0 8px 24px rgba(92,107,216,.2)}
.logo svg{width:22px;height:22px; fill:#ffffff}
.nav-links{display:flex; gap:18px; align-items:center}
.nav-links a{padding:.55rem .7rem; border-radius:10px; opacity:.9; font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;}
.nav-links a:hover{background:rgba(0,0,0,.04)}

.hero{padding:58px 0 26px; background-color: #ece9e4;}
.grid{display:grid; grid-template-columns:1.35fr .95fr; gap:28px}
.title{font-weight:800; font-size:clamp(34px,6vw,58px); line-height:1.05; margin:12px 0 14px; font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;}
.subtitle{font-size:clamp(16px,2.5vw,18px); color:var(--muted); font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;}
.hero-cta{display:flex; gap:12px; margin:22px 0 8px}
.micro{display:flex; gap:16px; color:#4a5568; margin-top:10px}

.panel{background:linear-gradient(180deg, rgba(92,107,216,.04), rgba(66,153,225,.03)); border:1px solid var(--stroke); border-radius:var(--radius-lg); box-shadow:var(--shadow)}
.panel .head{padding:16px 18px; border-bottom:1px solid var(--stroke); display:flex; align-items:center; justify-content:space-between; font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;}
.panel .body{padding:18px}
.stat-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:10px}
.stat{background:var(--panel); border:1px solid var(--stroke); border-radius:14px; padding:14px}
.stat .name{color:var(--muted); font-size:.9rem}
.stat .val{font-weight:800; font-size:1.6rem}

.trust{padding:10px 0 36px; background-color: #ece9e4;}
.trust-row{display:grid; grid-template-columns:repeat(5,1fr); gap:16px; opacity:.85}
.trust-item{background:var(--panel-2); border:1px solid var(--stroke); border-radius:14px; padding:14px; text-align:center}

.features {
  background-color: #ece9e4;
  padding: 60px 0;
}

.features .section-title {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
  color: var(--text);
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.features .section-subtitle {
  text-align: center;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 30px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0,0,0,.12), 0 8px 22px rgba(0,0,0,.08);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text);
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.feature-description {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.checkmark {
  color: #4CAF50; /* Green color */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.gallery {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 60px 0;
}

.gallery .section-title {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
  color: var(--text);
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.gallery .section-subtitle {
  text-align: center;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  justify-items: center;
}

.gallery-item {
  width: 200px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0,0,0,.12), 0 8px 22px rgba(0,0,0,.08);
}

.gallery-image {
  width: 200px;
  height: 100px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: black;
}

.plus{background-color: #ece9e4;}
.kpis{display:grid; grid-template-columns:repeat(4,1fr); gap:16px}
.kpi{background:var(--panel-2); border:1px solid var(--stroke); border-radius:14px; padding:18px}
.kpi .n{font-size:1.8rem; font-weight:800}
.kpi .d{color:var(--muted)}

.assets{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.asset{background:var(--panel); border:1px solid var(--stroke); border-radius:18px; overflow:hidden; box-shadow:var(--shadow)}
.asset .cover{height:160px; background-size: contain; background-position: center; background-repeat: no-repeat; background-color: #f0f0f0;}

.asset .body{padding:16px}
.row{display:flex; justify-content:space-between; align-items:center; margin:10px 0}
.pill{padding:.35rem .6rem; border-radius:999px; border:1px solid var(--stroke); background:rgba(0,0,0,.03); font-size:.82rem}

.rating {
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.stars {
  color: #ffd700;
  font-size: 1rem;
}

.star {
  display: inline-block;
  position: relative;
}

.star.empty {
  color: #ddd;
}

.star.half:before {
  content: "★";
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: #ffd700;
}

.rating-value {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.plus-icon {
  display: inline-block;
  margin-right: 5px;
  color: var(--brand);
  font-weight: bold;
}

.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.step{background:var(--panel); border:1px solid var(--stroke); border-radius:18px; padding:18px}
.step .num{font-weight:800; opacity:.65}

.faq{display:grid; grid-template-columns:1.15fr .85fr; gap:24px}
.accordion{display:grid; gap:10px}
.qa{background:var(--panel); border:1px solid var(--stroke); border-radius:14px; overflow:hidden}
.qa summary{cursor:pointer; list-style:none; padding:10px 18px; font-weight:600; font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;}
.qa summary::-webkit-details-marker{display:none}
.qa .ans{padding:0 18px 16px; color:var(--muted); font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;}

footer{padding:28px 0 48px; color:#4a5568; background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);}
.foot-grid{display:grid; grid-template-columns:1fr auto; gap:16px; align-items:center; border-top:1px solid var(--stroke); padding-top:22px}
.footer-grid{display: flex; justify-content: space-between;}
@media (max-width: 750px) {
  .footer-grid{display: block;}
}

.company-info {
  padding: 40px 0;
}

.company-info h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  margin: 0 0 18px;
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.company-info h3 {
  font-size: clamp(20px, 2.8vw, 28px);
  margin: 24px 0 16px;
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.company-info p {
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--muted);
  line-height: 1.6;
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.company-info ul {
  list-style-type: none;
  padding: 0;
}

.company-info li {
  padding: 8px 0;
  border-bottom: 1px solid var(--stroke);
  font-size: 16px;
  line-height: 1.5;
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.company-info li:last-child {
  border-bottom: none;
}

.company-info strong {
  color: var(--text);
}

section{padding:40px 0}
h2{font-size:clamp(24px,3.2vw,36px); margin:0 0 18px; font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;}
.muted{color:var(--muted)}

.checkmark {
  color: #4CAF50; /* Green color */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.faq-arrow {
  float: right;
  transition: transform 0.3s ease;
  color: var(--muted);
  font-size: 0.8rem;
}

.qa[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-question {
  flex-grow: 1;
}

.qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.gallery .section-title {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
  color: var(--text);
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.gallery .section-subtitle {
  text-align: center;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}



.disclaimer {
  background-color: #e8b376;
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 20px 0;
  font-size: 0.85rem;
}

.disclaimer-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.age-badge {
  background: linear-gradient(135deg, #5a67d8, #4299e1);
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(92,107,216,.2);
}

.disclaimer-text {
  color: #646b7a;
  line-height: 1.5;
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.disclaimer-text strong {
  color: #1a1d24;
}

.disclaimer-text p {
  margin: 0;
}

@media (max-width: 640px) {
  .disclaimer-content {
    flex-direction: column;
  }
  
  .age-badge {
    align-self: center;
  }
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.burger-line {
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 10px;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  z-index: 999;
  padding: 80px 20px 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.mobile-nav-links a:hover {
  color: #ffffff;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #cbd5e1;
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-close:hover {
  color: #ffffff;
}

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}

.nav-overlay.active {
  display: block;
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }
  
  .nav-links {
    display: none;
  }
}

@media (max-width:1060px){.grid{grid-template-columns:1fr}.trust-row{grid-template-columns:1fr 1fr 1fr}.kpis{grid-template-columns:1fr 1fr}.assets{grid-template-columns:1fr 1fr}.faq{grid-template-columns:1fr}}
@media (max-width:640px){.nav-links{display:none}.assets,.steps{grid-template-columns:1fr}.title{font-size:36px}}

.content {
  padding: 40px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.content-main h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text);
  font-size: 1.8rem;
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.content-main h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.4rem;
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.content-main p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--muted);
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.content-main ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.content-main li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--muted);
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.content-sidebar .panel {
  margin-bottom: 20px;
}

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

.content-sidebar .footer-links li {
  margin-bottom: 12px;
}

.content-sidebar .footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 5px 0;
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.content-sidebar .footer-links a:hover {
  color: var(--brand);
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

/* Cookie Consent Popup */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #cbd5e1;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-text h3 {
  margin: 0 0 10px 0;
  color: #ffffff;
  font-size: 1.2rem;
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.cookie-text p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.5;
  font-family: Raleway,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  flex: 1;
  min-width: 120px;
  justify-content: center;
}

@media (max-width: 768px) {
  .cookie-consent {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 15px;
  }
  
  .cookie-content {
    gap: 12px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    min-width: auto;
    width: 100%;
  }
}