/* ===== Raksira — styles ===== */
:root {
  --bg: #070b16;
  --bg-2: #0b1120;
  --panel: #111a2e;
  --panel-2: #15203a;
  --border: #1f2c47;
  --text: #e9eff9;
  --muted: #99a7c4;
  --dim: #6b7a99;
  --brand: #34e3c4;
  --brand-2: #3a8bfd;
  --warn: #fbbf24;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1160px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --head: "Sora", "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--head); line-height: 1.13; letter-spacing: -0.02em; font-weight: 800; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.76rem; font-weight: 700; color: var(--brand); margin-bottom: 14px;
}
.grad {
  background: linear-gradient(100deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(100deg, var(--brand), var(--brand-2));
  color: #04221d; font-weight: 700; font-size: 0.95rem;
  padding: 12px 22px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(52, 227, 196, 0.45); }
.btn-sm { padding: 9px 18px; font-size: 0.9rem; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-block { width: 100%; margin-top: auto; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--brand); box-shadow: none; background: rgba(52, 227, 196, 0.06); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 11, 22, 0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand-logo { height: 34px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--muted); font-weight: 500; font-size: 0.95rem; transition: color 0.15s ease; }
.nav a:hover { color: var(--text); }
.nav a.btn { color: #04221d; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 20px; border-bottom: 1px solid var(--border); background: var(--bg-2); }
.mobile-nav a { padding: 10px 0; color: var(--muted); font-weight: 500; }
.mobile-nav a.btn { color: #04221d; margin-top: 8px; }

/* ===== Hero ===== */
.hero {
  position: relative; padding: 84px 0 0;
  background:
    radial-gradient(900px 520px at 82% -10%, rgba(58, 139, 253, 0.14), transparent 60%),
    radial-gradient(720px 520px at 8% 8%, rgba(52, 227, 196, 0.11), transparent 55%);
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); margin-bottom: 22px; }
.lede { color: var(--muted); font-size: 1.13rem; max-width: 560px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-trust li { color: var(--dim); font-size: 0.9rem; position: relative; padding-left: 22px; }
.hero-trust li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--brand), transparent 70%); box-shadow: 0 0 8px var(--brand); }

