/* 
=========================================================
ADYA SPACE — PRODUCTION CSS v4.0
Fix: Pricing grid, form feedback, WA float, partner section
=========================================================
*/

:root {
  --navy-dark: #0f172a;
  --navy-secondary: #1e293b;
  --navy-accent: #1e3a8a;
  --gold-accent: #d4a017;
  --gold-hover: #e5a800;
  --soft-cream: #fde68a;
  --white: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --section-pad: clamp(56px, 8vw, 96px);
  --container-width: 1200px;
}

[data-theme='dark'] {
  --bg: #020617;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --card: #0f172a;
  --border: #1e293b;
  --shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* 1. Base Reset */
*, *::before, *::after { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.25; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; transition: .25s ease; }
img { max-width: 100%; height: auto; display: block; }

.container { width: min(var(--container-width), 92%); margin-inline: auto; }
.section { padding: var(--section-pad) 0; position: relative; }
.section-title { font-size: clamp(28px, 4vw, 44px); text-align: center; margin-bottom: 12px; }
.section-sub { font-size: clamp(15px, 1.2vw, 17px); color: var(--muted); text-align: center; max-width: 720px; margin: 0 auto 48px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-gold { color: var(--gold-accent); }

/* 2. Loader */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #020617; display: grid; place-items: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { width: min(300px, 80vw); text-align: center; }
.loader-brand img { width: 160px; margin: 0 auto 24px; filter: drop-shadow(0 0 20px rgba(212,160,23,0.3)); }
.loader-line { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.loader-line span { display: block; height: 100%; width: 40%; background: var(--gold-accent); animation: load 1.5s infinite ease-in-out; }
@keyframes load { 0% { transform: translateX(-100%); } 100% { transform: translateX(300%); } }

/* 3. Header & Navigation */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(2,6,23,0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease, background 0.3s ease;
}
.nav-wrap { height: 72px; display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 49px; width: auto; }

nav { display: flex; align-items: center; gap: 24px; }
nav > a, .mega-trigger { font-weight: 600; font-size: 14.5px; color: #f1f5f9; opacity: 0.85; }
nav > a:hover, .mega-trigger:hover, nav > a.active { opacity: 1; color: var(--gold-accent); }

.mega-item { position: relative; height: 100%; display: flex; align-items: center; }
.mega-trigger { background: transparent; border: 0; cursor: pointer; display: flex; align-items: center; gap: 6px; }
.mega-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  width: min(1000px, 94vw); background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 24px;
  opacity: 0; visibility: hidden; transition: .3s ease; z-index: 1100;
}
.mega-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.mega-service-card {
  padding: 16px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: var(--bg); transition: .2s ease;
}
.mega-service-card:hover { border-color: var(--gold-accent); transform: translateY(-3px); }
.mega-service-card i { font-size: 20px; color: var(--gold-accent); margin-bottom: 12px; }
.mega-service-card h4 { font-size: 15px; color: var(--text); margin-bottom: 4px; }
.mega-service-card p { font-size: 13px; color: var(--muted); }

.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-mini-toggle { background: transparent; border: 0; color: #fff; cursor: pointer; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); right: 0; min-width: 220px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); padding: 8px; display: none; z-index: 1100;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; animation: slideIn .2s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.nav-dropdown-menu a, .nav-dropdown-menu button {
  width: 100%; padding: 10px 14px; border-radius: 6px; font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 10px; color: var(--text); border: 0; background: transparent; cursor: pointer;
}
.nav-dropdown-menu a:hover, .nav-dropdown-menu button:hover { background: var(--bg); color: var(--gold-accent); }

.mobile-toggle { display: none; background: rgba(255,255,255,0.1); border: 0; color: #fff; border-radius: 8px; width: 40px; height: 40px; cursor: pointer; }

@media (max-width: 992px) {
  .mobile-toggle { display: grid; place-items: center; }
  nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--navy-dark); flex-direction: column; padding: 32px;
    align-items: flex-start; transform: translateX(100%); transition: .4s cubic-bezier(0.77,0.2,0.05,1);
    overflow-y: auto; z-index: 999;
  }
  nav.show { transform: translateX(0); }
  .mega-menu { position: static; transform: none; width: 100%; display: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding: 12px 0; }
  .mega-item.open .mega-menu { display: block; }
  .mega-services-grid { grid-template-columns: 1fr; }
  .nav-dropdown-menu { position: static; transform: none; box-shadow: none; border: 0; width: 100%; display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  nav > a, .mega-trigger, .nav-mini-toggle { font-size: 18px; width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
}

/* 4. Hero */
.hero {
  padding: 160px 0 80px;
  background: linear-gradient(rgba(2,6,23,0.82), rgba(2,6,23,0.82)),
              url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1700&q=80') center/cover no-repeat;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.4);
  color: var(--soft-cream); font-size: 13px; font-weight: 700; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 { font-size: clamp(32px, 5vw, 60px); color: #fff; margin-bottom: 20px; line-height: 1.1; }
.hero p { font-size: clamp(16px, 1.2vw, 19px); color: #cbd5e1; margin-bottom: 32px; max-width: 600px; }
.glass-card {
  padding: 32px; background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.glass-card h3 { color: var(--gold-accent); margin-bottom: 16px; font-size: 20px; }
.glass-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.glass-card li { display: flex; gap: 12px; font-size: 15px; color: #e2e8f0; }
.glass-card li::before { content: '✓'; color: var(--gold-accent); font-weight: 900; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 992px) {
  .hero { padding: 120px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-inline: auto; }
  .actions { justify-content: center; }
  .glass-card { text-align: left; }
}

/* 5. Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px;
  border-radius: 10px; font-weight: 700; font-size: 15.5px; transition: .25s ease;
  cursor: pointer; border: 1.5px solid transparent;
}
.btn-primary { background: var(--gold-accent); color: #020617; }
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(212,160,23,0.3); }
.btn-outline { border-color: var(--gold-accent); color: var(--gold-accent); background: transparent; }
.btn-outline:hover { background: rgba(212,160,23,0.05); transform: translateY(-2px); }
.btn-nav { background: var(--gold-accent); color: #020617; border-radius: 999px; padding: 10px 20px; font-size: 14px; }

/* 6. Process Section */
.process-wrap {
  padding: 64px 48px; background: linear-gradient(145deg, #0f172a, #020617);
  border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.05);
  box-shadow: var(--shadow-lg); color: #fff;
}
.process-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.4); color: var(--soft-cream); font-size: 12px; font-weight: 700; border-radius: 999px; margin-bottom: 16px; }
.process-title { font-size: clamp(24px,3.5vw,38px); margin-bottom: 8px; }
.process-sub { color: #94a3b8; margin-bottom: 0; font-size: 15px; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; margin-top: 48px; }
.process-steps::before {
  content: ''; position: absolute; top: 34px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent); opacity: 0.3;
}
.process-num {
  width: 68px; height: 68px; background: var(--gold-accent); color: #020617;
  font-size: 28px; font-weight: 800; border-radius: 50%; display: grid; place-items: center;
  margin: 0 auto 24px; position: relative; z-index: 2; box-shadow: 0 0 0 10px rgba(212,160,23,0.1);
}
.process-step h3 { font-size: 20px; margin-bottom: 12px; }
.process-step p { font-size: 14.5px; color: #94a3b8; }

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 24px; }
  .process-step:last-child { border: 0; padding-bottom: 0; }
}

/* 7. Cards & Grid */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm); transition: .3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--gold-accent); }
.card i { font-size: 32px; color: var(--gold-accent); margin-bottom: 20px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15px; }

/* 8. Stats */
.stats-modern-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stats-modern-card {
  background: var(--card); padding: 32px 24px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.stats-modern-value { font-size: 48px; color: var(--gold-accent); margin-bottom: 8px; }
.stats-modern-label { font-weight: 600; color: var(--muted); }

@media (max-width: 768px) { .stats-modern-grid { grid-template-columns: repeat(2,1fr); } .stats-modern-value { font-size: 36px; } }
@media (max-width: 480px) { .stats-modern-grid { grid-template-columns: 1fr 1fr; } }

/* 9. Contact Form — dengan feedback visual */
form {
  display: grid; gap: 20px; max-width: 800px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, textarea, select {
  width: 100%;
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 8px;
  padding: 14px 16px; color: var(--text); font-family: inherit; font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold-accent); outline: 0;
  box-shadow: 0 0 0 4px rgba(212,160,23,0.12);
}
textarea { min-height: 160px; resize: vertical; grid-column: span 2; }

/* Contact status feedback */
.contact-status {
  max-width: 800px; margin: 0 auto 16px;
  padding: 14px 20px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; text-align: center;
  animation: fadeInDown .3s ease;
}
.contact-status[data-state="success"] {
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.4); color: #16a34a;
}
.contact-status[data-state="error"] {
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.35); color: #dc2626;
}
[data-theme='dark'] .contact-status[data-state="success"] { color: #4ade80; }
[data-theme='dark'] .contact-status[data-state="error"]   { color: #fca5a5; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* Submit button loading state */
button[type="submit"].loading {
  opacity: 0.75; cursor: not-allowed; pointer-events: none;
}
button[type="submit"].loading::after {
  content: ''; display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(0,0,0,0.3); border-top-color: #020617;
  border-radius: 50%; animation: spin .6s linear infinite; margin-left: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Honeypot hide */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } textarea { grid-column: auto; } }

/* 10. Footer */
.footer-bri {
  background: var(--card); border-top: 1px solid var(--border); padding-top: 64px;
}
.footer-bri-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; padding: 0 5%; }
.footer-bri-section h4 { font-size: 13px; color: var(--navy-accent); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
[data-theme='dark'] .footer-bri-section h4 { color: var(--gold-accent); }
.footer-address-block { font-size: 14px; color: var(--muted); display: grid; gap: 12px; }
.footer-address-row { display: flex; gap: 8px; align-items: flex-start; }
.footer-company-name { font-weight: 700; color: var(--text); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-contact-list a { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.footer-contact-list a:hover { color: var(--gold-accent); }
.footer-bri-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-bri-links a { font-size: 14px; color: var(--muted); }
.footer-bri-links a:hover { color: var(--gold-accent); }
.footer-bri-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-bri-socials a { width: 36px; height: 36px; border-radius: 8px; background: var(--bg); display: grid; place-items: center; color: var(--muted); border: 1px solid var(--border); }
.footer-bri-socials a:hover { background: var(--gold-accent); color: #fff; border-color: var(--gold-accent); }
.footer-info-block { display: grid; gap: 12px; }
.footer-info-card { font-size: 13px; color: var(--muted); line-height: 1.65; padding: 12px; background: var(--bg); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.footer-maps-embed { margin-top: 12px; border-radius: var(--radius-sm); overflow: hidden; }
.footer-maps-embed iframe { width: 100%; height: 180px; border: 0; display: block; }
.footer-bri-bottom { background: var(--navy-dark); padding: 24px 5%; color: #94a3b8; font-size: 13.5px; }
.footer-bri-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; max-width: var(--container-width); margin: 0 auto; }
.footer-bri-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bri-bottom-links a { color: #94a3b8; font-size: 13px; }
.footer-bri-bottom-links a:hover { color: var(--gold-accent); }
.footer-bri-bottom-links .sep { color: #475569; }

@media (max-width: 992px) { .footer-bri-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .footer-bri-main { grid-template-columns: 1fr; padding: 0 4%; }
  .footer-bri-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bri-bottom-links { justify-content: center; }
}

/* 11. Theme & Utils */
.theme-toggle { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; cursor: pointer; display: grid; place-items: center; }

/* WhatsApp float — FIXED: tidak menutupi konten di mobile */
.wa-float {
  position: fixed; right: 24px; bottom: 28px;
  width: 56px; height: 56px; background: #25d366; color: #fff;
  border-radius: 50%; display: grid; place-items: center; font-size: 28px;
  box-shadow: 0 8px 20px rgba(37,211,102,0.45); z-index: 997;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 28px rgba(37,211,102,0.55); }

@media (max-width: 576px) {
  .wa-float { right: 16px; bottom: 20px; width: 50px; height: 50px; font-size: 24px; }
  /* Berikan ruang extra padding bottom di section terakhir agar tidak tertutup */
  #contact { padding-bottom: 96px; }
}

/* 12. Swiper overrides */
.swiper-pagination-bullet-active { background: var(--gold-accent) !important; }
.testi-slider-wrap { padding-bottom: 60px; }

/* 13. Pricing Showcase — FIXED: grid simetris */
.pricing-showcase { background: var(--bg); }
.pricing-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.3); color: var(--gold-accent); font-size: 12px; font-weight: 700; border-radius: 999px; margin-bottom: 16px; }
.pricing-chip-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.pricing-chip-tab {
  padding: 10px 20px; border-radius: 999px; background: var(--card);
  border: 1.5px solid var(--border); font-weight: 700; font-size: 14px;
  color: var(--muted); cursor: pointer; transition: .2s ease; white-space: nowrap;
}
.pricing-chip-tab.active { background: var(--gold-accent); color: #020617; border-color: var(--gold-accent); }
.pricing-chip-tab:hover:not(.active) { border-color: var(--gold-accent); color: var(--gold-accent); }

/* Pricing card grid — FIXED untuk selalu rata */
.pricing-slider-wrap { position: relative; padding-bottom: 40px; }
.price-service-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: .3s ease;
  display: flex; flex-direction: column; height: 100%;
  position: relative;
}
.price-service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-accent); }
.price-badge-pill {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  padding: 4px 12px; background: var(--gold-accent); color: #020617;
  font-size: 12px; font-weight: 800; border-radius: 999px;
}
.price-service-media { width: 100%; height: 200px; overflow: hidden; }
.price-service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.price-service-card:hover .price-service-media img { transform: scale(1.04); }
.price-service-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.price-service-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.price-service-desc { font-size: 14px; color: var(--muted); margin-bottom: 20px; flex: 1; line-height: 1.6; }
.price-start { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.price-value-wrap { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; }
.price-value { font-size: 26px; font-weight: 800; color: var(--gold-accent); }
.price-period { font-size: 14px; color: var(--muted); }
.price-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; background: var(--gold-accent); color: #020617;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 14px;
  transition: .2s ease; margin-top: auto;
}
.price-cta:hover { background: var(--gold-hover); transform: translateY(-1px); }

/* 14. Partner/Client marquee — IMPROVED */
.partners-section {
  padding: 32px 0; background: var(--bg);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.partners-label {
  text-align: center; font-size: 12px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
}
.partners-track {
  display: flex; gap: 48px; align-items: center;
  animation: marquee 28s linear infinite; width: max-content;
}
.partners-track:hover { animation-play-state: paused; }
.partner-item {
  padding: 8px 20px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; color: var(--muted); white-space: nowrap;
  background: var(--card); transition: .2s;
}
.partner-item:hover { border-color: var(--gold-accent); color: var(--gold-accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* 15. Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.portfolio-card { background: var(--card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.portfolio-card-icon { padding: 20px 24px; background: var(--navy-dark); color: #fff; display: flex; align-items: center; gap: 14px; }
.pi-icon { width: 48px; height: 48px; background: rgba(212,160,23,0.12); border: 1px solid var(--gold-accent); border-radius: 10px; display: grid; place-items: center; font-size: 18px; color: var(--gold-accent); flex-shrink: 0; }
.pi-tag { font-size: 11px; font-weight: 700; color: var(--gold-accent); letter-spacing: 1px; margin-bottom: 2px; }
.pi-cat { font-size: 13px; color: #94a3b8; }
.portfolio-metric { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.pm-number { font-size: 36px; font-weight: 800; color: var(--gold-accent); line-height: 1; }
.pm-label { font-size: 13px; color: var(--muted); margin-top: 4px; }
.portfolio-body { padding: 20px 24px; }
.portfolio-body h3 { font-size: 17px; margin-bottom: 8px; }
.portfolio-body p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.portfolio-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.portfolio-tag { padding: 4px 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; font-size: 12px; font-weight: 600; color: var(--muted); }

/* 16. Testimonials */
.testi-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.testi-stars { color: var(--gold-accent); font-size: 16px; margin-bottom: 16px; }
.testi-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-accent); color: #020617; display: grid; place-items: center; font-size: 16px; font-weight: 800; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 15px; }
.testi-role { font-size: 13px; color: var(--muted); }

/* 17. FAQ */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--card); overflow: hidden; margin-bottom: 10px; }
.faq-q { width: 100%; padding: 18px 24px; background: none; border: 0; text-align: left; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 15px; color: var(--text); transition: color .2s; }
.faq-q:hover { color: var(--gold-accent); }
.faq-chevron { transition: transform .35s ease; color: var(--gold-accent); flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; padding: 0 24px; }
.faq-item.active .faq-a { max-height: 600px; padding-bottom: 20px; }
.faq-item.active .faq-q { color: var(--gold-accent); }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-a p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* 18. Responsive global */
@media (max-width: 576px) {
  .section { padding: 48px 0; }
  .logo img { height: 40px; }
  .btn { padding: 11px 20px; font-size: 14.5px; }
  .hero h1 { font-size: 30px; }
  .process-wrap { padding: 32px 20px; }
  form { padding: 24px; }
  .footer-bri { padding-top: 40px; }
}

/* 19. Service link */
.svc-price-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; color: var(--gold-accent); font-weight: 600; font-size: 14px;
}
.svc-price-link:hover { gap: 10px; }

/* 20. Legacy class compatibility */
.testimonial-card { /* legacy alias */
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.testimonial-card .stars { color: var(--gold-accent); font-size: 16px; margin-bottom: 16px; }
.testimonial-card p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-card .testimonial-user { display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-accent); color: #020617; display: grid; place-items: center; font-size: 15px; font-weight: 800; flex-shrink: 0; }
.testimonial-card h4 { font-weight: 700; font-size: 15px; margin: 0; }
.testimonial-card span { font-size: 13px; color: var(--muted); }

/* Logo chip / partner chip legacy */
.logo-chip, .partner-item {
  padding: 8px 20px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; color: var(--muted); white-space: nowrap;
  background: var(--card); transition: .2s; display: inline-flex; align-items: center; gap: 8px;
}
.logo-chip:hover, .partner-item:hover { border-color: var(--gold-accent); color: var(--gold-accent); }

.logo-marquee, .logo-track-wrap { overflow: hidden; }
.logo-track, .partners-track {
  display: flex; gap: 40px; align-items: center;
  animation: marquee 30s linear infinite; width: max-content;
}
.logo-track:hover, .partners-track:hover { animation-play-state: paused; }

/* Pricing showcase head */
.pricing-showcase-head { text-align: center; margin-bottom: 0; }
.pricing-showcase-head .section-title { margin-top: 8px; }

/* Section badge */
.pricing-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3); color: var(--gold-accent);
  font-size: 12px; font-weight: 700; border-radius: 999px; margin-bottom: 12px;
}
