/* =============================================
   SehlResume — Theme
   ============================================= */

:root {
  --navy:      #0A1628;
  --navy-mid:  #0F2140;
  --blue:      #1D6FF2;
  --blue-dim:  #1557C8;
  --warm-bg:   #F5F2EC;
  --warm-mid:  #EDE9E2;
  --text-dark: #0A1628;
  --text-mid:  #3D4F6A;
  --text-muted:#7A8BA8;
  --white:     #FFFFFF;
  --green:     #0FBF8A;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .nav-logo, .price-tier {
  font-family: 'Syne', sans-serif;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.nav-logo span { color: var(--blue); }
.nav-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ---- SECTION COMMON ---- */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- HERO ---- */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 420px;
}

/* doc card */
.hero-visual { display: flex; justify-content: flex-end; }
.doc-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  width: 280px;
  backdrop-filter: blur(8px);
  position: relative;
}
.doc-icon {
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
}
.doc-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 2px;
}
.doc-role {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.doc-bar {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  margin-bottom: 8px;
}
.doc-bar-2 { width: 75%; }
.doc-bar-3 { width: 55%; }
.doc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(15, 191, 138, 0.15);
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 12px;
}

/* hero stats */
.hero-stats {
  max-width: 1100px;
  margin: 64px auto 0;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { padding: 0 40px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  max-width: 180px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  margin-right: 40px;
}

/* ---- PROBLEM ---- */
.problem {
  padding: 100px 0;
  background: var(--warm-bg);
}
.problem-label, .services-label, .why-label, .pricing-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.problem-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.8px;
  max-width: 680px;
  margin-bottom: 56px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.problem-card {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 16px;
  padding: 28px;
}
.problem-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.problem-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}
.problem-statement {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-top: 1px solid rgba(10,22,40,0.1);
  padding-top: 32px;
}
.ps-line {
  width: 4px;
  min-height: 40px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}
.problem-statement p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ---- SERVICES ---- */
.services {
  padding: 100px 0;
  background: var(--navy);
}
.services-label { color: rgba(255,255,255,0.4); }
.services-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(29,111,242,0.4); }
.service-num {
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(29,111,242,0.12);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}

/* ---- WHY ---- */
.why {
  padding: 100px 0;
  background: var(--warm-bg);
}
.why-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.why-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.7px;
  margin-bottom: 24px;
}
.why-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.why-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.pill {
  font-size: 12px;
  font-weight: 500;
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 6px 12px;
  border-radius: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 16px;
  padding: 28px;
}
.why-card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}
.why-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(15,191,138,0.12);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ---- PRICING ---- */
.pricing {
  padding: 100px 0;
  background: var(--white);
}
.pricing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.pricing-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  border: 1px solid rgba(10,22,40,0.1);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  background: var(--warm-bg);
}
.price-card-featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 20px 60px rgba(10,22,40,0.2);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-tier {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.price-card-featured .price-tier { color: rgba(255,255,255,0.5); }
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.price-card-featured .price-amount { color: var(--white); }
.price-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}
.price-card-featured .price-desc { color: rgba(255,255,255,0.5); }
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
}
.price-card-featured .price-features li { color: rgba(255,255,255,0.7); }
.pf-check {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- CLOSING ---- */
.closing {
  padding: 100px 0;
  background: var(--warm-bg);
}
.closing-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.closing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.7px;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}
.closing-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  padding: 48px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-tag {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-note {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: flex-start; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { width: 40px; height: 1px; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-layout { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding-top: 100px; }
  .hero-title { font-size: 32px; }
  .nav-tag { display: none; }
  .stat-value { font-size: 26px; }
}