:root {
  --bg: #fafaf8;
  --bg2: #f4f3ef;
  --bg3: #eeecea;
  --white: #ffffff;
  --accent: #f97316;
  --accent2: #ea580c;
  --acl: #fff4ed;
  --blue: #3b82f6;
  --bluel: #eff6ff;
  --green: #10b981;
  --greenl: #f0fdf4;
  --ink: #0f172a;
  --ink2: #1e293b;
  --muted: #64748b;
  --faint: #cbd5e1;
  --border: #e2e8f0;
  --r: 16px;
  --rl: 24px;
  --sh: 0 4px 24px rgba(15, 23, 42, 0.06);
  --sh2: 0 16px 48px rgba(15, 23, 42, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fraunces", serif !important;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── HERO ── */
.hero {
  padding: 130px 0 90px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Decorative grid */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.hero::after {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(249, 115, 22, 0.08) 0%,
      transparent 65%);
  top: -300px;
  right: -200px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

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

  .hero-img {
    display: none;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--acl);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  animation: up 0.7s ease both;
}

.hero-pill i {
  font-size: 0.6rem;
}

.hero-h1 {
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 900;
  margin-bottom: 22px;
  color: var(--ink);
  animation: up 0.7s 0.1s ease both;
}

.hero-h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent), #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 38px;
  font-weight: 400;
  line-height: 1.75;
  animation: up 0.7s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: up 0.7s 0.3s ease both;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.3s;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.btn-solid:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.3);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 2px solid var(--border);
  color: var(--ink);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.3s;
  font-family: "Plus Jakarta Sans", sans-serif;
}

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

.hero-nums {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  animation: up 0.7s 0.4s ease both;
}

.hnum .n {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
}

.hnum .l {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 2px;
}

.hero-img img {
  z-index: 999;
}

/* ── MARQUEE ── */
.mq-wrap {
  overflow: hidden;
  padding: 18px 0;
  background: var(--ink);
  border-top: none;
}

.mq-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: mq 25s linear infinite;
  white-space: nowrap;
}

.mq-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.mq-item i {
  color: var(--accent);
}

@keyframes mq {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── SECTION ── */
.sec {
  padding: 96px 0;
  position: relative;
}

.sec-alt {
  background: var(--bg2);
}

.sec-white {
  background: var(--white);
}

.stag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.stag::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.stitle {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--ink);
}

.sdesc {
  color: var(--muted);
  max-width: 540px;
  font-size: 0.97rem;
  line-height: 1.75;
}

.sc {
  text-align: center;
}

.sc .sdesc {
  margin: 0 auto;
}

/* ── SERVICES ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  margin-top: 56px;
  box-shadow: var(--sh);
}

@media (max-width: 900px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

.svc {
  background: var(--white);
  padding: 38px 32px;
  transition: 0.35s;
  cursor: default;
  position: relative;
}

.svc::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #f43f5e);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s;
}

.svc:hover {
  background: var(--acl);
}

.svc:hover::after {
  transform: scaleX(1);
}

.svc:hover .sic {
  background: var(--accent);
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
}

.sic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--acl);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
  transition: 0.35s;
}

.sic.b {
  background: var(--bluel);
  color: var(--blue);
}

.svc:hover .sic.b {
  background: var(--blue);
  color: #fff;
}

.sic.g {
  background: var(--greenl);
  color: var(--green);
}

.svc:hover .sic.g {
  background: var(--green);
  color: #fff;
}

.svc h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 9px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
}

.svc p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ── STATS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--accent);
  border-radius: var(--rl);
  overflow: hidden;
  margin-top: 56px;
}

@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stb {
  padding: 44px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.stb:last-child {
  border-right: none;
}

.stb:hover {
  background: rgba(255, 255, 255, 0.08);
}

.stb .n {
  font-family: "Fraunces", serif;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
}

.stb .l {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
  font-weight: 600;
  margin-top: 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* ── PROCESS ── */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

@media (max-width: 900px) {
  .proc-grid {
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--border);
    border-radius: var(--rl);
    overflow: hidden;
  }
}

.proc-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  z-index: 0;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .proc-grid::before {
    display: none;
  }
}

.pstep {
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .pstep {
    background: var(--white);
    text-align: left;
    padding: 26px 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
}

.pstep:hover .pnum {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.1);
}

.pnum {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--accent);
  margin: 0 auto 18px;
  transition: 0.3s;
  box-shadow: var(--sh);
}

@media (max-width: 900px) {
  .pnum {
    margin: 0;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    font-size: 0.9rem;
  }
}

.pstep h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
}

.pstep p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ── TOOLS ── */
.tchips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}

.tc {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--ink2);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: 0.3s;
  font-family: "Plus Jakarta Sans", sans-serif;
  box-shadow: var(--sh);
}

