@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --c-primary: #D800FF;
  --c-primary-dark: #9D00CC;
  --c-secondary: #00E5FF;
  --c-accent: #FF0055;
  --c-bg: #FAFAFC;
  --c-surface: #FFFFFF;
  --c-surface-alt: #F3F4F8;
  --c-text: #1A1A24;
  --c-text-muted: #5C5C70;
  --c-border: #E2E4EA;
  --g-hero: linear-gradient(135deg, #F3E8FF 0%, #E0F7FA 50%, #FFF0F5 100%);
  --g-btn: linear-gradient(90deg, var(--c-primary) 0%, var(--c-accent) 100%);
  --g-card: linear-gradient(180deg, var(--c-surface) 0%, var(--c-surface-alt) 100%);
  --s-radius: 16px;
  --s-radius-sm: 8px;
  --s-radius-lg: 24px;
  --s-shadow: 0 4px 24px rgba(0,0,0,0.06);
  --s-shadow-hover: 0 12px 40px rgba(216,0,255,0.15);
  --f-main: 'Manrope', system-ui, -apple-system, sans-serif;
  --z-header: 100;
  --z-modal: 200;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--f-main);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

.hdr {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}

.hdr__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.hdr__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

.hdr__logo svg {
  width: 32px;
  height: 32px;
}

.hdr__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hdr__nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: color 0.2s ease;
}

.hdr__nav a:hover {
  color: var(--c-primary);
}

.hdr__cta {
  padding: 10px 20px;
  background: var(--g-btn);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--s-radius-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hdr__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(216,0,255,0.3);
  color: #fff;
}

.ftr {
  background: var(--c-text);
  color: #fff;
  margin-top: auto;
}

.ftr__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.ftr__brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 280px;
}

.ftr__col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-secondary);
  margin-bottom: 20px;
}

.ftr__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ftr__col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.ftr__col a:hover {
  color: #fff;
}

.ftr__bar {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.ctn {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.sec {
  padding: 80px 0;
}

.sec--hero {
  background: var(--g-hero);
  padding: 120px 0 100px;
}

.sec--alt {
  background: var(--c-surface-alt);
}

.sec__head {
  margin-bottom: 48px;
}

.sec__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-primary);
  margin-bottom: 16px;
  background: rgba(216,0,255,0.1);
  padding: 6px 12px;
  border-radius: 20px;
}

.sec__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--c-text);
}

.sec__title span {
  background: var(--g-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--c-text-muted);
  max-width: 640px;
  margin: 0;
  line-height: 1.6;
}

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

.hro__txt {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hro__acts {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--s-radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--pri {
  background: var(--g-btn);
  color: #fff;
  box-shadow: 0 4px 16px rgba(216,0,255,0.25);
}

.btn--pri:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(216,0,255,0.35);
}

.btn--sec {
  background: var(--c-surface);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}

.btn--sec:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.hro__img {
  position: relative;
  border-radius: var(--s-radius);
  overflow: hidden;
  box-shadow: var(--s-shadow);
  aspect-ratio: 4/3;
  background: var(--c-surface);
}

.hro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crd {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--s-radius);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--s-shadow-hover);
  border-color: var(--c-primary);
}

.crd__icon {
  width: 48px;
  height: 48px;
  background: rgba(216,0,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--c-primary);
}

.crd__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.crd__txt {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.grd {
  display: grid;
  gap: 24px;
}

.grd--3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grd--4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.stt__num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--g-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 8px;
  line-height: 1;
}

.stt__lbl {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  font-weight: 600;
}

.cta-band {
  background: var(--c-text);
  border-radius: var(--s-radius-lg);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(216,0,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__title {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}

.cta-band__txt {
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.cta-band__btns {
  position: relative;
  z-index: 1;
}

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

.faq__item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--s-radius-sm);
  padding: 20px 24px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.faq__item:hover {
  border-color: var(--c-primary);
}

.faq__q {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 8px;
}

.faq__a {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.mdb {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
}

.mdb--open {
  display: flex;
}

.mdb__box {
  background: var(--c-surface);
  border-radius: var(--s-radius);
  padding: 40px;
  width: 90%;
  max-width: 480px;
  box-shadow: var(--s-shadow);
  position: relative;
}

.mdb__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-surface-alt);
  cursor: pointer;
  transition: background 0.2s ease;
}

.mdb__close:hover {
  background: var(--c-border);
}

.frm {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.frm__grp label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--c-text);
}

.frm__grp input,
.frm__grp textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--c-surface-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--s-radius-sm);
  font-size: 0.9rem;
  color: var(--c-text);
  transition: border-color 0.2s ease;
}

.frm__grp input:focus,
.frm__grp textarea:focus {
  border-color: var(--c-primary);
}

.frm__grp textarea {
  min-height: 100px;
  resize: vertical;
}

@media (max-width: 900px) {
  .hro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hro__img {
    order: -1;
  }
  
  .ftr__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .hdr__nav {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .sec {
    padding: 60px 0;
  }
  
  .sec--hero {
    padding: 80px 0 60px;
  }
  
  .hdr__nav {
    display: none;
  }
  
  .hdr__bar {
    height: 64px;
  }
  
  .ftr__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .ftr__bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .cta-band {
    padding: 40px 24px;
  }
}*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}