/* =========================================================
   ARADIK CREATION — Static Site Stylesheet
   Palette: Cream/off-white background + Yellow #F5B800
   ========================================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #F5B800;
  --yellow-light: #FFD54F;
  --yellow-dark: #C48F00;
  --bg: #FAF7F0;
  --paper: #FFFFFF;
  --surface: #F2EEE5;
  --ink: #1A1A1A;
  --muted: #5B5B5B;
  --line: rgba(26,26,26,0.10);
  --shadow-sm: 0 4px 20px rgba(26,26,26,0.05);
  --shadow-lg: 0 20px 60px rgba(26,26,26,0.12);
  --shadow-glow: 0 20px 60px rgba(245,184,0,0.20);
  --serif: 'Playfair Display', 'Times New Roman', serif;
  --sans: 'Outfit', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Menlo', monospace;
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

::selection { background: var(--yellow); color: var(--ink); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.font-serif { font-family: var(--serif); letter-spacing: -0.02em; }
.font-mono { font-family: var(--mono); }
.italic { font-style: italic; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .container { padding: 0 40px; } }

/* =========== TYPOGRAPHY =========== */
.h1 { font-family: var(--serif); font-size: clamp(2.5rem, 7vw, 5.8rem); font-weight: 500; line-height: 0.98; letter-spacing: -0.03em; }
.h2 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 500; line-height: 1.05; }
.h3 { font-family: var(--serif); font-size: 1.75rem; font-weight: 500; }
.h4 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  text-transform: uppercase; letter-spacing: 0.4em;
  font-size: 11px; color: var(--yellow-dark); font-weight: 600;
}
.eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--yellow); }
.gold-text {
  background: linear-gradient(90deg, var(--yellow-dark), var(--yellow) 40%, var(--yellow-light) 65%, var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.muted { color: var(--muted); }

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  border: 1px solid transparent;
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; font-weight: 700;
  cursor: pointer; transition: transform .3s ease, background .3s ease, box-shadow .3s ease, border-color .3s ease, color .3s ease;
}
.btn-primary { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-light); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(26,26,26,0.20); }
.btn-ghost:hover { background: var(--yellow); border-color: var(--yellow); transform: translateY(-2px); }

/* =========== HEADER =========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
.site-header.scrolled {
  background: rgba(250,247,240,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: url('../img/logo-light.png') center/cover;
  background-color: var(--ink);
  border: 1px solid var(--yellow);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.2rem; letter-spacing: 0.02em; color: var(--ink); }
.brand-tag { font-size: 10px; letter-spacing: 0.4em; color: var(--yellow-dark); margin-top: 4px; font-weight: 600; }
.nav { display: none; gap: 36px; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a { font-size: 11px; text-transform: uppercase; letter-spacing: 0.28em; color: rgba(26,26,26,0.65); transition: color .3s; }
.nav a:hover, .nav a.active { color: var(--yellow-dark); }
.header-cta { display: none; gap: 10px; }
@media (min-width: 1024px) { .header-cta { display: flex; } }
.menu-toggle {
  display: block; background: transparent; border: none; padding: 8px; color: var(--ink); cursor: pointer;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.mobile-menu {
  display: none;
  padding: 20px 24px 30px;
  border-top: 1px solid var(--line);
  background: rgba(250,247,240,0.98);
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a { font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(26,26,26,0.75); }

/* =========== HERO =========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px; padding-bottom: 60px;
  overflow: hidden;
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-canvas canvas { display: block; }
.hero-fade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(250,247,240,0.4) 0%, transparent 40%, rgba(250,247,240,0.85) 100%);
}
.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; min-height: calc(100vh - 200px); }
.hero-h1 { max-width: 900px; margin-top: 24px; }
.hero-sub { max-width: 560px; margin-top: 32px; font-size: 1.1rem; color: var(--muted); line-height: 1.6; }
.hero-sub strong { color: var(--yellow-dark); font-weight: 600; }
.hero-actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(250,247,240,0.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.hero-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); text-align: center; }
@media (min-width: 768px) { .hero-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 20px 8px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
@media (max-width: 767px) { .stat:nth-child(2) { border-right: none; } .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line);} .stat:nth-child(3) { border-right: 1px solid var(--line); } }
.stat-val { font-family: var(--serif); font-size: 2rem; color: var(--yellow-dark); }
.stat-lbl { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* =========== MARQUEE =========== */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 20px 0;
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee span { font-family: var(--serif); font-size: 1.8rem; color: var(--ink); }
.marquee .dot { color: var(--yellow); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========== SECTIONS =========== */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-cream { background: var(--surface); }
.section-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 60px; }
@media (min-width: 768px) { .section-head.row { flex-direction: row; align-items: flex-end; justify-content: space-between; } }

