:root {
  --primary: #FF6C37;
  --primary-dark: #e65a1e;
  --bg-gradient: linear-gradient(120deg, #f8fafc 0%, #f3f4f6 100%);
  --section-bg: #f9fafb;
  --card-shadow: 0 8px 32px rgba(16, 30, 54, 0.08);
  --radius: 18px;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111827;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.navbar-logo {
  height: 60px;
}

.navbar-title {
  font-size: 2rem;
  font-weight: 800;
  color: #212121;
  letter-spacing: 1px;
}

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

.navbar-link {
  color: #6B7280;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.navbar-link:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .2s;
  margin-top: 2px;
}

.navbar-link:hover {
  color: var(--primary);
}

.navbar-link:hover:after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn,
.btn-outline {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255, 108, 55, 0.08);
}

.btn {
  background: var(--primary);
  color: #fff;
}

.btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(255, 108, 55, 0.16);
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-gradient);
  padding: 120px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-blur {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(circle at 60% 40%, #ff6c37 0%, #fff0 70%);
  filter: blur(80px) saturate(1.2);
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  gap: 80px;
  padding: 0 64px;
  position: relative;
  z-index: 1;
}

.hero-left {
  flex: 1 1 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 320px;
  max-width: 540px;
  animation: fadeInUp 1.1s cubic-bezier(.23,1.01,.32,1) 0.1s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}

.hero-headline {
  font-size: 3.6rem;
  font-weight: 900;
  color: #181A20;
  margin-bottom: 18px;
  line-height: 1.04;
  letter-spacing: -2px;
  word-break: break-word;
  background: linear-gradient(90deg, #181A20 10%, #FF6C37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 1.25rem;
  font-weight: 400;
  color: #6B7280;
  margin-bottom: 32px;
  line-height: 1.5;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.hero-download-row {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 1.08rem;
  color: #181A20;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-os-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
}

.hero-os-icon {
  width: 32px;
  height: 32px;
  opacity: 0.85;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(16,30,54,0.06);
}

.hero-os-icon img {
  width: 22px;
  height: 22px;
  display: block;
}

.hero-right {
  flex: 1 1 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
}

.hero-collage {
  position: relative;
  width: 480px;
  height: 400px;
  min-width: 320px;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.collage-img {
  position: absolute;
  max-width: none;
  user-select: none;
  pointer-events: none;
  display: block;
}

.collage-tv {
  width: 420px;
  top: -150px;
  left: 80px;
  z-index: 1;
}

.collage-operator1 {
  width: 260px;
  top: 180px;
  left: -30px;
  z-index: 2;
}

.collage-operator2 {
  width: 260px;
  top: 200px;
  left: 120px;
  z-index: 2;
}

.collage-people {
  width: 290px;
  top: 200px;
  left: 420px;
  z-index: 3;
}

.section {
  padding: 90px 24px 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-divider {
  width: 100%;
  height: 60px;
  background: var(--section-bg);
  border: none;
  margin: 0;
  display: block;
}

.feature-banner {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 8px 40px rgba(16,30,54,0.07), 0 0 0 1px #f3f4f6;
  padding: 72px 0 72px 0;
  margin: 0 0 48px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 2;
}
.feature-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 0 24px;
}
.feature-banner-intro {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.feature-banner-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #181A20;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}
.feature-banner-title .highlight {
  color: #FF6C37;
  background: linear-gradient(90deg, #FF6C37 0%, #FFB37A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.feature-banner-subtitle {
  text-align: center;
  font-size: 1.18rem;
  color: #6B7280;
  margin-bottom: 48px;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 0;
}
.feature-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(255,108,55,0.10), 0 2px 8px rgba(16,30,54,0.08);
  padding: 48px 32px 40px 32px;
  max-width: 320px;
  flex: 1 1 260px;
  text-align: left;
  transition: transform 0.22s cubic-bezier(.23,1.01,.32,1), box-shadow 0.22s;
  position: relative;
  animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) both, cardFloat 4s ease-in-out infinite;
  opacity: 0;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.feature-card:hover {
  transform: translateY(-16px) scale(1.05) rotate(-1deg);
  box-shadow: 0 24px 64px rgba(255,108,55,0.18), 0 2px 8px rgba(16,30,54,0.13);
}
.feature-icon-bg {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6C37 60%, #A78BFA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 2px 12px rgba(255,108,55,0.10);
  animation: iconFloat 3.5s ease-in-out infinite;
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.feature-icon {
  font-size: 2rem;
  color: #fff;
  margin: 0;
  display: inline-block;
  transition: color 0.2s, transform 0.2s;
}
.feature-card:hover .feature-icon {
  color: #FFB37A;
  animation: iconWiggle 0.5s;
}
@keyframes iconWiggle {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(-15deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-8deg); }
  80% { transform: rotate(6deg); }
  100% { transform: rotate(0deg); }
}
.feature-card .feature-icon.fa-bolt {
  animation: fa-spin 2.5s linear infinite;
}
.feature-card .feature-icon.fa-cloud {
  animation: fa-bounce 2.2s infinite;
}
.feature-card .feature-icon.fa-chart-line {
  animation: fa-beat 2.8s infinite;
}
.feature-card .feature-icon.fa-users {
  animation: fa-fade 2.6s infinite;
}
.feature-card .feature-icon.fa-display {
  animation: fa-shake 2.7s infinite;
}
.feature-title {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #181A20;
}
.feature-desc {
  color: #6B7280;
  font-size: 1.05rem;
  line-height: 1.6;
}
.trusted-by {
  margin: 56px 0 0 0;
  text-align: center;
}
.trusted-by-title {
  color: #888;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.trusted-logo {
  width: 80px;
  height: 40px;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(16,30,54,0.04);
}
.how-it-works {
  margin: 64px auto 0 auto;
  max-width: 900px;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.how-step {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(255,108,55,0.07);
  padding: 32px 24px 28px 24px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) both;
  opacity: 0;
}
.how-step:nth-child(1) { animation-delay: 0.1s; opacity: 1; }
.how-step:nth-child(2) { animation-delay: 0.25s; opacity: 1; }
.how-step:nth-child(3) { animation-delay: 0.4s; opacity: 1; }
.how-icon {
  font-size: 2.2rem;
  color: #FF6C37;
  margin-bottom: 18px;
}
.how-title {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #181A20;
}
.how-desc {
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .feature-banner {
    padding: 36px 0 36px 0;
    border-radius: 18px;
  }
  .features {
    gap: 24px;
  }
  .feature-card {
    padding: 32px 16px 28px 16px;
    border-radius: 16px;
  }
  .how-it-works {
    gap: 18px;
  }
  .hero-inner {
    gap: 18px;
  }
  .hero-collage {
    width: 320px;
    height: 260px;
  }
  .collage-tv {
    width: 200px;
    left: 40px;
  }
  .collage-operator1 {
    width: 70px;
    top: 90px;
    left: 10px;
  }
  .collage-operator2 {
    width: 70px;
    top: 110px;
    left: 80px;
  }
  .collage-people {
    width: 100px;
    top: 140px;
    left: 160px;
  }
}

.cta {
  background: linear-gradient(90deg, #FF6C37 0%, #FFB37A 100%);
  color: #fff;
  text-align: center;
  padding: 90px 24px 80px 24px;
  margin: 60px 0 0 0;
  box-shadow: 0 8px 32px rgba(255, 108, 55, 0.10);
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 32px;
  opacity: 0.92;
}

.footer {
  background: #fff;
  color: #444;
  padding: 64px 0 0 0;
  border-top: 1px solid #ececec;
  margin-top: 80px;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 0 32px 48px 32px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 32px;
}

.footer-logo-lg {
  height: 70px;
  margin-bottom: 12px;
}

.footer-brand-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #FF6C37;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-cols {
  flex: 4 1 700px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 140px;
  margin-bottom: 24px;
}

.footer-col-title {
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.footer-link {
  display: block;
  color: #666;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #FF6C37;
}

.footer-btm {
  border-top: 1px solid #ececec;
  padding: 18px 32px 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  color: #888;
  font-size: 0.98rem;
  flex-wrap: wrap;
}

.footer-btm-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-btm-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-btm-social a {
  color: #bbb;
  font-size: 1.2rem;
  transition: color 0.2s;
}

.footer-btm-social a:hover {
  color: #FF6C37;
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 16px;
    gap: 12px;
  }
  .navbar-links,
  .navbar-actions {
    gap: 8px;
  }
  .hero-headline {
    font-size: 2rem;
  }
  .cta-title {
    font-size: 1.3rem;
  }
}

.single-feature-section {
  width: 100vw;
  background: #f9fafb;
  padding: 90px 0 90px 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 1;
  overflow: hidden;
}
.single-feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 0 32px;
  flex-wrap: wrap;
  position: relative;
}
.single-feature-img-col {
  flex: 1 1 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 260px;
  z-index: 1;
  animation: slideInLeft 1.1s cubic-bezier(.23,1.01,.32,1) both;
}
.single-feature-img-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1.08);
  width: 110%;
  height: 110%;
  z-index: 0;
  filter: blur(24px) saturate(1.05);
  opacity: 0.10;
  pointer-events: none;
  background: radial-gradient(circle at 60% 40%, #181A20 0%, #f3f4f6 100%);
  border-radius: 32px;
}
.single-feature-img {
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(16,30,54,0.13), 0 2px 8px rgba(16,30,54,0.10);
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.single-feature-text-col {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 260px;
  animation: fadeInUpSoft 1.1s cubic-bezier(.23,1.01,.32,1) 0.2s both;
}
.single-feature-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: #181A20;
  margin-bottom: 12px;
  letter-spacing: -1px;
  display: inline-block;
  border-bottom: 3px solid #FF6C37;
  padding-bottom: 4px;
  margin-bottom: 22px;
}
.single-feature-desc {
  font-size: 1.18rem;
  color: #6B7280;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 28px;
}
.single-feature-btn {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  padding: 11px 28px;
  border: none;
  cursor: pointer;
  background: #181A20;
  color: #fff;
  box-shadow: 0 2px 8px rgba(16,30,54,0.06);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  margin-top: 4px;
}
.single-feature-btn:hover {
  background: #FF6C37;
  box-shadow: 0 4px 16px rgba(255,108,55,0.10);
  transform: translateY(-1px) scale(1.03);
}
.single-feature-section.alt .single-feature-inner {
  flex-direction: row-reverse;
}
.single-feature-section.alt .single-feature-img-bg {
  background: radial-gradient(circle at 40% 60%, #181A20 0%, #f3f4f6 100%);
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeInUpSoft {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 900px) {
  .single-feature-inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 12px;
  }
  .single-feature-img {
    max-width: 100%;
  }
  .single-feature-title {
    font-size: 1.1rem;
  }
}

.hiw-hero {
  background: var(--bg-gradient);
  padding: 80px 0 40px 0;
  text-align: center;
}
.hiw-hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #181A20;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hiw-hero-desc {
  font-size: 1.18rem;
  color: #6B7280;
  margin-bottom: 32px;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hiw-steps {
  display: flex;
  flex-direction: row;
  gap: 48px;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 40px auto 64px auto;
  flex-wrap: nowrap;
}
.hiw-step {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(255,108,55,0.07);
  padding: 44px 28px 32px 28px;
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  transition: box-shadow 0.18s;
  position: relative;
}
.hiw-step-number {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #FF6C37 60%, #A78BFA 100%);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(255,108,55,0.10);
  border: 4px solid #fff;
  z-index: 2;
}
.hiw-step-illustration {
  width: 160px;
  height: 160px;
  max-width: 160px;
  max-height: 160px;
  min-width: 160px;
  min-height: 160px;
  margin-bottom: 22px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(16,30,54,0.10);
  background: #fff;
  display: block;
  object-fit: contain;
}
.hiw-step-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #181A20;
  margin-bottom: 10px;
  margin-top: 0;
}
.hiw-step-desc {
  color: #6B7280;
  font-size: 1.02rem;
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .hiw-steps {
    gap: 18px;
  }
  .hiw-step {
    max-width: 180px;
    min-width: 140px;
    padding: 32px 10px 22px 10px;
  }
  .hiw-step-illustration {
    width: 120px;
    height: 120px;
    max-width: 120px;
    max-height: 120px;
    min-width: 120px;
    min-height: 120px;
  }
}
@media (max-width: 900px) {
  .hiw-steps {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    flex-wrap: wrap;
  }
  .hiw-step {
    max-width: 100%;
    width: 100%;
    margin-bottom: 32px;
  }
  .hiw-step-illustration {
    width: 160px;
    height: 160px;
    max-width: 160px;
    max-height: 160px;
    min-width: 160px;
    min-height: 160px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pricing-hero {
  background: linear-gradient(120deg, #f8fafc 0%, #f3f4f6 100%);
  padding: 90px 0 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(circle at 60% 40%, #ff6c37 0%, #a78bfa 70%, #fff0 100%);
  filter: blur(100px) saturate(1.2);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.pricing-hero-title {
  font-size: 3.1rem;
  font-weight: 900;
  color: #181A20;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
  background: linear-gradient(90deg, #181A20 10%, #FF6C37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  z-index: 1;
}
.pricing-hero-desc {
  font-size: 1.22rem;
  color: #6B7280;
  margin-bottom: 36px;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.pricing-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px auto 56px auto;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}
.pricing-card {
  background: rgba(255,255,255,0.75);
  border-radius: 28px;
  box-shadow: 0 12px 48px 0 rgba(16,30,54,0.13), 0 2px 8px rgba(255,108,55,0.10);
  padding: 38px 20px 32px 20px;
  max-width: 290px;
  flex: 1 1 320px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: transform 0.28s cubic-bezier(.23,1.01,.32,1), box-shadow 0.28s, background 0.18s;
  border: 1.5px solid rgba(167,139,250,0.13);
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #ff6c37 0%, #fff0 80%);
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}
.pricing-card.popular {
  /* border: 2.5px solid #FFD700; */
  box-shadow: 0 24px 64px rgba(255,215,0,0.18), 0 2px 8px rgba(16,30,54,0.13);
  background: rgba(255,255,255,0.92);
}
.pricing-card-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.pricing-card .badge {
  position: static;
  margin-right: 0;
  margin-bottom: 0;
  align-self: center;
}
.pricing-card-title {
  margin-bottom: 0;
}
.pricing-card-price {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(255,108,55,0.08);
  position: relative;
  z-index: 1;
}
.pricing-card-desc {
  font-size: 1rem;
  color: #6B7280;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.pricing-card-features {
  text-align: left;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.pricing-card-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-card-features li i {
  color: var(--primary);
  font-size: 1.1em;
  filter: drop-shadow(0 2px 6px rgba(255,108,55,0.10));
}
.pricing-card-btn {
  background: #FF6C37;
  background-image: none;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 0;
  border: none;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 2px 12px rgba(255,108,55,0.10);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  margin-top: 12px;
  width: 100%;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}
.pricing-card-btn:hover {
  background: #e65a1e;
  background-image: none;
  box-shadow: 0 8px 32px rgba(255, 108, 55, 0.16);
  transform: translateY(-2px) scale(1.045);
}
.pricing-card:hover {
  box-shadow: 0 24px 64px rgba(255,108,55,0.18), 0 2px 8px rgba(16,30,54,0.13);
  background: rgba(255,255,255,0.98);
}
.pricing-comparison {
  max-width: 1100px;
  margin: 0 auto 90px auto;
  background: rgba(255,255,255,0.82);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(16,30,54,0.09);
  padding: 44px 18px 32px 18px;
  overflow-x: auto;
  border: 1.5px solid rgba(167,139,250,0.10);
}
.pricing-comparison table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.09rem;
  background: transparent;
}
.pricing-comparison th, .pricing-comparison td {
  padding: 18px 10px;
  text-align: center;
  border-bottom: 1.5px solid #f3f4f6;
  background: rgba(255,255,255,0.65);
}
.pricing-comparison th {
  color: #181A20;
  font-weight: 900;
  background: linear-gradient(90deg, #f9fafb 0%, #f3f4f6 100%);
  font-size: 1.18rem;
  letter-spacing: 0.5px;
}
.pricing-comparison tr:last-child td {
  border-bottom: none;
}
.pricing-comparison td {
  color: #444;
  font-weight: 500;
}
@media (max-width: 900px) {
  .pricing-cards {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
  .pricing-card {
    max-width: 100%;
    width: 100%;
    padding: 38px 16px 28px 16px;
  }
  .pricing-hero-title {
    font-size: 2rem;
  }
  .pricing-comparison {
    padding: 24px 2px 18px 2px;
    border-radius: 14px;
  }
} 