/* PixelTrim Studio — Global Stylesheet v2
   Color Scheme: Deep Navy | Electric Indigo | Warm Orange */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Palette */
  --navy:      #0B1320;
  --navy-mid:  #131E30;
  --navy-soft: #1E2D45;
  --indigo:    #5B5EF4;
  --indigo-dim:#4346C4;
  --indigo-glow:rgba(91,94,244,0.14);
  --orange:    #F97316;
  --orange-dim:rgba(249,115,22,0.12);
  --sky:       #38BDF8;

  --bg:        #F0F4FB;
  --bg-white:  #FFFFFF;
  --ink:       #0B1320;
  --ink-mid:   #334155;
  --ink-soft:  #64748B;
  --border:    #DDE3EF;
  --border-dark:#C4CDD9;

  /* Type */
  --display: 'Plus Jakarta Sans', sans-serif;
  --body:    'Inter', sans-serif;
  --mono:    'JetBrains Mono', monospace;

  /* Misc */
  --radius: 14px;
  --shadow-card: 0 4px 18px rgba(11,19,32,0.07);
  --shadow-lg:   0 14px 40px rgba(11,19,32,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Layout ─────────────────────────────── */
.wrap  { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.wrap--sm { max-width: 820px;  margin: 0 auto; padding: 0 28px; }

/* ── Typography ─────────────────────────── */
h1,h2,h3,h4 { font-family: var(--display); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(32px, 4.5vw, 56px); }
h2 { font-size: clamp(26px, 3.2vw, 40px); }
h3 { font-size: clamp(20px, 2vw, 26px); }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px; text-transform: uppercase; letter-spacing: .09em;
  color: var(--indigo);
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--indigo);
  box-shadow: 0 0 0 4px var(--indigo-glow);
  flex: none;
}
.lede { color: var(--ink-soft); font-size: 17px; max-width: 580px; line-height: 1.65; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  text-decoration: none;
}
.btn-primary { background: var(--indigo); color: #fff; }
.btn-primary:hover { background: var(--indigo-dim); transform: translateY(-2px); box-shadow: 0 8px 24px var(--indigo-glow); }
.btn-orange  { background: var(--orange); color: #fff; }
.btn-orange:hover  { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 24px var(--orange-dim); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-white   { background: #fff; color: var(--indigo); }
.btn-white:hover { background: #EEF0FF; }

/* ── NAV ────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(240,244,251,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px 28px; max-width: 1160px; margin: 0 auto;
}
.logo {
  font-family: var(--display); font-weight: 800; font-size: 18px;
  display: flex; align-items: center; gap: 8px; color: var(--navy); white-space: nowrap;
}
.logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--indigo); display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 18px; height: 18px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-mid);
  padding: 7px 13px; border-radius: 8px; transition: background .12s, color .12s;
}
.nav-links a:hover { background: var(--indigo-glow); color: var(--indigo); }
.nav-links .has-drop { position: relative; }
.nav-links .has-drop > a::after { content: ' ▾'; font-size: 10px; }
.drop-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 240px; padding: 8px;
  display: none; z-index: 200;
}
.has-drop:hover .drop-menu { display: block; }
.drop-menu a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 14px; color: var(--ink-mid);
}
.drop-menu a:hover { background: var(--bg); color: var(--indigo); }
.nav-cta { display: flex; gap: 10px; flex: none; }

/* ── HERO ────────────────────────────────── */
.hero-section {
  padding: 96px 0 72px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1A1645 100%);
  color: #fff; position: relative; overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(91,94,244,.18), transparent);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-section h1 { color: #fff; margin-bottom: 20px; }
.hero-section h1 .accent { color: var(--sky); }
.hero-section .lede { color: #94A3C4; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.trust-strip { display: flex; gap: 24px; margin-top: 44px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #94A3C4; }
.trust-item .chk { color: var(--sky); font-weight: 700; }

.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 18px;
  padding: 24px; backdrop-filter: blur(8px);
}
.service-badge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.service-badge {
  background: rgba(91,94,244,.2); border: 1px solid rgba(91,94,244,.3); border-radius: 10px;
  padding: 12px 14px; font-size: 13px; font-weight: 600; color: #C7C9FF;
  display: flex; align-items: center; gap: 9px;
}
.service-badge .ic { font-size: 18px; }

/* ── SECTIONS ────────────────────────────── */
section { padding: 88px 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h2 { color: #fff; }
.section-dark .eyebrow::before { background: var(--sky); box-shadow: 0 0 0 4px rgba(56,189,248,.15); }
.section-dark .eyebrow { color: var(--sky); }
.section-dark .lede { color: #94A3C4; }
.section-white { background: var(--bg-white); }
.section-hdr { max-width: 600px; margin-bottom: 50px; }

/* ── CARDS ───────────────────────────────── */
.card {
  background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-card);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--indigo); }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.service-card { text-decoration: none; color: var(--ink); }
.service-card .sc-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--indigo-glow); display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.service-card h3 { font-size: 17px; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 14px; }
.service-card .sc-link { font-family: var(--mono); font-size: 12px; color: var(--indigo); margin-top: 14px; display: block; }

/* ── PROCESS ─────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; margin-top: 48px; }
.process-grid::before {
  content: ''; position: absolute; top: 22px; left: 46px; right: 46px; height: 1px;
  background: repeating-linear-gradient(to right, var(--indigo) 0 8px, transparent 8px 16px);
}
.proc-card { display: flex; flex-direction: column; gap: 14px; }
.proc-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--bg-white); border: 2px solid var(--indigo);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 13px; color: var(--indigo); font-weight: 600; z-index: 1;
}
.proc-card h4 { font-family: var(--display); font-size: 15px; margin-bottom: 4px; }
.proc-card p  { font-size: 13.5px; color: var(--ink-soft); }

/* ── STATS ───────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-box { text-align: center; padding: 28px; }
.stat-box .num { font-family: var(--display); font-size: 42px; font-weight: 800; color: var(--indigo); }
.stat-box .lbl { font-size: 14px; color: var(--ink-soft); margin-top: 6px; }

/* ── PRICING ─────────────────────────────── */
.section-dark .pricing-grid{color: #000;}
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 44px; }
.price-card { display: flex; flex-direction: column; }
.price-card.popular { border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-glow); }
.pop-badge {
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--indigo); margin-bottom: 12px;
}
.price-val { font-family: var(--display); font-size: 38px; font-weight: 800; margin: 16px 0 6px; }
.price-val span { font-size: 15px; color: var(--ink-soft); font-weight: 400; font-family: var(--body); }
.price-card ul { margin: 18px 0 28px; display: grid; gap: 9px; }
.price-card li { font-size: 14px; color: var(--ink-mid); display: flex; gap: 9px; }
.price-card li::before { content: '✓'; color: var(--indigo); font-weight: 700; }
.price-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ── FORMS ───────────────────────────────── */
.form-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 18px; padding: 38px; box-shadow: var(--shadow-card); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.f-group { display: flex; flex-direction: column; gap: 7px; }
.f-group label { font-size: 13px; font-weight: 600; color: var(--ink); }
.f-group input,
.f-group select,
.f-group textarea {
  padding: 12px 15px; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--body); font-size: 14.5px; background: var(--bg);
  color: var(--ink); transition: border-color .14s;
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus { outline: none; border-color: var(--indigo); background: #fff; }
.f-group textarea { min-height: 100px; resize: vertical; }
.f-note { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); margin-top: 6px; }

/* ── FAQ ─────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 15.5px;
}
.faq-q .plus { color: var(--indigo); font-size: 22px; line-height: 1; transition: transform .2s; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 0 18px; color: var(--ink-soft); font-size: 14.5px; max-width: 680px; }

/* ── BLOG ────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 40px; }
.post-card { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); }
.post-card img { width: 100%; height: 195px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.post-card .pc-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.pc-cat { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--orange); }
.post-card h3 { font-size: 18px; margin: 10px 0 8px; }
.post-card p  { color: var(--ink-soft); font-size: 14px; }
.pc-date { font-family: var(--mono); font-size: 11px; color: var(--ink-soft); margin-top: auto; padding-top: 14px; }

/* ── SERVICE MONEY PAGE ──────────────────── */
.service-hero {
  padding: 88px 0 72px;
  background: linear-gradient(135deg, var(--navy) 0%, #1A1645 100%);
  color: #fff; position: relative; overflow: hidden;
}
.service-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 90% at 80% 50%, rgba(91,94,244,.2), transparent);
  pointer-events: none;
}
.service-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; }
.service-hero h1 { color: #fff; margin-bottom: 18px; }
.service-hero .lede { color: #94A3C4; }
.service-hero-img {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.1); box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.service-hero-img img { width: 100%; height: 340px; object-fit: cover; }

.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 40px; }
.why-card { display: flex; gap: 16px; align-items: flex-start; }
.why-card .why-ic {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: var(--indigo-glow); display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.why-card h4 { font-family: var(--display); font-size: 15px; margin-bottom: 4px; }
.why-card p  { font-size: 14px; color: var(--ink-soft); }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 0; }
.feature-row.reverse { }
.feature-row img { border-radius: var(--radius); width: 100%; object-fit: cover; box-shadow: var(--shadow-lg); }
.feature-content ul { margin: 18px 0; display: grid; gap: 12px; }
.feature-content li { display: flex; gap: 10px; font-size: 15px; }
.feature-content li::before { content: '→'; color: var(--indigo); font-weight: 700; flex: none; }

/* ── CTA STRIP ───────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--indigo) 0%, #7C3AED 100%);
  color: #fff; text-align: center; padding: 80px 0;
}
.cta-strip h2 { color: #fff; margin-bottom: 14px; }
.cta-strip p  { color: rgba(255,255,255,.8); max-width: 520px; margin: 0 auto 28px; font-size: 16px; }

/* ── FOOTER ──────────────────────────────── */
.site-footer { background: var(--navy); color: #fff; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: #94A3C4; line-height: 1.7; }
.footer-col h5 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: #64748B; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 14px; color: #94A3C4; transition: color .14s; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom { border-top: 1px solid #1E2D45; margin-top: 52px; padding-top: 26px; display: flex; justify-content: space-between; font-size: 12.5px; color: #475569; flex-wrap: wrap; gap: 10px; }

/* ── ADMIN ───────────────────────────────── */
.admin-wrap { max-width: 960px; margin: 40px auto; padding: 0 24px; }
.admin-header { background: var(--navy); color: #fff; padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; }
.admin-header .logo { color: #fff; }
.admin-nav a { font-size: 13.5px; color: #94A3C4; margin-left: 20px; }
.admin-nav a:hover { color: #fff; }
.admin-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 20px; box-shadow: var(--shadow-card); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th { text-align: left; padding: 10px 12px; background: var(--bg); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); }
td { padding: 12px 12px; border-bottom: 1px solid var(--border); color: var(--ink-mid); vertical-align: middle; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.badge-green { background: #D1FAE5; color: #065F46; }
.badge-gray  { background: #F1F5F9; color: #475569; }
.btn-sm { padding: 7px 14px; font-size: 13px; border-radius: 8px; }
.btn-danger { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }
.btn-danger:hover { background: #FCA5A5; }
.rich-editor { min-height: 300px; }

/* ── ALERT ───────────────────────────────── */
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-size: 14px; }
.alert-success { background: #D1FAE5; color: #065F46; border: 1px solid #6EE7B7; }
.alert-error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }

/* ── BLOG SINGLE ─────────────────────────── */
.post-hero { padding: 64px 0 40px; background: var(--navy); color: #fff; }
.post-hero h1 { color: #fff; }
.post-hero .pc-cat { color: var(--sky); }
.post-hero .meta { font-family: var(--mono); font-size: 12.5px; color: #64748B; margin-top: 16px; display: flex; gap: 18px; flex-wrap: wrap; }
.post-cover { width: 100%; max-height: 450px; object-fit: cover; border-radius: var(--radius); margin: 36px 0 16px; }
.post-content { font-size: 17px; color: #1E293B; max-width: 740px; margin: 0 auto; padding: 20px 0 80px; }
.post-content p   { margin-bottom: 22px; line-height: 1.75; }
.post-content h2  { font-size: 26px; margin: 44px 0 14px; }
.post-content h3  { font-size: 20px; margin: 30px 0 10px; }
.post-content ul,.post-content ol { margin: 0 0 22px 20px; display: grid; gap: 8px; }
.post-content li  { line-height: 1.65; }
.post-content blockquote { border-left: 3px solid var(--indigo); padding: 4px 0 4px 20px; color: var(--ink-soft); font-style: italic; margin: 28px 0; }
.post-cta { background: var(--indigo); color: #fff; border-radius: var(--radius); padding: 36px; text-align: center; margin: 40px 0 0; }
.post-cta h3 { color: #fff; margin-bottom: 10px; }
.post-cta p  { color: rgba(255,255,255,.8); margin-bottom: 20px; font-size: 15px; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .hero-grid, .service-hero-grid, .feature-row, .footer-grid { grid-template-columns: 1fr; }
  .service-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .nav-links .has-drop .drop-menu { display: none !important; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .service-grid, .pricing-grid, .blog-grid, .form-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 0; }
}
