/* ============================================================
   AQSA Prints — Stylesheet
   Design tokens: navy / black / orange accent, glassmorphism,
   signature motif = printer's crop-marks & CMYK colour bar.
   ============================================================ */

:root {
  --ink: #0b1a33;
  --ink-2: #122a4d;
  --ink-3: #1b3a63;
  --black: #0a0a0a;
  --accent: #ff5f1f;
  --accent-dark: #e24e10;
  --accent-soft: #ffe7da;
  --paper: #ffffff;
  --paper-soft: #f6f7fa;
  --paper-dim: #eef1f5;
  --slate: #4b5a76;
  --slate-light: #8592a8;
  --line: #e3e7ee;

  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --container: 1280px;
  --radius: 1.25rem;
  --shadow-card: 0 2px 8px rgba(11, 26, 51, 0.06);
  --shadow-hover: 0 20px 40px -12px rgba(11, 26, 51, 0.18);
  --shadow-glass: 0 8px 32px rgba(11, 26, 51, 0.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--ink); font-weight: 600; }
p { margin: 0; }
input, textarea, select { font: inherit; }
::selection { background: var(--accent-soft); }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 640px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.section { padding: 80px 0; }
@media (min-width: 640px) { .section { padding: 112px 0; } }

.bg-white { background: var(--paper); }
.bg-soft { background: var(--paper-soft); }
.bg-ink { background: var(--ink); color: rgba(255,255,255,0.85); }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }

.grid-bg {
  background-image:
    linear-gradient(to right, rgba(11,26,51,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,26,51,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Eyebrow / heading ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--accent); }
.eyebrow.center { justify-content: center; }

.section-heading { max-width: 620px; }
.section-heading.center { margin: 0 auto; text-align: center; }
.section-heading h2 { margin-top: 16px; font-size: 34px; letter-spacing: -0.01em; }
@media (min-width: 640px) { .section-heading h2 { font-size: 42px; } }
.section-heading p { margin-top: 16px; color: var(--slate); font-size: 16px; line-height: 1.7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 15px 26px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-secondary { background: #fff; color: var(--ink); border: 1px solid rgba(11,26,51,0.15); }
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Crop-mark signature motif ---------- */
.crop-marks { position: relative; }
.crop-marks::before, .crop-marks::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  background-image: linear-gradient(rgba(11,26,51,0.35), rgba(11,26,51,0.35)),
                     linear-gradient(rgba(11,26,51,0.35), rgba(11,26,51,0.35));
  background-size: 100% 1.5px, 1.5px 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.crop-marks::before { top: -7px; left: -7px; }
.crop-marks::after { bottom: -7px; right: -7px; }
.crop-marks:hover::before, .crop-marks:hover::after,
.crop-marks.always::before, .crop-marks.always::after { opacity: 1; }

/* ---------- CMYK colour bar divider ---------- */
.color-bar { display: flex; align-items: center; gap: 16px; }
.color-bar .line { flex: 1; height: 1px; background: var(--line); }
.color-bar .dots { display: flex; gap: 6px; }
.color-bar .dots span { width: 10px; height: 10px; border-radius: 50%; }

/* ---------- Glass card ---------- */
.glass-card {
  position: relative;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-glass);
  border-radius: var(--radius);
}
.glass-card-dark {
  background: rgba(11,26,51,0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0);
  transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); box-shadow: var(--shadow-card); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 8px; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
}
.brand-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; line-height: 1.1; }
.brand-sub { display: block; font-family: var(--font-mono); font-size: 10px; font-weight: 400; letter-spacing: 0.18em; color: var(--slate-light); }

.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a { position: relative; padding: 8px 0; font-size: 14px; font-weight: 500; color: var(--slate); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--accent); }

.nav-actions { display: none; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.nav-phone:hover { color: var(--accent); }

.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(11,26,51,0.1);
}

@media (min-width: 1024px) {
  .nav-links, .nav-actions { display: flex; }
  .nav-toggle { display: none; }
}

.mobile-menu {
  max-height: 0; overflow: hidden; background: #fff; border-top: 1px solid var(--line);
  transition: max-height 0.3s ease;
}
.mobile-menu.open { max-height: 500px; }
.mobile-menu ul { padding: 16px 24px; display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a { display: block; padding: 12px; border-radius: 8px; font-weight: 500; }
.mobile-menu a:hover { background: var(--paper-soft); }
.mobile-menu .btn { margin-top: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; gap: 48px; align-items: center; padding: 64px 0 80px; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; padding: 96px 0 112px; } }

.hero h1 { margin-top: 20px; font-size: 40px; line-height: 1.1; letter-spacing: -0.01em; }
.hero h1 span { color: var(--accent); }
@media (min-width: 640px) { .hero h1 { font-size: 52px; } }
@media (min-width: 1024px) { .hero h1 { font-size: 60px; } }
.hero-sub { margin-top: 24px; max-width: 480px; font-size: 18px; line-height: 1.7; color: var(--slate); }
.hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; }

