:root {
  --bg: #081120;
  --bg-soft: #0f1b31;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #e5eefc;
  --text-soft: #b6c4dd;
  --dark-text: #142033;
  --primary: #4f8cff;
  --primary-2: #6ee7ff;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #06101e 0%, #0a1530 40%, #f5f8ff 40%, #f5f8ff 100%);
  color: var(--dark-text);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(6, 16, 30, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: #f1f3f7;
}

.logo-img{
    height: 48px;
    width: auto;
}

.logo-text{
    white-space: nowrap;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #081120;
  box-shadow: var(--shadow);
}




.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #dce8ff;
}

.main-nav a {
  opacity: 0.92;
  transition: 0.25s ease;
}

.main-nav a:hover { opacity: 1; color: var(--white); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 44px;
  height: 44px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #06101e;
  box-shadow: 0 18px 40px rgba(79, 140, 255, 0.28);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.14);
}

.btn-nav {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding-inline: 16px;
}

.btn-light {
  background: #fff;
  color: #0d1730;
}

.btn-outline-light {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 56px;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #dce8ff;
  font-size: 0.9rem;
  font-weight: 600;
}

.section-tag {
  background: rgba(79, 140, 255, 0.08);
  border-color: rgba(79, 140, 255, 0.14);
  color: #3868d8;
}

.section-tag.light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.16);
  color: #eaf2ff;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 span {
  background: linear-gradient(135deg, #8bc7ff, #7ef7f5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 680px;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #d8e6fb;
  font-size: 0.95rem;
}

.hero-card {
  position: relative;
}

