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

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: radial-gradient(
      800px 600px at 80% 10%,
      rgba(255, 180, 80, 0.12),
      transparent
    ),
    radial-gradient(
      700px 500px at 10% 90%,
      rgba(100, 140, 255, 0.12),
      transparent
    ),
    #0b1220;
  color: #e6ebf2;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px;
}

/* ---------- GRID ---------- */
.grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 32px;
}

/* ---------- CARD BASE ---------- */
.card {
  background: rgba(18, 28, 48, 0.95);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  position: relative;
}

/* ---------- HERO ---------- */
.hero {
  grid-row: span 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 14px;
  opacity: 0.9;
}

.brand .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffcc66;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 span {
  opacity: 0.6;
}

.subtitle {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 32px;
}

/* ---------- PRICE (MAKE IT POP) ---------- */
.price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.price .amount {
  font-size: 32px;
  font-weight: 700;
  color: #ffcc66;
}

.price .label {
  font-size: 14px;
  opacity: 0.8;
}

.guarantee {
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0.6;
  margin-bottom: 24px;
}

/* ---------- PILLS ---------- */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  white-space: nowrap;
}

/* ---------- IMAGE ---------- */
/* ---------- IMAGE CARD ---------- */
.image {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  filter: saturate(0.95) contrast(1.05);
}

/* subtle overlay to blend with dark UI */
.image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 18, 32, 0.15),
    rgba(11, 18, 32, 0.45)
  );
  pointer-events: none;
}

.image-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.55);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  backdrop-filter: blur(6px);
}


/* ---------- WHY ---------- */
.why h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.why ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
}

.why li::before {
  content: "✔";
  margin-right: 10px;
  color: #4ade80;
}

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

  .hero {
    grid-row: auto;
  }

  .hero h1 {
    font-size: 36px;
  }
}

/* ---------- CTA SECTION ---------- */
.cta {
  margin-top: 48px;
}

.cta-card {
  background: rgba(18, 28, 48, 0.95);
  border-radius: 28px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

/* ---------- CTA TEXT ---------- */
.cta-text h2 {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 18px;
  opacity: 0.75;
  max-width: 520px;
}

/* ---------- CTA ACTIONS ---------- */
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

/* ---------- CONTACT BOX ---------- */
.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 15px;
}

/* ---------- ICONS ---------- */
.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 4px;
}

.icon.email {
  background: #facc15; /* yellow */
}

.icon.phone {
  background: #4ade80; /* green */
}

/* ---------- QR ---------- */
.cta-qr {
  background: #ffffff;
  padding: 12px;
  border-radius: 16px;
}

.cta-qr img {
  width: 88px;
  height: 88px;
  display: block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .cta-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cta-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}





/* ---------- PROCESS V2 ---------- */
.process-v2 {
  margin-top: 48px;
}

.process-wrapper {
  background: rgba(18, 28, 48, 0.95);
  border-radius: 32px;
  padding: 56px 56px 48px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

/* ---------- HEADER ---------- */
.process-header {
  max-width: 520px;
  position: relative;
  margin-bottom: 48px;
}

.process-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  opacity: 0.65;
  margin-bottom: 12px;
}

.process-header h2 {
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.process-header p {
  font-size: 18px;
  opacity: 0.75;
}

.process-divider {
  position: absolute;
  right: -420px;
  top: 44px;
  width: 380px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- CARDS ---------- */
.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 28px 24px 32px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.step-number {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 14px;
}

.process-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

/* ---------- FOOTER ---------- */
.process-footer {
  margin-top: 32px;
  font-size: 14px;
  opacity: 0.65;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .process-divider {
    display: none;
  }

  .process-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .process-wrapper {
    padding: 40px 28px;
  }

  .process-cards {
    grid-template-columns: 1fr;
  }

  .process-header h2 {
    font-size: 28px;
  }
}


/* ===============================
   TOOLS SECTION — 2x3 GRID
================================ */

.tools {
  padding: 120px 0;
}

.tools-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- HEADER ---------- */
.tools-header {
  text-align: center;
  margin-bottom: 64px;
}

.tools-header h2 {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.tools-header p {
  font-size: 18px;
  color: #94a3b8;
}

/* ---------- GRID ---------- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ---------- TEXT CARD ---------- */
.tool-card {
  background: rgba(18, 28, 48, 0.9);
  border-radius: 24px;
  padding: 32px 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tool-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.tool-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5e1;
}

/* ---------- LOGO CARD ---------- */
.tool-logo-card {
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

/* background glow / flyout effect */
.tool-logo-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0),
    transparent 60%
  );
  opacity: 0.25;
}

/* logo itself */
.tool-logo-card img {
  max-width: 140px;
  max-height: 56px;
  position: relative;
  z-index: 1;
}

/* brand-tinted accents (very subtle) */
.tool-logo-card.ai {
  background: rgba(59, 131, 246, 0);
}

.tool-logo-card.github {
  background: rgba(255, 255, 255, 0);
}

.tool-logo-card.cloudflare {
  background: rgba(245, 159, 11, 0);
}

/* ---------- FOOTER ---------- */
.tools-footer {
  margin-top: 32px;
  font-size: 14px;
  color: #94a3b8;
  text-align: center;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}