.hero-stats { margin-top: 48px; max-width: 420px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; border-top: 1px solid var(--line); padding-top: 32px; }
.hero-stats strong { display: block; font-family: var(--font-display); font-size: 26px; }
.hero-stats span { display: block; margin-top: 4px; font-size: 12px; color: var(--slate); }

.hero-visual { position: relative; }
.hero-visual .glass-card { padding: 12px; }
.hero-visual .img-frame { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 1rem; }
.hero-visual .img-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute; left: -32px; bottom: -32px; width: 220px; padding: 16px; display: none;
}
@media (min-width: 640px) { .hero-badge { display: block; } }
.hero-badge .label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent-dark); }
.hero-badge .job { margin-top: 4px; font-size: 14px; font-weight: 600; }
.hero-badge .bar { margin-top: 12px; width: 100%; height: 6px; border-radius: 999px; background: var(--paper-dim); overflow: hidden; }
.hero-badge .bar span { display: block; height: 100%; width: 0%; background: var(--accent); border-radius: 999px; transition: width 1.4s ease 0.3s; }
.hero-badge.animate .bar span { width: 86%; }
.hero-badge .status { margin-top: 8px; font-size: 12px; color: var(--slate); }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid-5 { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-5 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .grid-5 { grid-template-columns: repeat(5,1fr); } }

.grid-3 { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }

.grid-4 { display: grid; gap: 20px; grid-template-columns: repeat(2,1fr); }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }

.feature-card {
  height: 100%; padding: 26px; transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center; transition: background 0.3s ease;
}
.feature-card:hover .feature-icon { background: var(--accent); }
.feature-card h3 { margin-top: 20px; font-size: 16px; }
.feature-card p { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--slate); }

.service-card {
  display: flex; flex-direction: column; justify-content: space-between; height: 100%;
  border: 1px solid var(--line); background: #fff; border-radius: var(--radius); padding: 26px;
  transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(255,95,31,0.4); box-shadow: var(--shadow-hover); }
.service-card .feature-icon { background: var(--paper-soft); color: var(--ink); }
.service-card:hover .feature-icon { background: var(--accent); color: #fff; }
.service-card h3 { margin-top: 20px; font-size: 18px; }
.service-card p { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--slate); }
.service-card .link { margin-top: 24px; display: inline-flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 600; color: var(--accent-dark); }

/* ---------- Process ---------- */
.process-grid { margin-top: 64px; display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(5,1fr); } }
.process-step .num { font-family: var(--font-mono); font-size: 44px; font-weight: 700; color: rgba(255,255,255,0.1); }
.process-step .feature-icon { margin-top: 12px; background: rgba(255,255,255,0.1); color: var(--accent); }
.process-step h3 { margin-top: 20px; font-size: 16px; color: #fff; }
.process-step p { margin-top: 8px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.6); }

/* ---------- Testimonials ---------- */
.testimonial { display: flex; flex-direction: column; height: 100%; padding: 26px; }
.testimonial .quote-icon { color: rgba(255,95,31,0.4); }
.testimonial blockquote { margin: 16px 0 0; flex: 1; font-size: 14px; line-height: 1.7; color: rgba(11,26,51,0.8); }
.stars { display: flex; gap: 2px; margin-top: 20px; }
.testimonial .name { margin-top: 12px; font-size: 14px; font-weight: 600; }
.testimonial .role { font-size: 12px; color: var(--slate); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 48px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; }
.faq-q span.text { font-family: var(--font-display); font-size: 16px; font-weight: 500; }
.faq-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--paper-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { padding: 0 24px 20px; font-size: 14px; line-height: 1.7; color: var(--slate); }

