/* DEVPATH — TECH LEARNING PLATFORM CSS */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #0f172a;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }


@font-face {
  font-family: "Inter";
  src: url("../Asset/fonts/Inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../Asset/fonts/Inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../Asset/fonts/Inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../Asset/fonts/Inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../Asset/fonts/Inter-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../Asset/fonts/Inter-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../Asset/fonts/JetBrainsMono-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../Asset/fonts/JetBrainsMono-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../Asset/fonts/JetBrainsMono-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* DESIGN TOKENS */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #60a5fa;
  --accent: #7c3aed;
  --green: #10b981;
  --red: #ef4444;
  --orange: #f59e0b;
  --cyan: #06b6d4;
  --pink: #ec4899;

  --text-dark: #0f172a;
  --text-mid: #475569;
  --text-light: #94a3b8;
  --bg-soft: #f8faff;
  --bg-dark: #0f172a;
  --border: #e2e8f0;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(37, 99, 235, 0.08);
  --shadow-md: 0 8px 30px rgba(37, 99, 235, 0.12);
  --shadow-lg: 0 20px 60px rgba(37, 99, 235, 0.16);

  --mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
  --transition: 0.25s ease;
}

/* UTILITY */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 60%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-head { text-align: center; margin-bottom: 56px; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOTO / AVATAR */
.trust-avatars img,
.course-instructor img,
.tcard-img {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
/* trust avatars hero */
.trust-avatars img { width: 34px; height: 34px; border: 2px solid white; }
/* instructor kursus */
.course-instructor img { width: 28px; height: 28px; }
/* testimonial */
.tcard-img { width: 48px; height: 48px; border: 3px solid white; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.45);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost { color: var(--text-dark); background: transparent; }
.btn-ghost:hover { background: var(--bg-soft); }

.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-ghost-white {
  border: 2px solid rgba(255,255,255,0.45);
  color: #fff;
  background: transparent;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); }

.btn-sm   { padding: 9px 18px; font-size: 0.875rem; }
.btn-lg   { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  flex-shrink: 0;
}

.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-white { background: linear-gradient(135deg, var(--primary-light), var(--cyan)); }

.nav-links { display: flex; gap: 4px; flex: 1; }

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
}
.nav-links a:hover { background: var(--bg-soft); color: var(--primary); }

.nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

/* HERO */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f7ff 0%, #e8f0ff 50%, #f3e8ff 100%);
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.35), transparent);
  top: -180px; right: -100px;
}
.shape-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25), transparent);
  bottom: -100px; left: -80px;
}
.shape-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent);
  top: 45%; left: 45%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }

.hero-trust { display: flex; align-items: center; gap: 12px; }

.trust-avatars { display: flex; }
.trust-avatars img { margin-left: -8px; }
.trust-avatars img:first-child { margin-left: 0; }

.hero-trust p { font-size: 0.875rem; color: var(--text-mid); }
.hero-trust strong { color: var(--text-dark); }

/* CODE WINDOW */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
  z-index: 10;
}

