/* ===========================================================
   CoreGuard Tech - Site stylesheet
   =========================================================== */

/* ---------- Design tokens ---------- */
:root {
  --ink: #0a0e27;
  --ink-2: #1a2040;
  --ink-3: #2a3057;
  --paper: #faf8f5;
  --paper-2: #f1ede5;
  --line: #e5e0d3;
  --muted: #5b6478;
  --accent: #ff4d2e;
  --accent-2: #ff7847;
  --teal: #0d9488;
  --gold: #f59e0b;
  --green: #10b981;
  --shadow-sm: 0 1px 2px rgba(10, 14, 39, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 14, 39, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 14, 39, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --container: 1180px;
  --font-display: 'Bricolage Grotesque', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 .6em;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.lead { font-size: 1.15rem; color: var(--ink-2); }
hr { border: 0; height: 1px; background: var(--line); margin: 3rem 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 4px 10px;
  border: 1px solid var(--accent);
  border-radius: 999px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
  border: 0;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255, 77, 46, 0.28);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--ink-2); color: #fff; }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { color: var(--accent); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.96rem;
  position: relative;
}
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: all .25s ease;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links, .nav-cta .btn {
    display: none;
  }
  .nav-cta { gap: 10px; }
  .site-header.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 20px 24px;
    gap: 18px;
  }
  .site-header.open .nav-cta .btn {
    display: inline-flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10,14,39,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,14,39,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero h1 {
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--accent); }
.hero p.lead { max-width: 540px; margin-bottom: 32px; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
}
.stat-label {
  font-size: 0.88rem;
  color: var(--muted);
}
.hero-visual {
  position: relative;
}
.hero-visual .photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 4/5;
}
.hero-visual .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  background: #fff;
  padding: 16px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
}
.hero-badge .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
}
.hero-badge-1 { top: 30px; left: -24px; }
.hero-badge-2 { bottom: 40px; right: -24px; }
.hero-badge-2 .icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--paper-2);
  display: grid; place-items: center;
  color: var(--accent);
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 50px 0 70px; }
  .hero-visual .photo { aspect-ratio: 4/3; }
  .hero-badge { display: none; }
}