/* ---------- Quote / dark CTA block ---------- */
.quote-block { display: grid; grid-template-columns: 1fr; overflow: hidden; }
@media (min-width: 1024px) { .quote-block { grid-template-columns: 1fr 1fr; } }
.quote-left, .quote-right { padding: 40px; }
@media (min-width: 640px) { .quote-left, .quote-right { padding: 48px; } }
.quote-right { background: rgba(255,255,255,0.03); }
.quote-left h2 { color: #fff; margin-top: 16px; font-size: 32px; }
@media (min-width: 640px) { .quote-left h2 { font-size: 38px; } }
.quote-left p { margin-top: 16px; max-width: 400px; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 500; }
.field .req { color: var(--accent); }
.field input, .field textarea, .field select {
  width: 100%; border-radius: 10px; padding: 11px 14px; font-size: 14px; outline: none;
  border: 1px solid var(--line); background: #fff; color: var(--ink); transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { resize: none; }

.form-dark .field label { color: rgba(255,255,255,0.7); }
.form-dark .field input, .form-dark .field textarea, .form-dark .field select {
  border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: #fff;
}
.form-dark .field input::placeholder, .form-dark .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-dark .field option { color: var(--ink); }

.form-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-height: 260px; }
.form-success.show { display: flex; }
.form-success p:first-child { font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.form-success p:last-child { margin-top: 8px; max-width: 280px; font-size: 14px; color: var(--slate); }
.form-dark .form-success p:first-child { color: #fff; }
.form-dark .form-success p:last-child { color: rgba(255,255,255,0.6); }

.contact-card { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .contact-card { grid-template-columns: 1fr 1.2fr; } }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; padding: 20px; }
.contact-detail .feature-icon { flex-shrink: 0; }
.contact-detail .label { font-size: 12px; color: var(--slate); }
.contact-detail .value { margin-top: 2px; font-size: 14px; font-weight: 600; }
.map-frame { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.map-frame iframe { width: 100%; height: 290px; border: 0; filter: grayscale(1); }
.contact-form-panel { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 26px; }
@media (min-width: 640px) { .contact-form-panel { padding: 34px; } }

/* ---------- Newsletter ---------- */
.newsletter { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; justify-content: space-between; }
@media (min-width: 640px) { .newsletter { flex-direction: row; align-items: center; } }
.newsletter h3 { font-size: 17px; }
.newsletter p { margin-top: 4px; font-size: 13px; color: var(--slate); }
.form-dark .newsletter p { color: rgba(255,255,255,0.6); }
.newsletter-form { display: flex; gap: 8px; width: 100%; max-width: 340px; }
.newsletter-form input {
  flex: 1; border-radius: 999px; padding: 11px 16px; font-size: 14px; outline: none;
  border: 1px solid var(--line); background: #fff;
}
.form-dark .newsletter-form input { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.1); color: #fff; }
.newsletter-form button {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: #fff; transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--accent); }
.newsletter-msg { font-size: 12px; color: var(--accent); margin-top: 8px; display: none; }
.newsletter-msg.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,0.8); }
.footer-grid { display: grid; gap: 48px; grid-template-columns: 1fr; padding: 64px 0; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-about p { margin-top: 16px; max-width: 340px; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-contacts { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-contacts a, .footer-contacts .addr { display: flex; align-items: flex-start; gap: 10px; }
.footer-contacts a:hover { color: var(--accent); }
.footer-socials { margin-top: 24px; display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; }
.footer-col ul { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-col a:hover { color: var(--accent); }
.footer-newsletter { margin: 0 0 40px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); border-radius: var(--radius); padding: 24px 28px; }
.footer-bottom { margin-top: 24px; padding: 24px 0; display: flex; flex-direction: column; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.5); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ============================================================
   FLOATING ACTIONS
   ============================================================ */
.floating-actions { position: fixed; right: 24px; bottom: 24px; z-index: 50; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.fab { display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; box-shadow: var(--shadow-hover); transition: transform 0.2s; }
.fab:hover { transform: scale(1.06); }
.fab-call { width: 48px; height: 48px; background: var(--ink); }
.fab-whatsapp { width: 56px; height: 56px; background: #25d366; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { position: relative; overflow: hidden; padding: 56px 0 64px; }
@media (min-width: 640px) { .page-hero { padding: 80px 0 88px; } }
.page-hero .inner { max-width: 720px; margin: 0 auto; text-align: center; }
.page-hero h1 { margin-top: 16px; font-size: 38px; letter-spacing: -0.01em; }
@media (min-width: 640px) { .page-hero h1 { font-size: 48px; } }
.page-hero p { margin: 20px auto 0; max-width: 640px; font-size: 16px; line-height: 1.7; color: var(--slate); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid { display: grid; gap: 56px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img { position: relative; }
.about-img .glass-card { padding: 12px; }
.about-img .img-frame { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 1rem; }
.about-img .img-frame img { width: 100%; height: 100%; object-fit: cover; }
.capability-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.capability { border-left: 2px solid var(--accent); padding-left: 16px; }
.capability strong { display: block; font-family: var(--font-display); font-size: 18px; }
.capability span { display: block; margin-top: 2px; font-size: 12px; color: var(--slate); }
.mv-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .mv-grid { grid-template-columns: repeat(3,1fr); } }
.mv-card { height: 100%; padding: 32px; }
.mv-card h3 { margin-top: 20px; font-size: 18px; }
.mv-card p { margin-top: 12px; font-size: 14px; line-height: 1.7; color: var(--slate); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail { display: grid; gap: 48px; align-items: center; grid-template-columns: 1fr; scroll-margin-top: 110px; }
@media (min-width: 1024px) { .service-detail { grid-template-columns: 1fr 1fr; } }
.service-detail.reverse .service-detail-img { order: 2; }
.service-detail-img .glass-card { padding: 12px; }
.service-detail-img .img-frame { position: relative; aspect-ratio: 9/7; overflow: hidden; border-radius: 1rem; }
.service-detail-img .img-frame img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-body .feature-icon { width: 48px; height: 48px; }
.service-detail-body h2 { margin-top: 20px; font-size: 28px; }
@media (min-width: 640px) { .service-detail-body h2 { font-size: 32px; } }
.service-detail-body > p { margin-top: 16px; font-size: 16px; line-height: 1.7; color: var(--slate); }
.feature-list { margin-top: 24px; display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .feature-list { grid-template-columns: 1fr 1fr; } }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(11,26,51,0.8); }
.feature-list svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.service-detail-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.service-list-wrap { display: flex; flex-direction: column; gap: 88px; }

/* ============================================================
   PRODUCTS / PORTFOLIO — filters & grids
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.filter-btn { border: 1px solid var(--line); background: #fff; color: var(--slate); padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 500; transition: all 0.2s; }
.filter-btn:hover { border-color: rgba(11,26,51,0.4); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.product-card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; transition: all 0.3s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-img { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--paper-soft); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-body { padding: 16px; }
.product-cat { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent-dark); }
.product-name { margin-top: 4px; font-family: var(--font-display); font-size: 14px; font-weight: 600; }
.product-enquire { margin-top: 10px; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; }
.product-enquire:hover { color: var(--accent); }

.portfolio-grid { column-count: 1; column-gap: 20px; }
@media (min-width: 640px) { .portfolio-grid { column-count: 2; } }
@media (min-width: 1024px) { .portfolio-grid { column-count: 3; } }
.portfolio-item { break-inside: avoid; margin-bottom: 20px; position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); cursor: pointer; }
.portfolio-item .img-frame { position: relative; aspect-ratio: 4/5; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  background: linear-gradient(to top, rgba(11,26,51,0.85), transparent 60%);
  opacity: 0; transition: opacity 0.3s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .cat { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; color: var(--accent); }
.portfolio-overlay .title { margin-top: 4px; font-size: 14px; font-weight: 600; color: #fff; }
.zoom-badge {
  position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--ink); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.portfolio-item:hover .zoom-badge { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center;
  background: rgba(11,26,51,0.92); padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-box { position: relative; max-width: 520px; width: 100%; max-height: 82vh; border-radius: var(--radius); overflow: hidden; }
.lightbox-box .img-frame { position: relative; aspect-ratio: 4/5; }
.lightbox-box img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-caption { background: #fff; padding: 18px; }
.lightbox-caption .cat { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; color: var(--accent-dark); }
.lightbox-caption .title { margin-top: 4px; font-family: var(--font-display); font-weight: 600; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff; display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-card { display: flex; flex-direction: column; height: 100%; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; transition: all 0.3s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-img { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-tag { position: absolute; left: 16px; top: 16px; background: rgba(255,255,255,0.92); padding: 5px 12px; border-radius: 999px; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: 16px; font-size: 12px; color: var(--slate); }
.blog-meta span { display: flex; align-items: center; gap: 6px; }
.blog-body h3 { margin-top: 12px; font-size: 17px; line-height: 1.4; }
.blog-body p { margin-top: 8px; flex: 1; font-size: 14px; line-height: 1.6; color: var(--slate); }
.blog-body .link { margin-top: 16px; display: inline-flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 600; color: var(--accent-dark); }

.post-header { max-width: 720px; margin: 0 auto; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--slate); }
.back-link:hover { color: var(--accent); }
.post-meta { margin-top: 20px; display: flex; gap: 20px; font-size: 14px; color: var(--slate); }
.post-meta span { display: flex; align-items: center; gap: 6px; }
.post-title { margin-top: 16px; font-size: 32px; letter-spacing: -0.01em; }
@media (min-width: 640px) { .post-title { font-size: 40px; } }
.post-hero-img { max-width: 720px; margin: 40px auto 0; border-radius: var(--radius); overflow: hidden; }
.post-hero-img .img-frame { position: relative; aspect-ratio: 16/9; }
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.post-body { max-width: 720px; margin: 40px auto 0; font-size: 16px; line-height: 1.8; color: var(--slate); }
.post-body p { margin-bottom: 16px; }
.post-body h2 { margin: 32px 0 12px; font-size: 22px; color: var(--ink); }
.post-body .lede { font-size: 18px; color: rgba(11,26,51,0.8); }
.post-cta { max-width: 720px; margin: 40px auto 0; display: flex; flex-wrap: wrap; gap: 12px; }

/* Utility */
.text-center { text-align: center; }
.mt-lg { margin-top: 64px; }
.mb-none { margin-bottom: 0; }
