:root{
  --bg: #efedf1;
  --bg-soft: #f6f4f7;
  --card: #fbfafc;
  --card-soft: #f8f6f9;
  --text: #2a2233;
  --text-soft: #6d6574;
  --border: #ddd7e0;
  --primary: #5a4a73;
  --primary-dark: #3c314f;
  --accent: #e8d7d2;
  --accent-soft: #d9cfdf;
  --success: #7aa57d;
  --hero-bg-1: #181126;
  --hero-bg-2: #2a1938;
  --hero-glow: rgba(162, 122, 194, .18);
  --shadow-soft: 0 10px 20px rgba(72,61,80,.08);
  --shadow-card: 0 16px 28px rgba(72,61,80,.08);
  --shadow-strong: 0 30px 60px rgba(0,0,0,.14);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1200px;
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html{
  scroll-behavior: smooth;
}

body{
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img{
  display: block;
  max-width: 100%;
}

a{
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea{
  font: inherit;
}

section{
  scroll-margin-top: 110px;
}

.container{
  width: min(var(--container), 92%);
  margin: 0 auto;
}

/* HEADER */

.site-header{
  background: rgba(239, 237, 241, 0.92);
  border-bottom: 1px solid rgba(42, 34, 51, .06);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.header-inner{
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand{
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-full{
  height: 80px;
  width: auto;
  display: block;
}

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

.main-nav a{
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  opacity: .95;
  transition: opacity .18s ease;
}

.main-nav a:hover{
  opacity: .68;
}

.header-actions{
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switcher{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(42, 34, 51, .08);
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow-soft);
}

.lang-btn{
  min-width: 44px;
  text-align: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.lang-btn.active{
  background: #7c6a9c;
  color: #fff;
}

/* HERO */

.hero-section{
  background:
    radial-gradient(circle at 70% 20%, rgba(180,140,255,.12), transparent 40%),
    linear-gradient(135deg, #181126 0%, #2a1938 100%);
  color: #fff;
  padding: 72px 0 76px;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-copy{
  max-width: 620px;
}

.hero-pill{
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  margin-bottom: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
}

.hero-copy h1{
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 24px;
  color: #fff;
}

.hero-text{
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255,255,255,.84);
  max-width: 720px;
  margin-bottom: 18px;
}

.hero-cloud{
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
  margin-bottom: 18px;
}

.hero-features{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-features span{
  font-size: 15px;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  padding: 6px 12px;
  border-radius: 20px;
}

.hero-actions-row{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-media{
  display: flex;
  justify-content: center;
}

.hero-media-frame{
  width: 100%;
  max-width: 700px;
  padding: 22px;
  background: rgba(0,0,0,.18);
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
}

.hero-image{
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* PROBLEM */

.problem-section{
  background: #f4eff6;
  padding: 90px 0;
}

.problem-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-title{
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #2b2232;
}

.problem-subtitle{
  font-size: 18px;
  line-height: 1.6;
  color: #6c6473;
  margin-bottom: 26px;
  max-width: 520px;
}

.problem-list{
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.problem-list li{
  font-size: 17px;
  margin-bottom: 14px;
  color: #403645;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.problem-closing{
  font-weight: 600;
  font-size: 18px;
  color: #2c2433;
  margin-top: 22px;
}

.problem-image{
  margin-top: 20px;
}

.problem-image-caption{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9a90a6;
  margin-bottom: 6px;
}

.problem-image img{
  width: 115%;
  max-width: 640px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* SEGMENTS */

.segments-section{
  padding: 90px 0;
  background: #f5f1f7;
  border-top: 1px solid #ece6f0;
}

.segments-header{
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.segments-header::after{
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #d6cedf;
  margin: 28px auto 0;
  border-radius: 2px;
}

.segments-header h2{
  font-size: 42px;
  margin-bottom: 12px;
  color: #2d2635;
}

.segments-header p{
  font-size: 20px;
  color: #6f6679;
  margin-top: 10px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.segments-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.segment-card{
  background: white;
  padding: 34px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  transition: all .25s ease;
}

.segment-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.segment-icon{
  font-size: 38px;
  margin-bottom: 16px;
}

.segment-card h3{
  font-size: 18px;
  margin-bottom: 6px;
}

.segment-card p{
  font-size: 15px;
  color: #6d6674;
}

/* PRODUCT */

.product-section{
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f2fa 100%);
}

.product-header{
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.product-header h2{
  font-size: 42px;
  margin-bottom: 14px;
  color: #2d2635;
}

.product-header p{
  font-size: 19px;
  color: #6f6679;
}

.product-badges{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.product-badges span{
  color: #4b3a63;
  font-weight: 500;
  font-size: 15px;
  background: #f0e8f8;
  padding: 7px 12px;
  border-radius: 999px;
}

.product-main{
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 70px;
  position: relative;
}

.product-main::before{
  content: "";
  position: absolute;
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(124,80,160,0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.product-main img{
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(124,80,160,0.25);
  filter: contrast(1.05) saturate(1.1);
  position: relative;
  z-index: 1;
}

.product-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.product-card{
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: all .25s ease;
}

.product-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.product-card img{
  width: 100%;
  border-radius: 12px;
  margin-bottom: 14px;
}

.product-card h3{
  font-size: 20px;
  margin-bottom: 8px;
  color: #2d2635;
}

.product-card p{
  font-size: 16px;
  color: #6f6679;
}

/* CAPABILITIES */

.capabilities-section{
  background: linear-gradient(180deg, #f7f3f8 0%, #f3eef6 100%);
  padding: 96px 0;
}

.capabilities-header{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 46px;
}

.capabilities-header h2{
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  margin-bottom: 14px;
  color: #2d2635;
  letter-spacing: -.03em;
}

.capabilities-header p{
  font-size: 20px;
  color: #6f6679;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.55;
}

.capabilities-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 30px;
  margin-bottom: 34px;
}

.capability-card{
  background: rgba(255,255,255,.86);
  border: 1px solid #e7e0ec;
  border-radius: 20px;
  padding: 28px 28px 28px 36px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}

.capability-card::before{
  content: "";
  position: absolute;
  left: 18px;
  top: 28px;
  width: 6px;
  height: 28px;
  background: linear-gradient(180deg, #d84e8a, #6a507f);
  border-radius: 4px;
}

.capability-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.10);
}

.capability-card h3{
  font-size: 24px;
  margin-bottom: 10px;
  color: #2d2635;
  line-height: 1.2;
}

.capability-card p{
  font-size: 17px;
  color: #6f6679;
  line-height: 1.6;
  margin: 0;
}

.capability-highlight{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(124,80,160,0.25);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 28px rgba(72,61,80,.08);
  margin-top: 40px;
  transition: all .25s ease;
}

.capability-highlight:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.12);
}

.capability-highlight-copy{
  max-width: 560px;
}

.capability-highlight-tag{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ede4f7;
  color: #6f4ea3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.capability-highlight-copy h3{
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #2d2635;
  margin-bottom: 14px;
}

.capability-highlight-copy p{
  font-size: 19px;
  line-height: 1.65;
  color: #6f6679;
  margin: 0;
}

.capability-highlight-media{
  width: 100%;
}

.capability-highlight-image{
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
  display: block;
}

/* FINAL CTA */

.final-cta{
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 20%),
    linear-gradient(135deg, #120f22 0%, #2b1b3f 100%);
  color: #fff;
  padding: 90px 0;
}

.final-cta-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.final-cta-copy h2{
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.final-cta-copy p{
  font-size: 20px;
  color: rgba(255,255,255,.8);
  margin-bottom: 22px;
  max-width: 520px;
}

.final-cta-benefits{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
}

.final-cta-benefits span{
  font-size: 16px;
  color: rgba(255,255,255,.9);
}

.final-cta-button{
  font-size: 18px;
  padding: 14px 26px;
  box-shadow: 0 12px 30px rgba(216,78,138,.35);
}

.final-cta-form{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 22px;
  padding: 26px;
  backdrop-filter: blur(8px);
}

.contact-form{
  display: grid;
  gap: 16px;
}

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

.form-grid input,
.form-grid select{
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
  background: #fff;
  color: var(--text);
  outline: none;
}

.form-grid input::placeholder{
  color: #8b8394;
}

.checkbox-row{
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
}

.checkbox-row input{
  width: 18px;
  height: 18px;
}

.form-note{
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 10px;
  text-align: center;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}

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

.btn-primary{
  background: linear-gradient(135deg, #d84e8a 0%, #6a507f 100%);
  color: #fff;
  box-shadow: 0 12px 22px rgba(98, 66, 126, .22);
}

.btn-secondary{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}

.btn-secondary:hover{
  background: rgba(255,255,255,.08);
}

.btn-full{
  width: 100%;
}

/* FOOTER */

.site-footer{
  background: #0f0b1d;
  color: rgba(255,255,255,.7);
  padding: 28px 0;
}

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

.footer-brand{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-name{
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .04em;
  color: #fff;
}

.footer-sub{
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: .18em;
}

.footer-copy{
  font-size: 14px;
}

/* TABLET */

@media (max-width: 1100px){
  .main-nav{
    display: none;
  }

  .hero-grid,
  .problem-grid,
  .capability-highlight,
  .final-cta-inner{
    grid-template-columns: 1fr;
  }

  .segments-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .product-grid{
    grid-template-columns: 1fr;
  }

  .capabilities-grid{
    grid-template-columns: 1fr;
  }

  .problem-image img{
    width: 100%;
    max-width: 720px;
  }
}

/* MOBILE */

@media (max-width: 700px){
  section{
    scroll-margin-top: 80px;
  }

  .site-header{
    position: static;
  }

  .header-inner{
    min-height: auto;
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand{
    width: 100%;
    justify-content: center;
  }

  .brand-logo-full{
    height: 64px;
  }

  .header-actions{
    width: 100%;
    justify-content: center;
  }

  .hero-section,
  .problem-section,
  .segments-section,
  .product-section,
  .capabilities-section,
  .final-cta{
    padding: 64px 0;
  }

  .hero-copy{
    max-width: 100%;
    text-align: center;
  }

  .hero-copy h1{
    font-size: 40px;
  }

  .hero-text,
  .hero-cloud,
  .problem-subtitle,
  .segments-header p,
  .product-header p,
  .capabilities-header p,
  .capability-highlight-copy p,
  .final-cta-copy p{
    font-size: 18px;
  }

  .hero-pill{
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features{
    justify-content: center;
  }

  .hero-actions-row{
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-media-frame{
    padding: 14px;
    border-radius: 20px;
  }

  .problem-grid{
    gap: 34px;
  }

  .problem-title{
    font-size: 34px;
  }

  .problem-image img{
    width: 100%;
    max-width: 100%;
  }

  .segments-header h2,
  .product-header h2,
  .capabilities-header h2{
    font-size: 32px;
  }

  .segments-grid{
    grid-template-columns: 1fr;
  }

  .segment-card{
    padding: 28px 24px;
  }

  .product-main{
    margin-bottom: 42px;
  }

  .product-main::before{
    width: 320px;
    height: 180px;
  }

  .product-badges{
    gap: 10px;
  }

  .product-badges span{
    font-size: 14px;
  }

  .capability-card{
    padding: 24px 22px 24px 34px;
  }

  .capability-card h3{
    font-size: 22px;
  }

  .capability-highlight{
    padding: 20px;
  }

  .capability-highlight-image{
    height: 240px;
  }

  .form-grid{
    grid-template-columns: 1fr;
  }

  .final-cta-copy{
    text-align: center;
  }

  .final-cta-copy p{
    max-width: none;
  }

  .final-cta-benefits{
    align-items: center;
  }

  .footer-inner{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
