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

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #8b5cf6;
  --accent: #06b6d4;
  --dark: #1e1b4b;
  --light: #f8fafc;
  --white: #FFFFFF;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --success: #10b981;
  --warning: #f59e0b;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);
  --gradient-dark: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  --shadow-sm: 0 2px 8px rgba(99, 102, 241, 0.1);
  --shadow-md: 0 8px 30px rgba(99, 102, 241, 0.15);
  --shadow-lg: 0 20px 60px rgba(99, 102, 241, 0.2);
  --shadow-xl: 0 30px 80px rgba(99, 102, 241, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

body { 
  font-family: "Prompt", sans-serif; 
  line-height: 1.6; 
  color: var(--dark); 
  background: var(--light); 
  overflow-x: hidden; 
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Header */
.kvu3j8s7 { 
  background: rgba(255, 255, 255, 0.95); 
  backdrop-filter: blur(20px);
  padding: 1rem 0; 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  box-shadow: var(--shadow-sm); 
  border-bottom: 1px solid var(--gray-light);
}

.al9lj4ji { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 2rem; 
}

.g09uy0lh { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 2rem; 
}

.nom1od8b { 
  display: flex; 
  align-items: center; 
  gap: 0.75rem; 
  font-size: 1.5rem; 
  font-weight: 700; 
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.r1np4d8d { 
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  color: white;
  -webkit-text-fill-color: initial;
}

.fhm78tbl {
  width: 24px;
  height: 24px;
}

.en9jgdj3 { 
  display: flex; 
  gap: 2rem; 
}

.en9jgdj3 a { 
  font-weight: 500; 
  color: var(--gray); 
  transition: all 0.3s; 
  position: relative; 
  font-size: 0.95rem;
}

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

.en9jgdj3 a::after { 
  content: ''; 
  position: absolute; 
  bottom: -5px; 
  left: 0; 
  width: 0; 
  height: 2px; 
  background: var(--gradient-primary); 
  transition: width 0.3s; 
  border-radius: 2px;
}

.en9jgdj3 a:hover::after { 
  width: 100%; 
}

.nxzfp983 { 
  background: var(--gradient-primary); 
  color: var(--white); 
  border: none; 
  padding: 0.75rem 1.75rem; 
  border-radius: 50px; 
  font-weight: 600; 
  cursor: pointer; 
  transition: all 0.3s; 
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.nxzfp983:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4); 
}

.jlu6xnwa { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  background: none; 
  border: none; 
  cursor: pointer; 
  padding: 0.5rem; 
}

.jlu6xnwa span { 
  width: 25px; 
  height: 3px; 
  background: var(--dark); 
  border-radius: 2px; 
  transition: 0.3s; 
}

/* Hero Section */
.k1js0dij { 
  min-height: 90vh; 
  display: flex; 
  align-items: center; 
  position: relative; 
  background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 50%, #f0fdf4 100%); 
  overflow: hidden; 
  padding: 4rem 2rem; 
}

.m1adadyd {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.kvw1rc33 { 
  max-width: 1200px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 5rem; 
  align-items: center; 
  position: relative; 
  z-index: 1; 
}

.sgn92n7q { 
  animation: slideInLeft 0.8s ease; 
}

@keyframes slideInLeft { 
  from { opacity: 0; transform: translateX(-50px); } 
  to { opacity: 1; transform: translateX(0); } 
}

.behdf17p {
  margin-bottom: 1.5rem;
}

.bamv9wck { 
  display: inline-flex; 
  align-items: center; 
  gap: 0.5rem;
  background: var(--white); 
  color: var(--primary); 
  padding: 0.6rem 1.5rem; 
  border-radius: 50px; 
  font-weight: 600; 
  font-size: 0.9rem;
  box-shadow: var(--shadow-md); 
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.uj0217ej { 
  font-size: 3.8rem; 
  line-height: 1.1; 
  margin-bottom: 1.5rem; 
  color: var(--dark); 
  font-weight: 800;
}

.uj0217ej .a2iun825 { 
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.w5wt5a3a { 
  font-size: 1.15rem; 
  color: var(--gray); 
  margin-bottom: 2rem; 
  line-height: 1.9; 
}

.oxtejx8g { 
  display: flex; 
  gap: 1rem; 
  margin-bottom: 2rem; 
  flex-wrap: wrap; 
}

.izgnve11 { 
  padding: 0.85rem 2rem; 
  border-radius: 50px; 
  font-weight: 600; 
  cursor: pointer; 
  transition: all 0.3s; 
  border: none; 
  font-size: 1rem; 
  display: inline-flex; 
  align-items: center; 
  gap: 0.6rem; 
}

.n3u24oky { 
  padding: 1.1rem 2.5rem; 
  font-size: 1.05rem; 
}

.m7tl90d4 { 
  background: var(--gradient-primary); 
  color: var(--white); 
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35); 
}

.m7tl90d4:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.45); 
}

.tqdsf3sg {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--gray-light);
}

.tqdsf3sg:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.n558n3ce { 
  background: transparent; 
  border: 2px solid var(--primary); 
  color: var(--primary); 
  padding: 1rem 2.5rem; 
  font-size: 1.1rem; 
}

.n558n3ce:hover { 
  background: var(--primary); 
  color: var(--white); 
}

.fxg0tpza { 
  background: var(--gradient-primary); 
  color: var(--white); 
  border: none; 
  padding: 1.1rem 2.5rem; 
  border-radius: 50px; 
  font-weight: 700; 
  font-size: 1.05rem; 
  cursor: pointer; 
  transition: all 0.3s; 
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
}

.fxg0tpza:hover { 
  transform: scale(1.03); 
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.45);
}