.code-window {
  width: 100%;
  max-width: 520px;
  background: #0f172a;
  border-radius: 12px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.window-header {
  background: #1e293b;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-header .dot.red { background: #ef4444; }
.window-header .dot.yellow { background: #f59e0b; }
.window-header .dot.green { background: #10b981; }

.window-title {
  color: #94a3b8;
  font-size: 0.8rem;
  font-family: var(--mono);
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-24px); /* offset for the dots */
}

.window-body {
  padding: 24px;
  font-family: var(--mono);
  font-size: 0.85rem;
  line-height: 1.7;
  color: #e2e8f0;
  overflow-x: auto;
}

.window-body pre {
  margin: 0;
}

.code-keyword { color: #c678dd; }
.code-function { color: #61afef; }
.code-string { color: #98c379; }
.code-comment { color: #5c6370; font-style: italic; }

.floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  animation: float 5s ease-in-out infinite reverse;
  border: 1px solid var(--border);
  z-index: 12;
}

.floating-badge .icon-emoji {
  width: 24px;
  height: 24px;
  opacity: 1;
}

/* STATS */
.stats-section {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label { font-size: 0.875rem; color: var(--text-mid); font-weight: 500; }

.stat-divider { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* PARTNERS */
.partners-section {
  padding: 36px 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.partners-label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.partner-logo {
  padding: 10px 28px;
  background: white;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: all var(--transition);
}
.partner-logo:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* COURSES CATALOG */
.courses-section { padding: 100px 0; background: var(--bg-soft); }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

.course-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.2);
}

.course-thumb {
  height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  background-size: cover;
  background-position: center;
}

/* Dark gradient overlay over photo */
.course-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  border-radius: 0;
}

/* Course title shown on thumbnail */
.course-thumb-title {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0 14px 12px;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.course-badge-label {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 1;
}
.badge-red    { background: var(--red); }
.badge-green  { background: var(--green); }
.badge-teal   { background: #0d9488; }
.badge-orange { background: var(--orange); }

.course-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-meta { display: flex; gap: 8px; align-items: center; }

.course-cat {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.cat-ml    { background: rgba(124, 58, 237, 0.1); color: var(--accent); }
.cat-cyber { background: rgba(239, 68, 68, 0.1);  color: var(--red); }
.cat-web   { background: rgba(6, 182, 212, 0.1);  color: var(--cyan); }
.cat-cloud { background: rgba(13, 148, 136, 0.1); color: #0d9488; }
.cat-data  { background: rgba(236, 72, 153, 0.1); color: var(--pink); }
.cat-blockchain { background: rgba(245, 158, 11, 0.1); color: var(--orange); }

.course-level { font-size: 0.72rem; color: var(--text-light); font-weight: 500; }

.course-title { font-size: 0.975rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; }

.course-desc { font-size: 0.84rem; color: var(--text-mid); flex: 1; line-height: 1.6; }

.course-instructor {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 500;
}

.course-meta-row { display: flex; gap: 6px; flex-wrap: wrap; }

.meta-chip {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--bg-soft);
  color: var(--text-mid);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.course-rating { display: flex; align-items: center; gap: 4px; }
.stars        { color: #f59e0b; font-size: 0.82rem; }
.rating-num   { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); }
.rating-count { font-size: 0.75rem; color: var(--text-light); }

.price-old {
  font-size: 0.75rem;
  color: var(--text-light);
  text-decoration: line-through;
  display: block;
  text-align: right;
}
.price-new  { font-size: 0.97rem; font-weight: 800; color: var(--primary); display: block; }
.price-free { font-size: 0.97rem; font-weight: 800; color: var(--green); }

.courses-cta { text-align: center; }

/* FEATURES */
.features-section { padding: 100px 0; background: white; }

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.features-left .section-tag  { display: block; width: fit-content; }
.features-left .section-title { text-align: left; margin-bottom: 16px; }
.features-left .section-sub   { text-align: left; max-width: none; margin: 0 0 32px 0; }

.features-right { display: flex; flex-direction: column; gap: 16px; }

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-soft);
  transition: all var(--transition);
}
.feature-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.2);
  background: white;
}

.feature-icon-wrap {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-blue   { background: rgba(37, 99, 235, 0.1);  color: var(--primary); }
.icon-green  { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.icon-purple { background: rgba(124, 58, 237, 0.1); color: var(--accent); }
.icon-orange { background: rgba(245, 158, 11, 0.1); color: var(--orange); }

.feature-text h3 { font-size: 0.97rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.feature-text p  { font-size: 0.86rem; color: var(--text-mid); line-height: 1.65; }

/* TESTIMONIALS */
.testimonials-section { padding: 100px 0; background: var(--bg-soft); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.tcard-featured {
  background: linear-gradient(145deg, #0f172a 0%, #1e3a8a 100%);
  border-color: transparent;
}

.tcard-job-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
}
.tcard-job-dark { background: rgba(0,0,0,0.06); color: var(--text-mid); }
.tcard-featured .tcard-job-tag { background: rgba(255,255,255,0.12); color: var(--primary-light); }

.tcard-text { font-size: 0.92rem; line-height: 1.75; color: var(--text-mid); flex: 1; }
.tcard-featured .tcard-text { color: rgba(255,255,255,0.85); }

.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-featured .tcard-img { border-color: rgba(255,255,255,0.3); }

.author-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.tcard-featured .author-name { color: white; }

.author-info { font-size: 0.78rem; color: var(--text-light); }
.tcard-featured .author-info { color: rgba(255,255,255,0.55); }

.tcard-stars { margin-left: auto; color: var(--orange); font-size: 0.9rem; }
.tcard-featured .tcard-stars { color: #fcd34d; }

/* PRICING */
.pricing-section { padding: 100px 0; background: white; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-featured {
  background: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.pricing-featured:hover { transform: scale(1.02) translateY(-4px); }

.pricing-best-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-header { text-align: center; margin-bottom: 20px; }
.plan-icon { display: block; margin-bottom: 15px; }
.plan-name  { font-size: 1.35rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.plan-desc  { font-size: 0.84rem; color: var(--text-light); }

.plan-price {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.plan-price .price-amount { font-size: 1.9rem; font-weight: 900; color: var(--text-dark); text-decoration: none; display: inline; }
.plan-price .price-period { font-size: 0.875rem; color: var(--text-light); font-weight: 500; }

.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
}
.plan-features li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.feat-yes::before {
  background-color: rgba(16, 185, 129, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}
.feat-no { opacity: 0.45; }
.feat-no::before {
  background-color: rgba(0,0,0,0.05);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.cta-section { padding: 80px 0; background: var(--bg-soft); }

.cta-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e1b4b 100%);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-code-bg {
  position: absolute;
  bottom: 20px; left: 40px;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.04);
  line-height: 2;
  pointer-events: none;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-box::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-box p {
  font-size: 1.05rem;
  opacity: 0.8;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}


/* FOOTER */

.footer {
  background: #070b14;
  color: rgba(255,255,255,0.6);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.logo-white { color: white; }

.footer-tagline {
  font-size: 0.875rem;
  margin: 16px 0 24px;
  line-height: 1.75;
  max-width: 280px;
  color: rgba(255,255,255,0.5);
}

.footer-socials { display: flex; gap: 8px; }

.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--primary); color: white; transform: translateY(-2px); }

.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.86rem; color: rgba(255,255,255,0.5); transition: all var(--transition); }
.footer-col a:hover { color: white; padding-left: 4px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.hero-content { animation: fadeInUp 0.65s ease both; }
.icon-emoji { 
  width: 12px; height: 12px; 
  vertical-align: middle; 
  margin-right: 4px; 
  display: inline-block; 
  opacity: 0.8; 
}

/* Specific size for pricing plan icons */
.plan-icon .icon-emoji {
  width: 44px;
  height: 44px;
  opacity: 1;
}