.elementor-kit-24{--e-global-color-primary:#2FE0C5;--e-global-color-secondary:#0D2230;--e-global-color-text:#EDF4F7;--e-global-color-accent:#2FE0C5;--e-global-typography-primary-font-family:"Inter";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Inter Tight";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Inter Tight";--e-global-typography-accent-font-weight:500;}.elementor-kit-24 e-page-transition{background-color:#D4D4D4;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1380px;}.e-con{--container-max-width:1380px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */:root {
  --pw-bg: #081923;
  --pw-bg-2: #0d2230;
  --pw-panel: rgba(255,255,255,0.05);
  --pw-line: rgba(255,255,255,0.08);
  --pw-text: #edf4f7;
  --pw-muted: #a7bcc7;
  --pw-accent: #2fe0c5;
  --pw-accent-2: #6ef7e7;
  --pw-shadow: 0 20px 60px rgba(0,0,0,0.35);
  --pw-radius: 22px;
  --pw-max: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 15% 20%, rgba(47,224,197,0.13), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(110,247,231,0.08), transparent 24%),
    linear-gradient(180deg, #07151e 0%, #081923 48%, #0a1d29 100%);
  color: var(--pw-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pw-site * {
  box-sizing: border-box;
}

.pw-container {
  width: min(var(--pw-max), calc(100% - 40px));
  margin: 0 auto;
}

/* HERO */

.pw-hero {
  padding: 110px 0 60px;
}

.pw-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* FIXED BALANCE */
  gap: 42px;
  align-items: stretch;
}

.pw-hero-copy,
.pw-hero-card,
.pw-card,
.pw-feature {
  background: linear-gradient(180deg, rgba(18,39,49,0.75) 0%, rgba(10,24,32,0.9) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--pw-shadow);
  backdrop-filter: blur(16px);
}

/* LEFT SIDE */

.pw-hero-copy {
  border-radius: 30px;
  padding: 48px; /* INCREASED */
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pw-eyebrow {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(110,247,231,0.06);
  border: 1px solid rgba(110,247,231,0.12);
  color: var(--pw-accent-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* 🔥 FIXED HEADLINE */
.pw-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 5vw, 4.6rem); /* REDUCED */
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 12ch; /* IMPORTANT */
}

.pw-hero-copy p {
  max-width: 58ch;
  margin: 0 0 28px;
  color: var(--pw-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.pw-hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 36px;
}

/* BUTTONS */

.pw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pw-btn:hover {
  transform: translateY(-1px);
}

.pw-btn-primary {
  color: #07161e;
  background: linear-gradient(135deg, var(--pw-accent), var(--pw-accent-2));
  box-shadow: 0 16px 32px rgba(47,224,197,0.18);
}

.pw-btn-secondary {
  color: var(--pw-text);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

/* STATS */

.pw-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pw-stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
}

.pw-stat strong {
  display: block;
  margin-bottom: 6px;
}

.pw-stat span {
  color: var(--pw-muted);
  font-size: 0.9rem;
}

/* RIGHT SIDE */

.pw-hero-card {
  border-radius: 30px;
  padding: 28px;
  min-height: 620px;
  position: relative;
  overflow: hidden;
}

.pw-watermark {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  opacity: 0.06;
}

.pw-logo-wrap {
  border-radius: 24px;
  min-height: 260px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background:
    radial-gradient(circle at 50% 35%, rgba(47,224,197,0.12), transparent 36%);
}

.pw-logo-wrap img {
  width: 80%;
}

.pw-checklist {
  display: grid;
  gap: 12px;
}

.pw-check {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pw-check strong {
  display: block;
}

.pw-check span {
  color: var(--pw-muted);
  font-size: 0.9rem;
}

/* SECTIONS */

.pw-section {
  padding: 40px 0;
}

.pw-section h2 {
  margin-bottom: 16px;
}

.pw-lead {
  margin-bottom: 26px;
  color: var(--pw-muted);
}

.pw-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.pw-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pw-feature {
  padding: 24px;
  border-radius: 24px;
}

.pw-card {
  padding: 26px;
  border-radius: 24px;
}

/* CONTACT */

.pw-email a {
  color: var(--pw-accent-2);
  font-weight: 700;
  text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 1080px) {
  .pw-hero-grid,
  .pw-grid-2,
  .pw-grid-3,
  .pw-stats {
    grid-template-columns: 1fr;
  }

  .pw-hero-copy,
  .pw-hero-card {
    min-height: auto;
  }

  .pw-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 8vw, 4rem);
  }
}

@media (max-width: 767px) {
  .pw-container {
    width: calc(100% - 24px);
  }

  .pw-hero {
    padding-top: 80px;
  }

  .pw-hero-copy {
    padding: 28px;
  }
}/* End custom CSS */