.nntni4x6 { 
  display: flex; 
  gap: 1.5rem; 
  flex-wrap: wrap; 
}

.hdyiqlbm { 
  display: flex; 
  align-items: center; 
  gap: 0.6rem; 
  font-size: 0.9rem; 
  color: var(--gray); 
}

.h4imonvc { 
  width: 22px;
  height: 22px;
  color: var(--success);
}

.h4imonvc svg {
  width: 100%;
  height: 100%;
}

/* Hero Visual - Dashboard */
.k66c8eq3 { 
  animation: slideInRight 0.8s ease; 
}

@keyframes slideInRight { 
  from { opacity: 0; transform: translateX(50px); } 
  to { opacity: 1; transform: translateX(0); } 
}

.necf3933 {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  transition: all 0.4s ease;
  border: 1px solid var(--gray-light);
}

.necf3933:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.yt06w94k {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-light);
}

.n226awgh {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--dark);
}

.we6nm8hi {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.ixketz1h {
  color: var(--gray);
  font-size: 0.9rem;
}

.lw0saeut {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.ufnnpkdv {
  text-align: center;
}

.cbnwwvha {
  width: 140px;
  height: 140px;
  margin: 0 auto 1rem;
  position: relative;
}

.e53uuqj7 {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.r8r1gpo8 {
  fill: none;
  stroke: var(--gray-light);
  stroke-width: 8;
}

.dun8xeu2 {
  fill: none;
  stroke: url(#scoreGradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 326.56;
  stroke-dashoffset: 42;
  transition: stroke-dashoffset 1s ease;
}

.vixk8ky1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.kze1nuqp {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.asinfycx {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
}

.pu9hflrm {
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
}

.ans9d6uw {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.i975gpvh {
  background: var(--light);
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
}

.i975gpvh:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  transform: translateX(5px);
}

.hb4u03ji {
  font-size: 1.8rem;
}

.mx4orknl {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  min-width: 50px;
}

.x93moxma {
  font-size: 0.8rem;
  color: var(--gray);
  flex: 1;
}

.bjycw2jh {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
}

.bjycw2jh.g5g5kned {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.lhuxzh86 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-light);
}

.tmvba6v4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  padding: 0.75rem;
  background: var(--light);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.tmvba6v4:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
}

.e7j8claz {
  font-size: 1.2rem;
}

.pkye9l28 {
  color: var(--dark);
}

/* Section Styles */
.yogofocs { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 6rem 2rem; 
}

.hk7gx3lt { 
  text-align: center; 
  margin-bottom: 4rem; 
}

.wg1uwble { 
  display: inline-block; 
  background: var(--gradient-secondary); 
  color: var(--white); 
  padding: 0.5rem 1.5rem; 
  border-radius: 20px; 
  font-size: 0.9rem; 
  font-weight: 600; 
  margin-bottom: 1rem; 
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.jxkl7iac { 
  font-size: 2.8rem; 
  color: var(--dark); 
  margin-bottom: 0.75rem; 
  font-weight: 800;
}

.u5mhprip { 
  color: var(--gray); 
  font-size: 1.15rem; 
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.cbwv2bqr {
  background: var(--white);
}

.wlkuko06 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.s0rpam7p {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s;
  cursor: pointer;
  border: 1px solid transparent;
}

.s0rpam7p:hover {
  background: var(--white);
  border-color: var(--primary-light);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.s0rpam7p.bt97x3ul {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border: 2px solid var(--primary-light);
}

.c8fp3s05 {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.35rem 1.25rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.npap8owz {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.hknxkojo {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.d5cvyuc5 {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.dpn9u61l {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dpn9u61l li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--dark);
  font-size: 0.9rem;
}

.dpn9u61l .nt86wyld {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Plans Section */
.oab5sztx {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.iwyf86yz {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.phy7e5lq {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s;
  cursor: pointer;
  border: 2px solid var(--gray-light);
}

.phy7e5lq:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.phy7e5lq.bt97x3ul {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
  box-shadow: var(--shadow-md);
}

.lhvmpjn4 {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
}

.afhhffw3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.dnxzmmnb {
  font-size: 1.8rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.ne9a7p2m {
  color: var(--gray);
  font-size: 0.9rem;
}

.hbybb4k4 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-light);
}

.q865xzp2 {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 600;
  vertical-align: top;
}

.rkt0mpm1 {
  font-size: 3.5rem;
  color: var(--dark);
  font-weight: 800;
  line-height: 1;
}

.baw67q5r {
  color: var(--gray);
  font-size: 0.95rem;
  margin-left: 0.25rem;
}

.lsn8u45q {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.lsn8u45q li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.lsn8u45q .i7m3jzrk {
  color: var(--dark);
}

.lsn8u45q .z9qth4n8 {
  color: var(--gray);
  opacity: 0.6;
}

.lsn8u45q .isx06y3l {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.lsn8u45q .i7m3jzrk .isx06y3l {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.lsn8u45q .z9qth4n8 .isx06y3l {
  background: rgba(100, 116, 139, 0.15);
  color: var(--gray);
}

.e7nnepjh {
  width: 100%;
  background: var(--light);
  color: var(--dark);
  border: 2px solid var(--gray-light);
  padding: 1rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.e7nnepjh:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--white);
}

.vzwiilbh {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.vzwiilbh:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* Stories Section */
.lwj12l30 {
  background: var(--white);
}

.mvju5f3x {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.oeey3k97 {
  background: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}

.oeey3k97:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.yy44ltc9 {
  position: relative;
  height: 120px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dsbjzf07 {
  font-size: 5rem;
}

.b2mm5bgp {
  position: absolute;
  bottom: -15px;
  right: 20px;
  background: var(--white);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

.v36vj94a {
  padding: 3.5rem 1.5rem 1.5rem;
}

.qh2vxwfu {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.vqr8jj6o {
  color: var(--dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.x0nac113 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-light);
}

.rh7d91ym {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.mc628j3n {
  display: flex;
  flex-direction: column;
}

.i32ghz31 {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.c9jls3pt {
  color: var(--gray);
  font-size: 0.8rem;
}

.b8un0d4p {
  display: flex;
  justify-content: space-around;
  padding: 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
}

.als4adbm {
  text-align: center;
}

.pvejhuv6 {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wnuhcdxm {
  font-size: 0.75rem;
  color: var(--gray);
}

.qu05vuoy {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.cl3dxz1y {
  text-align: center;
}

.ncn3zg90 {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eun0q9pa {
  color: var(--gray);
  font-size: 0.95rem;
}

/* CTA Section */
.wmtjzdlp {
  background: var(--gradient-dark);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.fyakchn3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.jrds73dq {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.xgptjqrm {
  text-align: center;
}

.tn0ox47g {
  margin-bottom: 1.5rem;
}

.x9r08jaj {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nlxcd17j {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 800;
}

.u6nneto3 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.h1nm9of2 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.h1nm9of2 input {
  flex: 1;
  min-width: 200px;
  padding: 1.1rem 1.75rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  color: var(--white);
  transition: all 0.3s;
}

.h1nm9of2 input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.h1nm9of2 input:focus {
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.o2f074w0 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Footer */
.c85ylhza {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 2rem 2rem;
}

.ceggajbf {
  max-width: 1200px;
  margin: 0 auto;
}

.m9kgvpub {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.igrqcter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.igrqcter .r1np4d8d {
  width: 36px;
  height: 36px;
  -webkit-text-fill-color: initial;
}

.igrqcter .fhm78tbl {
  width: 20px;
  height: 20px;
}

.zm573grr {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.bgql6a6u {
  display: flex;
  gap: 0.75rem;
}

.k7jw0gre {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.k7jw0gre:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

.w0ek3m9u h4,
.lfz9ckaz h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.w0ek3m9u ul li {
  margin-bottom: 0.85rem;
}

.w0ek3m9u a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
  font-size: 0.95rem;
}

.w0ek3m9u a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.xbllnuch li {
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.jazhaniv {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Modal */
.caaup4kx {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 27, 75, 0.8);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.amtqknpk {
  background: var(--white);
  padding: 3.5rem;
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 420px;
  position: relative;
  animation: modalPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: var(--shadow-xl);
}

@keyframes modalPop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.mny6h46o {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.2rem;
  cursor: pointer;
  color: var(--gray);
  background: none;
  border: none;
  transition: all 0.3s;
  line-height: 1;
}

.mny6h46o:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.szctcd5b {
  font-size: 5.5rem;
  margin-bottom: 1.25rem;
}

.y7dlww4a {
  color: var(--dark);
  font-size: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.e3j8cj8z {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .kvw1rc33 { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 3rem;
  }
  
  .sgn92n7q { order: 1; }
  .k66c8eq3 { order: 0; }
  .nntni4x6 { justify-content: center; }
  
  .wlkuko06,
  .iwyf86yz,
  .mvju5f3x { 
    grid-template-columns: 1fr; 
  }
  
  .m9kgvpub { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .lw0saeut {
    grid-template-columns: 1fr;
  }
  
  .jxkl7iac {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .en9jgdj3, .nxzfp983 { display: none; }
  .jlu6xnwa { display: flex; }
  
  .uj0217ej { font-size: 2.5rem; }
  .w5wt5a3a { font-size: 1rem; }
  
  .jxkl7iac { font-size: 1.8rem; }
  .u5mhprip { font-size: 1rem; }
  
  .nlxcd17j { font-size: 2rem; }
  .h1nm9of2 { flex-direction: column; }
  .h1nm9of2 input { width: 100%; }
  
  .m9kgvpub { grid-template-columns: 1fr; }
  .qu05vuoy { gap: 2.5rem; }
  
  .ncn3zg90 {
    font-size: 2.2rem;
  }
}