/* ---------- Sections ---------- */
section { padding: 90px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}
.section-head .text { max-width: 620px; }
.section-head p { color: var(--muted); margin: 0; }
@media (max-width: 700px) {
  section { padding: 60px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.service-card .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--paper-2);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.service-card .icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.service-card .arrow {
  position: absolute;
  top: 28px; right: 28px;
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}
.service-card:hover .arrow { opacity: 1; transform: translate(2px, -2px); }

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

/* ---------- Feature alternate (image + text) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }
.feature img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.feature ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.feature ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--ink-2);
}
.feature ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #fff;
}
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 30px; }
  .feature.reverse { direction: ltr; }
}

/* ---------- Process steps ---------- */
.process {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  inset: -50% -10% auto auto;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 77, 46, 0.25), transparent 60%);
  pointer-events: none;
}
.process h2 { color: #fff; }
.process p { color: rgba(255,255,255,0.7); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
  position: relative;
}
.step {
  border-left: 2px solid rgba(255,255,255,0.15);
  padding-left: 20px;
}
.step .num {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.86rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.step h4 { color: #fff; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; margin: 0; }
@media (max-width: 900px) {
  .process { padding: 50px 30px; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Testimonial / Quote band ---------- */
.quote-band {
  background: var(--paper-2);
  text-align: center;
}
.quote-band blockquote {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.quote-band cite {
  display: block;
  margin-top: 26px;
  font-style: normal;
  font-size: 0.92rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---------- CTA ---------- */
.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 70px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.75); margin: 0; max-width: 480px; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.cta-band::before {
  content: "";
  position: absolute;
  inset: auto auto -40% -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 77, 46, 0.30), transparent 60%);
  pointer-events: none;
}
@media (max-width: 800px) {
  .cta-band { grid-template-columns: 1fr; padding: 40px; text-align: left; }
  .cta-band .cta-actions { justify-content: flex-start; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h5 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 0.94rem; }
.footer-col a:hover { color: var(--accent); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.94rem; margin-top: 18px; max-width: 320px; }
.footer-brand .logo-mark {
  height: 40px;
}
.footer-brand .logo-mark .word-light { fill: #fff !important; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  gap: 20px;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Page header (inner pages) ---------- */
.page-head {
  padding: 80px 0 60px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255, 77, 46, 0.10), transparent 60%),
    linear-gradient(to bottom, var(--paper-2), var(--paper));
  overflow: hidden;
}
.page-head .container { position: relative; z-index: 1; }
.crumbs {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }
.page-head h1 { max-width: 720px; margin-bottom: 18px; }
.page-head p { max-width: 620px; color: var(--ink-2); font-size: 1.1rem; }

/* ---------- About page ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.value-card .num {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 14px;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 0.94rem; margin: 0; }
@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr; } }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 50px;
}
.about-stats .stat .stat-num { color: #fff; font-size: 2.4rem; }
.about-stats .stat .stat-label { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
@media (max-width: 800px) {
  .about-stats { grid-template-columns: 1fr 1fr; padding: 30px; }
}

/* ---------- Services page ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.service-row:first-of-type { border-top: 0; padding-top: 0; }
.service-row .label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 14px;
}
.service-row h2 { font-size: 2rem; margin-bottom: 18px; }
.service-row .feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}
.service-row .feature-list li {
  padding-left: 24px;
  position: relative;
  font-size: 0.94rem;
  color: var(--ink-2);
}
.service-row .feature-list li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}
.service-row img { border-radius: var(--radius); box-shadow: var(--shadow-sm); }
@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; gap: 30px; }
  .service-row .feature-list { grid-template-columns: 1fr; }
}

/* ---------- FAQ page ---------- */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.faq-cat {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin: 50px 0 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.faq-cat:first-of-type { margin-top: 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
  padding: 0 0 24px;
  color: var(--ink-2);
}
.faq-item .answer p { margin-bottom: 12px; }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: 1.6rem; }
.contact-info p { color: var(--muted); }
.contact-blocks { margin-top: 30px; }
.contact-block {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-block:last-child { border-bottom: 0; }
.contact-block .ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--paper-2);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-block .ic svg { width: 22px; height: 22px; }
.contact-block .text { font-size: 0.95rem; }
.contact-block .text strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-block .text a, .contact-block .text span { color: var(--ink-2); }
.contact-block .text a:hover { color: var(--accent); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(10,14,39,0.06);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-actions { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 10px; }
.form-note { font-size: 0.84rem; color: var(--muted); margin: 0; }
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 0.94rem;
}
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
}

/* ---------- Logo strip ---------- */
.logo-strip {
  background: var(--paper-2);
  padding: 40px 0;
}
.logo-strip .row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.7;
}
.logo-strip .tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0;
}
.logo-strip .badge {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink-2);
  opacity: 0.6;
}

/* ---------- Pricing / packages ---------- */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pkg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.pkg.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: scale(1.02);
}
.pkg.featured h3, .pkg.featured .price { color: #fff; }
.pkg.featured ul li { color: rgba(255,255,255,0.85); }
.pkg.featured .ribbon {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.pkg h3 { font-size: 1.2rem; margin-bottom: 6px; }
.pkg .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; }
.pkg .price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--ink); }
.pkg .price-sub { font-size: 0.86rem; color: var(--muted); }
.pkg.featured .price-sub { color: rgba(255,255,255,0.6); }
.pkg ul { list-style: none; padding: 0; margin: 0 0 24px; }
.pkg ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.94rem;
  color: var(--ink-2);
}
.pkg ul li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pkg .btn { width: 100%; justify-content: center; }
@media (max-width: 900px) {
  .packages { grid-template-columns: 1fr; }
  .pkg.featured { transform: none; }
}

/* ---------- Gallery / case visuals ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery div {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery div:hover img { transform: scale(1.05); }
@media (max-width: 700px) { .gallery { grid-template-columns: 1fr 1fr; } }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.bg-paper-2 { background: var(--paper-2); }
.dark-section { background: var(--ink); color: rgba(255,255,255,0.8); }
.dark-section h2, .dark-section h3 { color: #fff; }