.dashboard-window {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.window-top {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}

.dashboard-body {
  display: grid;
  gap: 14px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric-card,
.chart-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px;
}

.metric-card p {
  margin: 0 0 8px;
  color: #cfdcf2;
  font-size: 0.95rem;
}

.metric-card strong {
  display: block;
  font-size: 1.55rem;
  color: #fff;
}

.metric-card small {
  color: #aac0e4;
}

.metric-card.highlight {
  background: linear-gradient(135deg, rgba(79,140,255,0.35), rgba(110,231,255,0.12));
}

.chart-card {
  min-height: 180px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.bar {
  flex: 1;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(180deg, #8fc3ff 0%, #4f8cff 100%);
  animation: rise 1.5s ease forwards;
  transform-origin: bottom;
}

.b1 { height: 30%; }
.b2 { height: 50%; }
.b3 { height: 74%; }
.b4 { height: 61%; }
.b5 { height: 88%; }

@keyframes rise {
  from { transform: scaleY(0.15); opacity: 0.35; }
  to { transform: scaleY(1); opacity: 1; }
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}

.hero-bg-1 {
  width: 420px;
  height: 420px;
  background: rgba(79, 140, 255, 0.28);
  top: -90px;
  left: -120px;
}

.hero-bg-2 {
  width: 360px;
  height: 360px;
  background: rgba(110, 231, 255, 0.16);
  bottom: -80px;
  right: -80px;
}

.trust-strip {
  padding: 18px 0;
  background: rgba(255,255,255,0.04);
  color: var(--white);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-items span {
  text-align: center;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.section-heading,
.section-intro h2,
.split-text h2,
.cta-box h2 {
  max-width: 780px;
}

.section h2,
.cta-box h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.section-heading p,
.section-text p,
.split-text p,
.cta-box p,
.feature-card p,
.sector-card p,
.quote-card p,
.faq-item p,
.site-footer p {
  color: #4e5f79;
  line-height: 1.8;
}

.cards-grid,
.sector-grid,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.feature-card,
.sector-card,
.quote-card,
.stats-box,
.faq-item,
.cta-box,
.section-text,
.section-intro,
.split-text {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(13, 23, 48, 0.06);
  box-shadow: 0 18px 45px rgba(12, 28, 58, 0.08);
  border-radius: var(--radius);
}

.feature-card,
.sector-card,
.quote-card {
  padding: 26px;
}

.feature-card h3,
.sector-card h3 {
  margin: 16px 0 10px;
  font-size: 1.2rem;
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.14), rgba(110, 231, 255, 0.18));
  font-size: 1.5rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
}

.split-text,
.section-text,
.section-intro {
  padding: 30px;
}

.benefit-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  line-height: 1.7;
  color: #253551;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2f6ff6;
  font-weight: 800;
}

.stats-box {
  padding: 18px;
  display: grid;
  gap: 16px;
}

.stat-item {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f6f9ff 0%, #edf4ff 100%);
  border: 1px solid rgba(47,111,246,0.08);
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 6px;
}

.testimonials {
  background: #f5f8ff;
}

.quote-card p {
  margin: 0;
  font-size: 1.08rem;
  color: #243552;
}

.narrow {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.faq-item {
  padding: 22px 24px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-bottom: 0;
}

.cta-section {
  padding: 30px 0 100px;
  background: #f5f8ff;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: linear-gradient(135deg, #112345, #1b3e7e 60%, #2456aa 100%);
  color: #fff;
}

.cta-box h2,
.cta-box p {
  color: #fff;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.site-footer {
  background: #081120;
  color: #fff;
  padding: 30px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #c5d3ea;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .split-layout,
  .cta-box,
  .cards-grid,
  .sector-grid,
  .quote-grid,
  .trust-items {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .section-grid,
  .split-layout,
  .cta-box {
    gap: 24px;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
    background: rgba(8, 17, 32, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
}

@media (max-width: 720px) {
  body {
    background: linear-gradient(180deg, #06101e 0%, #0a1530 23%, #f5f8ff 23%, #f5f8ff 100%);
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid,
  .section-grid,
  .split-layout,
  .cta-box,
  .cards-grid,
  .sector-grid,
  .quote-grid,
  .trust-items {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .section,
  .cta-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }
}

@media (max-width: 768px) {

    .hero{
        padding: 40px 0 30px 0;
        overflow: hidden;
    }

    .hero-grid{
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .hero-content{
        text-align: center;
    }

    .hero-content h1{
        font-size: 2rem;
        line-height: 1.25;
    }

    .hero-text{
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-actions{
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn{
        width: 100%;
        text-align: center;
    }

    .hero-points{
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
        align-items: center;
    }

    .hero-card{
        width: 100%;
    }

    .dashboard-window{
        width: 100%;
    }

    .metric-row{
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .chart-card{
        height: 120px;
    }
}
.hero-image{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.hero-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.hidden-gallery {
    display: none;
}
.hero-image{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.hero-image:hover{
    transform: scale(1.02);
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

.image-modal{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.88);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-modal.show{
    display: flex;
}

.modal-image{
    max-width: 92%;
    max-height: 88vh;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.close-modal{
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 42px;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
}

.modal-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 34px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
}

.modal-nav.prev{
    left: 20px;
}

.modal-nav.next{
    right: 20px;
}

.modal-nav:hover,
.close-modal:hover{
    background: rgba(255,255,255,0.18);
}

@media (max-width: 768px){
    .modal-nav{
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .close-modal{
        top: 12px;
        right: 16px;
        font-size: 36px;
    }
}

.sector-note{
    margin-top: 20px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #1f3c88;
    background: #f8fbff;
    border: 1px solid #dbeafe;
    padding: 14px 18px;
    border-radius: 12px;
}
.trust-items a{
    display: inline-block;
    margin-right: 18px;
    text-decoration: none;
    font-weight: 600;
    color: #dee1e7;
    transition: 0.3s;
}

.trust-items a:hover{
    color: #424f6b;
    text-decoration: underline;
}
.trust-title{
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #eaecf1;
}
.contact-form{
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 15px;
}

.form-group input{
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
}

.form-group input:focus{
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
