:root {
  --color-bg: #0F172A;
  --color-bg-light: #1e293b;
  --color-accent: #67E8F9;
  --color-accent-hover: #38bdf8;
  --color-card: rgba(30,41,59,0.82);
  --color-card-gradient: linear-gradient(135deg, rgba(103,232,249,0.04) 0%, rgba(15,23,42,0.98) 100%);
  --color-shadow: 0 6px 32px 0 rgba(15,23,42,0.22), 0 1.5px 6px 0 rgba(103,232,249,0.07);
  --color-shadow-hover: 0 12px 40px 0 rgba(15,23,42,0.28), 0 2.5px 10px 0 rgba(103,232,249,0.10);
  --color-border: #67E8F9;
  --color-text: #e2e8f0;
  --color-muted: #94a3b8;
  --color-link: #67E8F9;
  --color-link-hover: #38bdf8;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --transition: 0.23s cubic-bezier(.6,.2,.4,1);
  --max-width: 1240px;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-size: 14px;
  --section-gap: 64px;
  --section-gap-mobile: 36px;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  font-family: var(--font-main);
  color: var(--color-text);
  font-size: var(--font-size);
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
  scroll-behavior: smooth;
  background: var(--color-bg);
  background-image: linear-gradient(120deg, rgba(103,232,249,0.03) 0%, rgba(15,23,42,0.97) 100%);
}

.soeasy-body {
  min-height: 100vh;
  background: var(--color-bg);
  background-image: linear-gradient(120deg, rgba(103,232,249,0.03) 0%, rgba(15,23,42,0.97) 100%);
}

.soeasy-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.soeasy-header {
  background: var(--color-bg);
  box-shadow: 0 2px 16px 0 rgba(15,23,42,0.13);
  position: sticky;
  top: 0;
  z-index: 100;
}

.soeasy-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}

.soeasy-logo img {
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(103,232,249,0.12);
  background: linear-gradient(135deg, rgba(103,232,249,0.08) 0%, rgba(15,23,42,0.98) 100%);
  transition: box-shadow var(--transition);
}
.soeasy-logo img:hover {
  box-shadow: 0 6px 24px 0 rgba(103,232,249,0.18);
}

.soeasy-nav .soeasy-menu {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.soeasy-menu-item .soeasy-link {
  color: var(--color-link);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.soeasy-menu-item .soeasy-link:hover,
.soeasy-menu-item .soeasy-link:focus {
  background: rgba(103,232,249,0.08);
  color: var(--color-link-hover);
}

.soeasy-main {
  padding-top: 0;
  padding-bottom: 0;
}

.soeasy-hero {
  padding: 56px 0 0 0;
  background: var(--color-bg);
  background-image: linear-gradient(120deg, rgba(103,232,249,0.03) 0%, rgba(15,23,42,0.97) 100%);
  min-height: 530px;
}
.soeasy-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.soeasy-hero-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.soeasy-hero-col--left {
  align-items: flex-start;
  justify-content: center;
}
.soeasy-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 14px rgba(103,232,249,0.08);
}
.soeasy-tagline {
  font-size: 1.15rem;
  color: var(--color-accent);
  margin-bottom: 10px;
  font-weight: 500;
}
.soeasy-intro {
  color: var(--color-muted);
  margin-bottom: 14px;
  max-width: 520px;
}
.soeasy-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}
.soeasy-btn {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 10px 28px;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px 0 rgba(103,232,249,0.08);
  outline: none;
  text-decoration: none;
  display: inline-block;
}
.soeasy-btn:hover, .soeasy-btn:focus {
  background: var(--color-accent);
  color: var(--color-bg);
  box-shadow: 0 6px 24px 0 rgba(103,232,249,0.18);
}
.soeasy-btn--primary {
  background: var(--color-accent);
  color: var(--color-bg);
  border: 1px solid var(--color-accent);
  font-weight: 600;
}
.soeasy-btn--primary:hover, .soeasy-btn--primary:focus {
  background: var(--color-bg);
  color: var(--color-accent);
  border: 1px solid var(--color-accent-hover);
}

.soeasy-store {
  margin-top: 10px;
}
.soeasy-playstore {
  display: inline-block;
  color: #fff;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1em;
  text-decoration: none;
  box-shadow: 0 2px 16px 0 rgba(103,232,249,0.11);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.soeasy-playstore:hover, .soeasy-playstore:focus {
  background: var(--color-bg);
  color: var(--color-accent);
  box-shadow: 0 6px 24px 0 rgba(103,232,249,0.19);
}

.soeasy-hero-col--right {
  align-items: center;
  justify-content: center;
}
.soeasy-hero-media {
  background: var(--color-card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--color-shadow);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  min-width: 320px;
  min-height: 320px;
  max-width: 410px;
}
.soeasy-hero-img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 2px 24px 0 rgba(103,232,249,0.15);
}
.soeasy-hero-stats {
  margin-top: 8px;
  width: 100%;
}
.soeasy-hero-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-muted);
  font-size: 0.97em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.soeasy-hero-list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-right: 10px;
  vertical-align: middle;
  opacity: 0.6;
}