/* =========== GRID CARDS =========== */
.grid { display: grid; gap: 12px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px;
  transition: transform .4s, border-color .3s, box-shadow .4s;
}
.card:hover { transform: translateY(-6px); border-color: var(--yellow); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--yellow-dark);
  background: rgba(245,184,0,0.12);
  border-radius: 6px;
  margin-bottom: 20px;
}
.card-title { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 8px; }
.card-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.card-num { font-family: var(--mono); font-size: 10px; color: rgba(26,26,26,0.35); }

/* Category tile — full-image with overlay */
.cat-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform .4s, border-color .3s, box-shadow .4s;
  display: block;
}
.cat-tile:hover { border-color: var(--yellow); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.cat-tile-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s;
}
.cat-tile:hover .cat-tile-img { transform: scale(1.06); }
.cat-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.25) 50%, rgba(26,26,26,0.1) 100%);
}
.cat-tile-content {
  position: absolute; inset: 0;
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff;
}
.cat-tile-badge {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--yellow);
  background: rgba(245,184,0,0.15);
  color: var(--yellow);
  backdrop-filter: blur(6px);
}
.cat-tile-name { font-family: var(--serif); font-size: 1.6rem; color: #fff; line-height: 1.1; }
.cat-tile-cta { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--yellow); margin-top: 6px; }

/* Product card */
.prod-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: block;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.prod-card:hover { border-color: var(--yellow); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.prod-card-img { aspect-ratio: 1/1; overflow: hidden; background: var(--surface); }
.prod-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; filter: saturate(0.9); }
.prod-card:hover .prod-card-img img { transform: scale(1.06); filter: saturate(1); }
.prod-card-body { padding: 20px; }
.prod-card-cat { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--yellow-dark); font-weight: 600; }
.prod-card-name { font-family: var(--serif); font-size: 1.1rem; margin-top: 6px; color: var(--ink); }
.prod-card-moq { font-size: 11px; color: var(--muted); margin-top: 6px; }

/* Filter chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 10px 18px; background: transparent; border: 1px solid rgba(26,26,26,0.15);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted);
  cursor: pointer; transition: all .3s;
}
.chip:hover { border-color: var(--yellow); color: var(--yellow-dark); }
.chip.active { background: var(--yellow); border-color: var(--yellow); color: var(--ink); font-weight: 700; }

/* Search */
.search-box {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); padding: 4px 14px;
  background: var(--paper);
  min-width: 280px;
}
.search-box input {
  background: transparent; border: none; padding: 10px 0;
  color: var(--ink); flex: 1; outline: none; font-family: var(--sans); font-size: 14px;
}
.search-box button {
  background: transparent; border: none; color: var(--yellow-dark);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700; cursor: pointer;
}