.tc:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
}

/* ── WHY ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.wcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--rl);
  padding: 36px;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh);
}

.wcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #f43f5e);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}

.wcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh2);
  border-color: rgba(249, 115, 22, 0.25);
}

.wcard:hover::before {
  transform: scaleX(1);
}

.wic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--acl);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
  transition: 0.3s;
}

.wcard:hover .wic {
  background: var(--accent);
  color: #fff;
}

.wcard h5 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 9px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.wcard p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ── INDUSTRIES ── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}

@media (max-width: 900px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.icard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  transition: 0.35s;
  box-shadow: var(--sh);
}

.icard:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.12);
}

.iic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--acl);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 12px;
  transition: 0.3s;
}

.icard:hover .iic {
  background: var(--accent);
  color: #fff;
}

.icard span {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink2);
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* ── PORTFOLIO ── */
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

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

.pcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  transition: 0.4s;
  box-shadow: var(--sh);
}

.pcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh2);
  border-color: rgba(249, 115, 22, 0.3);
}

.pcard img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: 0.4s;
}

.pcard:hover img {
  transform: scale(1.04);
}

.pcb {
  padding: 24px;
}

.ptag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.pcb h5 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 7px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.pcb p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* ── PRICING ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

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

.prcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--rl);
  padding: 42px 34px;
  transition: 0.4s;
  position: relative;
  box-shadow: var(--sh);
}

.prcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh2);
}

.prcard.hot {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
}

.prbadge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.prname {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.prcard.hot .prname {
  color: rgba(255, 255, 255, 0.5);
}

.prval {
  font-family: "Fraunces", serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 4px;
}

.prsub {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 28px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.prcard.hot .prsub {
  color: rgba(255, 255, 255, 0.4);
}

.prdiv {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.prcard.hot .prdiv {
  background: rgba(255, 255, 255, 0.1);
}

.prf {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--muted);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.prf.on {
  color: var(--ink);
}

.prcard.hot .prf.on {
  color: rgba(255, 255, 255, 0.9);
}

.prcard.hot .prf {
  color: rgba(255, 255, 255, 0.35);
}

.prf i.y {
  color: var(--green);
}

.prf i.n {
  color: var(--faint);
}

.prcard.hot .prf i.n {
  color: rgba(255, 255, 255, 0.15);
}

/* ── COMPARISON ── */
.comp-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 52px;
  border-radius: var(--rl);
  box-shadow: var(--sh);
}

.ctable {
  width: 100%;
  border-collapse: collapse;
}

.ctable th {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 18px 24px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.ctable th:first-child {
  text-align: left;
}

.ctable th.hl {
  color: #fff;
  background: var(--accent);
}

.ctable td {
  padding: 15px 24px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.ctable td:first-child {
  text-align: left;
  color: var(--ink);
  font-weight: 600;
}

.ctable td.hl {
  background: #fff8f4;
}

.ctable tr:last-child td {
  border-bottom: none;
}

.ctable tr:hover td {
  background: var(--bg2);
}

.ctable tr:hover td.hl {
  background: #fff0e6;
}

.ci {
  font-size: 1.05rem;
}

.ci.y {
  color: var(--green);
}

.ci.n {
  color: var(--faint);
}

/* ── TESTIMONIALS ── */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

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

.tcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--rl);
  padding: 34px;
  transition: 0.4s;
  box-shadow: var(--sh);
}

.tcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh2);
  border-color: rgba(249, 115, 22, 0.25);
}

.tstars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.ttxt {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

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

.tav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f43f5e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
}

.tname {
  font-weight: 700;
  font-size: 0.9rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.trole {
  color: var(--muted);
  font-size: 0.78rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* ── FAQ ── */
.faq-list {
  max-width: 740px;
  margin: 52px auto 0;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--sh);
  transition: 0.3s;
}

.faq-item:hover {
  border-color: rgba(249, 115, 22, 0.3);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: 0.2s;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-ic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
  font-size: 0.8rem;
  color: var(--muted);
}

.faq-q.open .faq-ic {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  padding: 0 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.faq-a.open {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* ── CTA ── */
.cta-sec {
  margin: 0 0 80px;
  background: var(--ink);
  border-radius: var(--rl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .cta-sec {
    padding: 50px 28px;
    margin: 0 0 60px;
  }
}

.cta-sec::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(249, 115, 22, 0.2) 0%,
      transparent 65%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.cta-sec::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 65%);
  bottom: -200px;
  left: -100px;
  pointer-events: none;
}

.cta-title {
  font-family: "Fraunces", serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto 38px;
  position: relative;
  z-index: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-bg-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.3s;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.cta-bg-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-chips {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.cta-chip {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.cta-chip i {
  color: var(--green);
}

/* ── REVEAL ── */
.rv {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.rv.show {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}