.sg-landing {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #0f172a;
  background: white;
  scroll-behavior: smooth;
}

.sg-lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sg-lp-header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.sg-lp-header .sg-lp-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sg-lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
  font-size: 18px;
}

.sg-lp-logo img {
  width: 36px;
  height: 36px;
}

.sg-lp-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.sg-lp-nav a {
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.sg-lp-nav a:hover {
  color: #3b82f6;
}

.sg-lp-nav-cta {
  background: #3b82f6;
  color: white !important;
  padding: 8px 16px;
  border-radius: 8px;
}

.sg-lp-nav-cta:hover {
  background: #1e40af;
}

.sg-lp-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 40%, #3b82f6 70%, #06b6d4 100%);
  position: relative;
  overflow: hidden;
  color: white;
  padding: 80px 0;
}

.sg-lp-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.sg-lp-hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
  color: white;
  letter-spacing: -0.03em;
  animation: sgFadeUp 0.8s ease;
}

.sg-accent-text {
  background: linear-gradient(90deg, #67e8f9, #a5f3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sg-lp-hero-sub {
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.95;
  margin: 0 0 32px;
  animation: sgFadeUp 0.8s ease 0.1s both;
}

.sg-lp-hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: sgFadeUp 0.8s ease 0.2s both;
}

.sg-btn-lg {
  padding: 16px 28px;
  font-size: 16px;
}

.sg-landing .sg-lp-hero .sg-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.sg-landing .sg-lp-hero .sg-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.sg-lp-hero-bullets {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 500;
  animation: sgFadeUp 0.8s ease 0.3s both;
}

.sg-lp-hero-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sg-lp-hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
  animation: sgFloat 6s ease-in-out infinite;
}

.sg-lp-section {
  padding: 80px 0;
}

.sg-lp-section-tinted,
.sg-lp-section-alt {
  background: #f1f5f9;
}

.sg-lp-section-cta,
.sg-lp-cta {
  background: linear-gradient(135deg, #1e3a8a, #06b6d4);
  color: white;
}

.sg-lp-h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.sg-lp-h2-sub {
  font-size: 17px;
  color: #475569;
  text-align: center;
  margin: 0 auto 56px auto;
  max-width: 640px;
  line-height: 1.5;
}

.sg-lp-section-cta .sg-lp-h2,
.sg-lp-cta .sg-lp-h2 {
  color: white;
  text-align: left;
  margin-bottom: 12px;
}

.sg-lp-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sg-lp-cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sg-lp-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid #3b82f6;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow:
    0 10px 25px rgba(30, 58, 138, 0.08),
    0 4px 10px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
  position: relative;
}

.sg-lp-card:nth-child(3n + 2) {
  border-top-color: #06b6d4;
}

.sg-lp-card:nth-child(3n + 3) {
  border-top-color: #8b5cf6;
}

.sg-lp-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(30, 58, 138, 0.15),
    0 8px 16px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.sg-lp-feature,
.sg-lp-step {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid #3b82f6;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow:
    0 10px 25px rgba(30, 58, 138, 0.08),
    0 4px 10px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
  position: relative;
}

.sg-lp-feature:nth-child(3n + 2) {
  border-top-color: #06b6d4;
}

.sg-lp-feature:nth-child(3n + 3) {
  border-top-color: #8b5cf6;
}

.sg-lp-feature:hover,
.sg-lp-step:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(30, 58, 138, 0.15),
    0 8px 16px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.sg-lp-step:nth-child(1) {
  border-top-color: #3b82f6;
}

.sg-lp-step:nth-child(2) {
  border-top-color: #06b6d4;
}

.sg-lp-step:nth-child(3) {
  border-top-color: #10b981;
}

.sg-lp-step:nth-child(4) {
  border-top-color: #8b5cf6;
}

.sg-lp-card-icon,
.sg-lp-feature-icon,
.sg-lp-step-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eff6ff, #e0f2fe);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 2px 8px rgba(59, 130, 246, 0.12);
}