.soeasy-section-header {
  margin-bottom: 28px;
  text-align: left;
}
.soeasy-section-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 14px rgba(103,232,249,0.08);
}
.soeasy-lead {
  color: var(--color-accent);
  font-size: 1.04em;
  font-weight: 500;
  margin: 0 0 2px 0;
}

.soeasy-world {
  padding: var(--section-gap) 0;
  background: var(--color-bg-light);
  background-image: linear-gradient(120deg, rgba(103,232,249,0.03) 0%, rgba(15,23,42,0.97) 100%);
}
.soeasy-world-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: stretch;
}
.soeasy-world-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.soeasy-world-img {
  width: 100%;
  max-width: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 32px 0 rgba(103,232,249,0.13);
  align-self: flex-start;
  max-height: 300px;
}
.soeasy-world-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--color-muted);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.soeasy-world-col ul li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-right: 10px;
  vertical-align: middle;
  opacity: 0.6;
}

.soeasy-howto {
  padding: var(--section-gap) 0;
  background: var(--color-bg);
}
.soeasy-howto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.soeasy-howto-col {
  background: var(--color-card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--color-shadow);
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.soeasy-howto-col ul,
.soeasy-howto-col ol {
  margin: 0;
  padding: 0 0 0 0;
  list-style: none;
  color: var(--color-muted);
  font-size: 0.97em;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.soeasy-howto-col ul li::before,
.soeasy-howto-col ol li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-right: 10px;
  vertical-align: middle;
  opacity: 0.6;
}
.soeasy-howto-col ol {
  counter-reset: soeasy-ol;
}
.soeasy-howto-col ol li {
  counter-increment: soeasy-ol;
  position: relative;
}
.soeasy-howto-col ol li::before {
  content: counter(soeasy-ol) '.';
  background: none;
  color: var(--color-accent);
  font-weight: 600;
  width: auto;
  margin-right: 10px;
  opacity: 1;
  border-radius: 0;
  display: inline;
}

.soeasy-howto-media {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}
.soeasy-howto-img {
  width: 100%;
  max-width: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 32px 0 rgba(103,232,249,0.13);
  max-height: 300px;
}

.soeasy-gallery {
  padding: var(--section-gap) 0;
  background: var(--color-bg-light);
}
.soeasy-screens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.soeasy-screen {
  background: var(--color-card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--color-shadow);
  padding: 14px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow var(--transition), transform var(--transition);
  min-width: 0;
}
.soeasy-screen img {
  width: 100%;
  max-width: 180px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px 0 rgba(103,232,249,0.12);
  aspect-ratio: 9/16;
}
.soeasy-screen figcaption {
  color: var(--color-muted);
  font-size: 0.95em;
  text-align: center;
}
.soeasy-screen:hover {
  box-shadow: var(--color-shadow-hover);
  transform: translateY(-3px) scale(1.025);
}

.soeasy-rhythm {
  padding: var(--section-gap) 0;
  background: var(--color-bg);
}
.soeasy-rhythm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.soeasy-rhythm-col {
  background: var(--color-card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--color-shadow);
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.soeasy-rhythm-col ul, .soeasy-rhythm-col ol {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-muted);
  font-size: 0.97em;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.soeasy-rhythm-col ul li::before,
.soeasy-rhythm-col ol li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-right: 10px;
  vertical-align: middle;
  opacity: 0.6;
}
.soeasy-rhythm-col ol {
  counter-reset: soeasy-rhythm-ol;
}
.soeasy-rhythm-col ol li {
  counter-increment: soeasy-rhythm-ol;
  position: relative;
}
.soeasy-rhythm-col ol li::before {
  content: counter(soeasy-rhythm-ol) '.';
  background: none;
  color: var(--color-accent);
  font-weight: 600;
  width: auto;
  margin-right: 10px;
  opacity: 1;
  border-radius: 0;
  display: inline;
}

.soeasy-unique {
  padding: var(--section-gap) 0;
  background: var(--color-bg-light);
}
.soeasy-unique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.soeasy-unique-grid > div {
  background: var(--color-card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--color-shadow);
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.soeasy-unique-grid > div:nth-child(4),
.soeasy-unique-grid > div:nth-child(5) {
  grid-column: span 2;
}

.soeasy-features {
  padding: var(--section-gap) 0;
  background: var(--color-bg);
}
.soeasy-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.soeasy-features-list li {
  background: var(--color-card-gradient);
  border-radius: var(--radius-sm);
  box-shadow: var(--color-shadow);
  padding: 16px 18px;
  color: var(--color-muted);
  font-size: 0.98em;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.soeasy-features-list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-right: 10px;
  vertical-align: middle;
  opacity: 0.6;
}

.soeasy-boosters {
  padding: var(--section-gap) 0;
  background: var(--color-bg-light);
}
.soeasy-boosters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.soeasy-booster {
  background: var(--color-card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--color-shadow);
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.soeasy-faq {
  padding: var(--section-gap) 0;
  background: var(--color-bg);
}
.soeasy-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.soeasy-faq-grid > div {
  background: var(--color-card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--color-shadow);
  padding: 22px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.soeasy-reviews {
  padding: var(--section-gap) 0;
  background: var(--color-bg-light);
}
.soeasy-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.soeasy-review {
  background: var(--color-card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--color-shadow);
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.soeasy-review h4 {
  margin: 0 0 5px 0;
  color: var(--color-accent);
  font-size: 1.05em;
  font-weight: 600;
}
.soeasy-review p {
  color: var(--color-muted);
  margin: 0;
  font-style: italic;
}

.soeasy-download {
  padding: var(--section-gap) 0 44px 0;
  background: var(--color-bg);
}
.soeasy-download-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}
.soeasy-download-img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 4px 32px 0 rgba(103,232,249,0.13);
  max-height: 300px;
}

.soeasy-footer {
  background: var(--color-bg-light);
  background-image: linear-gradient(120deg, rgba(103,232,249,0.03) 0%, rgba(15,23,42,0.97) 100%);
  padding: 44px 0 0 0;
}
.soeasy-footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 24px 24px;
}
.soeasy-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.97em;
  color: var(--color-muted);
}
.soeasy-logo-footer img {
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(103,232,249,0.08) 0%, rgba(15,23,42,0.98) 100%);
  box-shadow: 0 2px 8px 0 rgba(103,232,249,0.12);
  margin-bottom: 8px;
}
.soeasy-footer-col h4 {
  color: var(--color-accent);
  font-size: 1em;
  font-weight: 600;
  margin: 0 0 7px 0;
}
.soeasy-footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.soeasy-footer-col ul li a {
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--transition);
  border-radius: var(--radius-sm);
  padding: 2px 4px;
}
.soeasy-footer-col ul li a:hover, .soeasy-footer-col ul li a:focus {
  color: var(--color-link-hover);
  background: rgba(103,232,249,0.06);
}

