/*
Theme Name: Saitlen Pro
Author: Saitlen
Description: Sales-focused landing theme for web development and SEO services.
Version: 1.0.0
*/

@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700&family=Onest:wght@300;400;500;600&display=swap");

:root {
  --bg: #f6f3ef;
  --ink: #141414;
  --muted: #5f5b55;
  --accent: #ea5a3a;
  --accent-2: #1f7a7a;
  --card: #ffffff;
  --line: #e7e2db;
  --shadow: 0 20px 60px rgba(20, 20, 20, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 10% -10%, #fff1e6, transparent 65%),
    radial-gradient(900px 500px at 90% 10%, #e6f4f1, transparent 55%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 243, 239, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand img {
  display: block;
  height: 128px;
  width: auto;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(234, 90, 58, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-title {
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-lead {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.hero-metrics {
  display: grid;
  gap: 16px;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 12px;
}

.metric:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.metric span {
  color: var(--muted);
}

.section {
  padding: 70px 0;
}

.section-title {
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 24px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 720px;
}

.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  min-height: 180px;
}

.card h3 {
  margin-top: 0;
}

.process {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 18px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.step-number {
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 22px;
  color: var(--accent-2);
}

.pricing {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.price-card {
  border-radius: var(--radius);
  padding: 26px;
  background: #151515;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.price-card.light {
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
}

.price-tag {
  font-size: 28px;
  font-family: "Unbounded", Arial, sans-serif;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.price-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent-2);
  font-weight: 700;
}

.pricing-note {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
}

.pricing-note h3 {
  margin: 0 0 12px;
}

.pricing-note ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.pricing-platform {
  margin-top: 16px;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px dashed var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
}

.badge {
  display: inline-block;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 12px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.cta {
  background: linear-gradient(120deg, #fff1e6, #e6f4f1);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--line);
  display: grid;
  gap: 20px;
  align-items: center;
}

.site-footer {
  padding: 40px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
}

.modal-content {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  width: min(520px, 94%);
  box-shadow: var(--shadow);
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  color: var(--muted);
}

.modal-subtitle {
  color: var(--muted);
  margin-top: 6px;
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.form-group {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid rgba(234, 90, 58, 0.25);
  border-color: var(--accent);
}

.form-status {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.form-status.is-success {
  color: #0f6d4f;
}

.form-status.is-error {
  color: #b33222;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 50px;
  }
}