.sg-lp-card-title,
.sg-lp-feature h3,
.sg-lp-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.sg-lp-card-text,
.sg-lp-feature p,
.sg-lp-step p {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  margin: 0;
}

.sg-lp-step {
  padding-top: 8px;
}

.sg-lp-step-num {
  position: absolute;
  top: -14px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: white;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
  border: 3px solid #ffffff;
}

.sg-lp-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.sg-lp-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.sg-lp-cta-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin: 0 0 28px;
}

.sg-lp-cta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sg-lp-cta-list li {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.sg-lp-cta-list li b {
  color: #ffffff;
  font-weight: 700;
}

.sg-lp-form {
  background: white;
  color: #0f172a;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sg-lp-form h3 {
  margin: 0 0 20px;
  font-size: 22px;
}

.sg-lp-form label {
  display: block;
  margin-bottom: 14px;
}

.sg-lp-form label span {
  display: block;
  font-size: 13px;
  color: #475569;
  margin-bottom: 6px;
  font-weight: 500;
}

.sg-lp-form input,
.sg-lp-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  box-sizing: border-box;
  transition: border 0.2s;
  color: #0f172a;
}

.sg-lp-form input::placeholder,
.sg-lp-form textarea::placeholder {
  color: #94a3b8;
}

.sg-lp-form input:focus,
.sg-lp-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.sg-lp-form button {
  width: 100%;
}

.sg-lp-form-note {
  font-size: 12px;
  color: #475569;
  margin-top: 12px;
  text-align: center;
}

.sg-lp-form-success {
  background: #d1fae5;
  color: #065f46;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-weight: 600;
}

.sg-lp-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 32px 0;
}

.sg-lp-footer .sg-lp-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sg-lp-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
}

.sg-lp-footer-logo img {
  width: 32px;
  height: 32px;
}

@keyframes sgFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sgFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 900px) {
  .sg-lp-hero-grid,
  .sg-lp-cta-grid {
    grid-template-columns: 1fr;
  }

  .sg-lp-hero h1 {
    font-size: 32px;
  }

  .sg-lp-cards-3,
  .sg-lp-cards-4 {
    grid-template-columns: 1fr;
  }

  .sg-lp-nav a:not(.sg-lp-nav-cta) {
    display: none;
  }
}

/* ===== Pricing ===== */
.sg-lp-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.sg-lp-pricing-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.sg-lp-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
}

.sg-lp-pricing-popular {
  border: 2px solid #3b82f6;
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.18);
  transform: translateY(-8px);
}

.sg-lp-pricing-popular:hover {
  transform: translateY(-14px);
}

.sg-lp-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.sg-lp-pricing-name {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.sg-lp-pricing-price {
  font-size: 40px;
  font-weight: 800;
  color: #1e3a8a;
  letter-spacing: -0.02em;
  line-height: 1;
}

.sg-lp-pricing-price span {
  font-size: 22px;
  font-weight: 600;
  color: #475569;
}

.sg-lp-pricing-note {
  font-size: 14px;
  color: #475569;
  margin-top: 6px;
  margin-bottom: 24px;
}

.sg-lp-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.sg-lp-pricing-features li {
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.sg-lp-pricing-features li:last-child {
  border-bottom: none;
}

.sg-lp-pricing-off {
  color: #94a3b8 !important;
  text-decoration: line-through;
}

.sg-lp-pricing-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: inline-flex;
}

.sg-lp-pricing-footer {
  text-align: center;
  margin-top: 40px;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.sg-lp-pricing-footer b {
  color: #0f172a;
}

@media (max-width: 900px) {
  .sg-lp-pricing {
    grid-template-columns: 1fr;
  }

  .sg-lp-pricing-popular {
    transform: none;
  }

  .sg-lp-pricing-popular:hover {
    transform: translateY(-6px);
  }
}