.soeasy-cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: rgba(15,23,42,0.96);
  box-shadow: 0 -2px 24px 0 rgba(103,232,249,0.13);
  padding: 0;
  display: none;
}
.soeasy-cookie-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 18px 24px 14px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: var(--color-card-gradient);
  box-shadow: 0 2px 12px 0 rgba(103,232,249,0.08);
}
.soeasy-cookie-inner p {
  color: var(--color-muted);
  margin: 0;
  font-size: 0.97em;
  flex: 1 1 auto;
}

@media (max-width: 1100px) {
  .soeasy-hero-grid,
  .soeasy-world-grid,
  .soeasy-download-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .soeasy-unique-grid {
    grid-template-columns: 1fr 1fr;
  }
  .soeasy-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .soeasy-screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .soeasy-faq-grid,
  .soeasy-boosters-grid {
    grid-template-columns: 1fr 1fr;
  }
  .soeasy-rhythm-grid,
  .soeasy-howto-grid {
    grid-template-columns: 1fr;
  }
  .soeasy-reviews-grid {
    grid-template-columns: 1fr;
  }
  .soeasy-features-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --section-gap: var(--section-gap-mobile);
  }
  .soeasy-header-inner {
    flex-direction: column;
    height: auto;
    padding: 12px 12px 0 12px;
    gap: 10px;
    align-items: flex-start;
  }
  .soeasy-nav .soeasy-menu {
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }
  .soeasy-hero {
    padding: 32px 0 0 0;
    min-height: 0;
  }
  .soeasy-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 10px;
  }
  .soeasy-hero-media {
    min-width: 0;
    padding: 18px 8px 12px 8px;
    max-width: 100%;
  }
  .soeasy-hero-img,
  .soeasy-world-img,
  .soeasy-howto-img,
  .soeasy-download-img {
    max-width: 100%;
    max-height: 220px;
  }
  .soeasy-section-header {
    margin-bottom: 16px;
  }
  .soeasy-world,
  .soeasy-howto,
  .soeasy-gallery,
  .soeasy-rhythm,
  .soeasy-unique,
  .soeasy-features,
  .soeasy-boosters,
  .soeasy-faq,
  .soeasy-reviews,
  .soeasy-download {
    padding: var(--section-gap-mobile) 0;
  }
  .soeasy-screens-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .soeasy-unique-grid,
  .soeasy-footer-inner,
  .soeasy-faq-grid,
  .soeasy-boosters-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .soeasy-download-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .soeasy-footer {
    padding: 24px 0 0 0;
  }
  .soeasy-footer-inner {
    padding: 0 10px 10px 10px;
  }
  .soeasy-cookie-inner {
    max-width: 98vw;
    padding: 12px 10px 10px 10px;
    gap: 10px;
  }
}

/* Custom scrollbars for premium look */
body::-webkit-scrollbar {
  width: 10px;
  background: var(--color-bg);
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, rgba(103,232,249,0.10) 0%, rgba(15,23,42,0.97) 100%);
  border-radius: 8px;
}
body {
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) var(--color-bg);
}

/* Selection color */
::selection {
  background: var(--color-accent);
  color: var(--color-bg);
}