/* =========== TIMELINE =========== */
.timeline { position: relative; padding-left: 32px; border-left: 1px solid var(--line); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item::before {
  content: '';
  position: absolute; left: -41px; top: 4px;
  width: 16px; height: 16px; transform: rotate(45deg);
  background: var(--bg); border: 1px solid var(--yellow);
}
.timeline-year { font-family: var(--mono); font-size: 12px; letter-spacing: 0.3em; color: var(--yellow-dark); }
.timeline-title { font-family: var(--serif); font-size: 1.4rem; margin-top: 8px; }
.timeline-desc { color: var(--muted); font-size: 0.9rem; margin-top: 6px; max-width: 640px; }

/* =========== IMAGE FRAMES =========== */
.frame { border: 1px solid var(--line); overflow: hidden; position: relative; background: var(--paper); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-caption {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  display: flex; justify-content: space-between; align-items: flex-end;
  background: rgba(250,247,240,0.92); backdrop-filter: blur(10px);
  padding: 16px; border: 1px solid var(--line);
}

/* =========== COUNTRIES =========== */
.country-card {
  background: var(--paper); border: 1px solid var(--line);
  padding: 20px; transition: border-color .3s, transform .3s;
}
.country-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.country-flag { font-size: 2.2rem; }
.country-name { font-family: var(--serif); font-size: 1.1rem; margin-top: 12px; }
.country-tag { font-size: 10px; letter-spacing: 0.3em; color: var(--yellow-dark); font-family: var(--mono); margin-top: 4px; }

/* =========== CONTACT =========== */
.contact-info {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px; border: 1px solid var(--line); background: var(--paper);
}
.contact-info-icon { color: var(--yellow-dark); flex-shrink: 0; margin-top: 4px; }
.contact-info-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.contact-info-value { font-size: 14px; margin-top: 4px; color: var(--ink); }
.contact-info-value a { color: inherit; }

form.inquiry-form { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { form.inquiry-form { grid-template-columns: 1fr 1fr; } }
form.inquiry-form label { display: flex; flex-direction: column; gap: 8px; }
form.inquiry-form label.wide { grid-column: 1 / -1; }
form.inquiry-form span { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
form.inquiry-form input, form.inquiry-form textarea {
  background: var(--paper); border: 1px solid var(--line); padding: 12px 16px;
  font-family: var(--sans); font-size: 14px; color: var(--ink); outline: none;
  transition: border-color .3s;
}
form.inquiry-form input:focus, form.inquiry-form textarea:focus { border-color: var(--yellow); }
form.inquiry-form textarea { resize: vertical; min-height: 120px; }
form.inquiry-form .actions { grid-column: 1 / -1; display: flex; gap: 12px; flex-wrap: wrap; }

.map-wrap { border: 1px solid var(--line); aspect-ratio: 16/10; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.85); }

/* =========== CTA BANNER =========== */
.cta-banner {
  border: 1px solid rgba(245,184,0,0.4);
  padding: 60px 30px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(245,184,0,0.10), transparent 60%), var(--paper);
}
@media (min-width: 768px) { .cta-banner { padding: 90px 40px; } }
.cta-actions { margin-top: 32px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* =========== FOOTER =========== */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.72); margin-top: 100px;
}
.site-footer .container { padding-top: 70px; padding-bottom: 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand-text { color: rgba(255,255,255,0.65); font-size: 14px; margin-top: 20px; max-width: 480px; line-height: 1.6; }
.footer-heading { font-family: var(--serif); font-size: 1.2rem; color: #fff; margin-bottom: 16px; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-list a { color: rgba(255,255,255,0.72); transition: color .3s; }
.footer-list a:hover { color: var(--yellow); }
.footer-contact { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.footer-contact svg { color: var(--yellow); flex-shrink: 0; margin-top: 3px; }
.footer-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(245,184,0,0.7), transparent); margin: 40px 0 20px; }
.footer-bottom {
  display: flex; flex-direction: column; gap: 8px; padding-bottom: 24px;
  justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.2em; text-transform: uppercase;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-brand-inner { display: flex; align-items: center; gap: 12px; }
.footer-brand-inner .brand-mark { background-color: var(--yellow); }
.footer-brand-inner .brand-name { color: #fff; }
.footer-brand-inner .brand-tag { color: var(--yellow); }
.gst { font-family: var(--mono); color: rgba(255,255,255,0.5); font-size: 11px; margin-top: 24px; letter-spacing: 0.2em; }

/* =========== REVEAL ANIMATION =========== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Spin animation for globe fallback */
@keyframes slowspin { to { transform: rotate(360deg); } }
.slowspin { animation: slowspin 30s linear infinite; }

/* =========== PRODUCT DETAIL =========== */
.pd-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .pd-grid { grid-template-columns: 1.3fr 1fr; gap: 60px; } }
.pd-main-img { aspect-ratio: 1/1; border: 1px solid var(--line); overflow: hidden; background: var(--paper); }
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 10px; }
.pd-thumb { aspect-ratio: 1/1; border: 1px solid var(--line); cursor: pointer; overflow: hidden; }
.pd-thumb.active { border-color: var(--yellow); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-title { font-family: var(--serif); font-size: 2.5rem; line-height: 1.1; margin-top: 12px; }
.pd-cat { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--yellow-dark); font-weight: 600; }
.pd-desc { color: var(--muted); line-height: 1.65; margin-top: 24px; }
.pd-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.pd-meta-box { border: 1px solid var(--line); padding: 14px; background: var(--paper); }
.pd-meta-lbl { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.pd-meta-val { font-size: 14px; margin-top: 4px; }
.pd-specs { margin-top: 24px; border: 1px solid var(--line); background: var(--paper); }
.pd-specs .row { display: grid; grid-template-columns: 1fr 2fr; border-bottom: 1px solid var(--line); }
.pd-specs .row:last-child { border-bottom: none; }
.pd-specs .row div { padding: 12px 16px; font-size: 13px; }
.pd-specs .row .k { color: var(--muted); text-transform: uppercase; font-size: 11px; letter-spacing: 0.15em; }
.pd-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

/* =========== TOAST =========== */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  background: var(--ink); color: #fff; padding: 14px 20px;
  font-size: 13px; letter-spacing: 0.05em;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(20px); transition: opacity .3s, transform .3s;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { background: #B91C1C; }

/* =========== INDUSTRIES =========== */
.industries-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
@media (min-width: 640px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }
.industry-item {
  background: var(--paper); padding: 32px 20px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  transition: background .3s;
}
.industry-item:hover { background: rgba(245,184,0,0.08); }
.industry-item svg { color: var(--yellow-dark); }
.industry-item div { font-size: 13px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; color: var(--ink); }

/* =========== TESTIMONIALS =========== */
.testimonial-card {
  background: var(--paper); border: 1px solid var(--line);
  padding: 32px; display: flex; flex-direction: column; gap: 20px;
  transition: transform .4s, border-color .3s;
}
.testimonial-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.testimonial-stars { color: var(--yellow); letter-spacing: 2px; font-size: 16px; }
.testimonial-quote { font-family: var(--serif); font-size: 1.15rem; line-height: 1.5; color: var(--ink); font-style: italic; }
.testimonial-quote::before { content: '“'; font-size: 3rem; color: var(--yellow); line-height: 0; vertical-align: -10px; margin-right: 4px; }
.testimonial-author { display: flex; flex-direction: column; gap: 4px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.testimonial-author strong { font-family: var(--sans); font-size: 14px; font-weight: 600; }
.testimonial-author span { font-size: 12px; color: var(--muted); }
.testimonial-author em { font-family: var(--mono); font-size: 11px; color: var(--yellow-dark); font-style: normal; letter-spacing: 0.15em; }

/* =========== CERTIFICATIONS =========== */
.cert-strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
@media (min-width: 640px) { .cert-strip { grid-template-columns: repeat(4, 1fr); } }
.cert-item {
  background: var(--paper); padding: 28px 20px; text-align: center;
  display: flex; flex-direction: column; gap: 6px;
}
.cert-name { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); }
.cert-desc { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

/* =========== FAQ =========== */
.faq-item {
  border: 1px solid var(--line); background: var(--paper);
  padding: 0; margin-bottom: 8px; overflow: hidden;
  transition: border-color .3s;
}
.faq-item.open { border-color: var(--yellow); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 24px; cursor: pointer;
  font-family: var(--serif); font-size: 1.15rem; color: var(--ink);
  transition: color .3s;
}
.faq-q:hover { color: var(--yellow-dark); }
.faq-q .plus {
  width: 22px; height: 22px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow-dark); transition: transform .3s;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .5s ease, padding .3s ease;
  padding: 0 24px;
  color: var(--muted); font-size: 14.5px; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 24px; }

/* =========== PROCESS STEPS =========== */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-item {
  background: var(--paper); padding: 40px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.process-num { font-family: var(--mono); font-size: 11px; color: var(--yellow-dark); letter-spacing: 0.3em; }
.process-title { font-family: var(--serif); font-size: 1.35rem; }
.process-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.process-item svg { color: var(--yellow-dark); }

/* =========== CLIENTS LOGOS =========== */
.clients-strip {
  display: flex; flex-wrap: wrap; gap: 40px 60px;
  align-items: center; justify-content: center;
  padding: 40px 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  opacity: 0.7;
}
.clients-strip .client {
  font-family: var(--serif); font-size: 1.35rem; color: var(--muted);
  letter-spacing: 0.05em; font-style: italic;
  transition: color .3s;
}
.clients-strip .client:hover { color: var(--ink); }

/* =========== UTILITIES =========== */
.text-muted { color: var(--muted); }
.text-accent { color: var(--yellow-dark); }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; } .mt-10 { margin-top: 40px; } .mt-16 { margin-top: 64px; }
.mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 16px; }
.text-center { text-align: center; }
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: block; } }
.divider { height: 1px; background: var(--line); margin: 40px 0; }
.badge-live { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--yellow-dark); font-family: var(--mono); }

/* =========== BREADCRUMB / BACK =========== */
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 24px; transition: color .3s;
}
.back-link:hover { color: var(--yellow-dark); }

/* =========== ABOUT SPECIFIC =========== */
.stat-block { border: 1px solid var(--line); padding: 30px; background: var(--paper); }
.stat-block .num { font-family: var(--serif); font-size: 2.6rem; color: var(--yellow-dark); }
.stat-block .lbl { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