.terminal { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.terminal-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: rgba(255,255,255,0.02); border-bottom: 1px solid var(--border); }
.terminal-bar span { width: 11px; height: 11px; border-radius: 50%; background: #36405c; }
.terminal-bar span:nth-child(1) { background: #ff5f57; } .terminal-bar span:nth-child(2) { background: #febc2e; } .terminal-bar span:nth-child(3) { background: #28c840; }
.terminal-bar p { margin-left: auto; color: var(--dim); font-size: 0.78rem; font-family: var(--mono); }
.terminal-body { padding: 22px; font-family: var(--mono); font-size: 0.86rem; line-height: 1.95; color: var(--muted); overflow-x: auto; }
.c-ok { color: var(--brand); } .c-warn { color: var(--warn); } .c-dim { color: var(--dim); }

.logo-strip { margin-top: 72px; padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 28px; }
.logo-strip > span { color: var(--dim); font-size: 0.82rem; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.1em; }
.logos { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.logos em { font-style: normal; color: var(--muted); font-weight: 700; font-size: 1rem; opacity: 0.82; }

/* ===== Stats band ===== */
.stats-band { background: var(--bg-2); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 36px 24px; }
.stats-grid div { display: flex; flex-direction: column; gap: 4px; }
.stats-grid strong { font-family: var(--head); font-size: 1.9rem; color: var(--brand); font-weight: 800; }
.stats-grid span { color: var(--dim); font-size: 0.88rem; }

/* ===== Sections ===== */
.section { padding: 92px 0; }
.section-head { max-width: 740px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ===== Cards ===== */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 22px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 22px; }
.card { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: transform 0.18s ease, border-color 0.18s ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(52, 227, 196, 0.4); }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; }

.ticks { list-style: none; margin: 14px 0 0; display: grid; gap: 9px; }
.ticks li { position: relative; padding-left: 26px; color: var(--muted); font-size: 0.93rem; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 800; }

/* Solutions */
.solution { display: flex; flex-direction: column; }
.sol-icon { font-size: 1.8rem; margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chips.small { margin-top: 16px; }
.chips span { font-size: 0.82rem; color: var(--muted); background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 6px 12px; border-radius: 999px; }

/* Vendors */
.vendor h3 { color: var(--text); margin-bottom: 6px; }
.vendor-grid .ticks li { font-size: 0.9rem; }

/* ===== Pricing ===== */
.price-grid { align-items: stretch; }
.price-card { display: flex; flex-direction: column; position: relative; }
.service-tag { display: inline-block; align-self: flex-start; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-2); background: rgba(58, 139, 253, 0.1); border: 1px solid rgba(58, 139, 253, 0.25); padding: 5px 11px; border-radius: 999px; margin-bottom: 16px; }
.price-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.price { color: var(--text); margin: 6px 0 4px; font-family: var(--head); }
.price .from, .price .per { font-family: var(--font); color: var(--dim); font-size: 0.85rem; font-weight: 500; }
.price strong { font-size: 1.9rem; font-weight: 800; }
.price-sub { color: var(--dim); font-size: 0.85rem; margin-bottom: 12px; }
.price-card .ticks { margin-bottom: 22px; }
.price-card.featured { border-color: rgba(52, 227, 196, 0.5); box-shadow: 0 0 0 1px rgba(52,227,196,0.18), var(--shadow); }
.price-card.wide p { margin-bottom: 14px; }
.badge { position: absolute; top: -12px; right: 22px; background: linear-gradient(100deg, var(--brand), var(--brand-2)); color: #04221d; font-size: 0.72rem; font-weight: 800; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.06em; }
.services-note { color: var(--dim); font-size: 0.9rem; max-width: 820px; margin: 14px auto 0; text-align: center; }

/* ===== Why / compare ===== */
.compare { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 18px; align-items: stretch; }
.compare-col { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; }
.compare-col h3 { font-size: 1.1rem; margin-bottom: 16px; }
.compare-col.highlight { border-color: rgba(52,227,196,0.5); box-shadow: 0 0 0 1px rgba(52,227,196,0.18), var(--shadow); }
.compare-badge { position: absolute; top: -12px; left: 28px; background: linear-gradient(100deg, var(--brand), var(--brand-2)); color: #04221d; font-size: 0.72rem; font-weight: 800; padding: 5px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.06em; }
.pros, .cons { list-style: none; display: grid; gap: 11px; }
.pros li, .cons li { position: relative; padding-left: 26px; font-size: 0.93rem; color: var(--muted); }
.pros li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }
.cons li::before { content: "✕"; position: absolute; left: 0; color: #ff6b6b; font-weight: 800; }

/* ===== Steps ===== */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.steps li { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(52,227,196,0.12); border: 1px solid rgba(52,227,196,0.3); color: var(--brand); font-weight: 800; font-size: 1.1rem; margin-bottom: 16px; font-family: var(--mono); }
.steps h3 { font-size: 1.05rem; margin-bottom: 8px; }
.steps p { color: var(--muted); font-size: 0.92rem; }

/* ===== Industries ===== */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ind { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; font-weight: 600; display: flex; flex-direction: column; gap: 6px; }
.ind span { color: var(--brand); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== About ===== */
.about { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: start; }
.about-copy p { color: var(--muted); margin-bottom: 18px; font-size: 1.02rem; }
.about-stats { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong { font-family: var(--head); font-size: 1.3rem; color: var(--brand); font-weight: 800; }
.about-stats span { color: var(--dim); font-size: 0.85rem; }
.expertise { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.expertise h3 { font-size: 1.05rem; margin-bottom: 18px; }

/* ===== Checklist ===== */
.checklist-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.checklist-copy p { color: var(--muted); font-size: 1.05rem; margin-bottom: 26px; }
.fineprint { font-size: 0.88rem; color: var(--dim); margin-top: 16px; }
.fineprint a { color: var(--brand); }
.check-card { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.check-row { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--border); color: var(--muted); font-size: 0.95rem; }
.check-row:last-child { border-bottom: none; }
.cb { width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--dim); flex-shrink: 0; position: relative; }
.cb.on { background: var(--brand); border-color: var(--brand); }
.cb.on::after { content: "✓"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #04221d; font-weight: 800; font-size: 0.8rem; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 32px; align-items: start; }
.contact-form { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; display: grid; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; font-size: 0.88rem; font-weight: 600; color: var(--muted); }
.contact-form input, .contact-form select, .contact-form textarea { font-family: var(--font); font-size: 0.95rem; background: var(--bg); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; outline: none; transition: border-color 0.15s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--brand); }
.contact-form textarea { resize: vertical; }
.contact-aside { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.contact-aside h3 { font-size: 1.05rem; margin-bottom: 16px; }
.next-list { padding-left: 18px; display: grid; gap: 12px; color: var(--muted); font-size: 0.93rem; }
.aside-trust { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--border); display: grid; gap: 12px; }
.aside-trust p { color: var(--muted); font-size: 0.9rem; }
.aside-trust strong { color: var(--text); }

/* ===== Footer ===== */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.footer-brand .brand-logo { height: 32px; margin-bottom: 10px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 360px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.footer-links a { color: var(--muted); font-size: 0.92rem; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; }
.footer-bottom p { color: var(--dim); font-size: 0.82rem; }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .hero-inner, .about-inner, .checklist-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { order: -1; }
  .cards-3, .steps, .vendor-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .compare { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav.open { display: flex; }
}
@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .cards-3, .cards-2, .steps, .vendor-grid, .price-grid, .field-row, .ind-grid, .stats-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 22px; }
  .logo-strip { flex-direction: column; align-items: flex-start; gap: 14px; }
}


.footer-brand .footer-contact { margin-top: 10px; font-size: 0.92rem; }
.footer-brand .footer-contact a { color: var(--brand); }
