/* ══════════════════════════════════════════════
   LOOPY MEDIA — styles.css
══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

:root {
  --yellow:       #FFC200;
  --yellow-lt:    #FFD84D;
  --yellow-dim:   rgba(255,194,0,0.12);
  --black:        #0A0A0A;
  --dark:         #111111;
  --dark2:        #181818;
  --dark3:        #242424;
  --white:        #F5F0E8;
  --white-muted:  rgba(245,240,232,0.6);
  --muted:        #666;
  --border:       rgba(255,255,255,0.07);
  --wa-green:     #25D366;

  --font-display: 'Bebas Neue', sans-serif;
  --font-head:    'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --ease:         cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in:      cubic-bezier(0.55, 0, 1, 0.45);
  --radius:       16px;
  --radius-sm:    10px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  cursor: none;
  line-height: 1.65;
}

@media (max-width: 768px) { body { cursor: auto; } }

::-webkit-scrollbar              { width: 4px; }
::-webkit-scrollbar-track        { background: var(--dark); }
::-webkit-scrollbar-thumb        { background: var(--yellow); border-radius: 2px; }

img, svg { display: block; max-width: 100%; }
a        { color: inherit; text-decoration: none; }
button   { font-family: var(--font-body); border: none; background: none; cursor: pointer; }
input, textarea, select { font-family: var(--font-body); }
ul { list-style: none; }

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 7rem 0;
  position: relative;
  overflow-x: clip;
}

/* ══════════════════════════════════════════════
   CURSOR
══════════════════════════════════════════════ */
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.08s var(--ease), opacity 0.3s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(255,194,0,0.6);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.32s var(--ease), width 0.25s, height 0.25s, opacity 0.3s;
}
body:hover .cursor-dot  { opacity: 1; }
body:hover .cursor-ring { opacity: 1; }

/* ══════════════════════════════════════════════
   NAVBAR + scroll progress line
══════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.9rem 5%;
}

@media (max-width: 900px) {
  #navbar { padding: 1rem 1.2rem; }
  #navbar.scrolled { padding: 0.8rem 1.2rem; }
}

@media (max-width: 480px) {
  #navbar { padding: 0.85rem 1rem; }
  #navbar.scrolled { padding: 0.75rem 1rem; }
  .nav-logo { gap: 0.5rem; }
  .logo-mark { width: 32px; height: 32px; }
  .logo-text { font-size: 0.88rem; }
  .hamburger { padding: 4px; flex-shrink: 0; }
}

/* Animated line under navbar */
.nav-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: rgba(255,255,255,0.05);
}
.nav-line-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-lt), var(--yellow));
  background-size: 200% 100%;
  box-shadow: 0 0 12px rgba(255,194,0,0.5);
  animation: shimmer 3s linear infinite;
  transition: width 0.1s linear;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.nav-logo {
  display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0;
}
.logo-mark { width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; overflow: hidden; }
.logo-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo-text {
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  letter-spacing: 0.04em; color: var(--white);
}
.logo-text span { color: var(--yellow); }

.nav-links {
  display: flex; align-items: center; gap: 1.6rem; list-style: none;
}
.nav-links a {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white-muted); transition: color 0.22s;
}
.nav-links a:hover { color: var(--yellow); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 60px !important;
  font-weight: 700 !important;
  transition: background 0.22s, transform 0.22s !important;
}
.nav-cta:hover {
  background: var(--yellow-lt) !important;
  transform: scale(1.04) !important;
  color: var(--black) !important;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; z-index: 210; background: none; border: none; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: var(--black);
  flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
  padding: 2rem;
}
.mobile-menu.open { display: flex; opacity: 1; pointer-events: all; }
.mob-link {
  font-family: var(--font-display); font-size: clamp(2rem, 8vw, 3.4rem);
  color: var(--white); letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mob-link:hover { color: var(--yellow); }
.mob-cta {
  margin-top: 1rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  background: var(--yellow); color: var(--black);
  padding: 0.9rem 2.5rem; border-radius: 60px;
  transition: background 0.22s, transform 0.22s;
}
.mob-cta:hover { background: var(--yellow-lt); transform: scale(1.03); }

/* ══════════════════════════════════════════════
   REUSABLE
══════════════════════════════════════════════ */
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block; width: 22px; height: 1.5px; background: var(--yellow);
}

.section-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 1.2rem;
}
.section-title span { color: var(--yellow); }

.section-sub {
  font-size: clamp(0.95rem, 2vw, 1.05rem); color: var(--white-muted);
  max-width: 520px; line-height: 1.7;
}

.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-label::before { display: none; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem; justify-content: center;
  background: var(--yellow); color: var(--black);
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  padding: 0.85rem 1.8rem; border-radius: 60px;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  white-space: nowrap; cursor: pointer; border: 2px solid var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,194,0,0.25);
}
.btn-primary.full { width: 100%; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem; justify-content: center;
  background: transparent; color: var(--white);
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  padding: 0.85rem 1.8rem; border-radius: 60px;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: border-color 0.22s, color 0.22s, transform 0.22s;
  white-space: nowrap; cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--yellow); color: var(--yellow);
  transform: translateY(-2px);
}
.btn-ghost.full { width: 100%; }
.btn-sm { font-size: 0.82rem; padding: 0.65rem 1.3rem; }

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════
   INNER PAGE — SHARED STYLES
══════════════════════════════════════════════ */

/* Page Hero Banner */
.page-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(180deg, rgba(255,194,0,0.04) 0%, var(--dark) 100%);
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,194,0,0.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem;
  font-family: var(--font-head); letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--yellow); text-decoration: none; transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb span { color: var(--muted); }

.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400; letter-spacing: 0.03em; line-height: 1.1;
  margin-bottom: 1rem; color: var(--white);
}
.page-hero h1 span { color: var(--yellow); }
.page-hero .page-subtitle {
  font-size: 1.05rem; color: var(--white-muted); max-width: 600px;
  margin: 0 auto; line-height: 1.7;
}

/* Alternating Content Sections */
.alt-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.alt-section:last-child { border-bottom: none; }
.alt-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.alt-grid.reversed { direction: rtl; }
.alt-grid.reversed > * { direction: ltr; }
.alt-image {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/10; position: relative;
}
.alt-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease); filter: brightness(0.85);
}
.alt-image:hover img { transform: scale(1.05); filter: brightness(1); }
.alt-image::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(255,194,0,0.1); border-radius: var(--radius);
  pointer-events: none;
}
.alt-content h2 {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 700;
  margin-bottom: 1rem; color: var(--white); line-height: 1.3;
}
.alt-content h2 span { color: var(--yellow); }
.alt-content p {
  font-size: 0.95rem; color: var(--white-muted); line-height: 1.75;
  margin-bottom: 1.5rem;
}
.alt-content .feature-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.alt-content .feature-list li {
  font-size: 0.88rem; color: var(--white-muted);
  padding-left: 1.6rem; position: relative;
}
.alt-content .feature-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--yellow); font-weight: 700;
}
.price-badge {
  display: inline-block;
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255,194,0,0.1); border: 1px solid rgba(255,194,0,0.2);
  color: var(--yellow); padding: 0.3rem 1rem; border-radius: 60px;
  margin-bottom: 1.5rem;
}

/* Value / Feature Grid */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.value-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  border-color: rgba(255,194,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.25);
}
.value-card-image {
  width: 100%; aspect-ratio: 16/10; overflow: hidden; position: relative;
}
.value-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; filter: brightness(0.8);
}
.value-card:hover .value-card-image img { transform: scale(1.06); filter: brightness(1); }
.value-card-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, var(--dark2), transparent);
}
.value-card-body { padding: 1.2rem 1.4rem 1.6rem; }
.value-card h4 {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  margin-bottom: 0.5rem; color: var(--white);
}
.value-card p { font-size: 0.82rem; color: var(--white-muted); line-height: 1.65; }

/* Stats Row */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  padding: 4rem 0; text-align: center;
}
.stat-item {}
.stat-value {
  font-family: var(--font-display); font-size: 3rem;
  color: var(--yellow); line-height: 1;
}
.stat-suffix { font-size: 1.5rem; }
.stat-label {
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 600;
  color: var(--white-muted); margin-top: 0.5rem; letter-spacing: 0.03em;
}

/* Page CTA Section */
.page-cta {
  padding: 6rem 0; text-align: center;
  background: linear-gradient(180deg, var(--dark) 0%, rgba(255,194,0,0.04) 100%);
}
.page-cta h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white); margin-bottom: 1rem;
}
.page-cta h2 span { color: var(--yellow); }
.page-cta p {
  font-size: 1rem; color: var(--white-muted); max-width: 540px;
  margin: 0 auto 2rem; line-height: 1.7;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Founder Section */
.founder-section { padding: 5rem 0; }
.founder-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 3rem;
  align-items: center; background: var(--dark2);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 3rem; overflow: hidden;
}
.founder-photo {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius);
  overflow: hidden;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-info h3 {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.3rem;
}
.founder-info .founder-title {
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 600;
  color: var(--yellow); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.founder-info p { font-size: 0.92rem; color: var(--white-muted); line-height: 1.7; }

/* Contact Grid */
.contact-page-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start;
}
.contact-form-card, .contact-info-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
}
.contact-form-card h3, .contact-info-card h3 {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.5rem;
}
.info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.info-item:last-child { border-bottom: none; }
.info-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,194,0,0.08); border: 1px solid rgba(255,194,0,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); flex-shrink: 0; font-size: 1.2rem;
}
.info-text h4 {
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.2rem;
}
.info-text p, .info-text a {
  font-size: 0.85rem; color: var(--white-muted);
  text-decoration: none; transition: color 0.2s;
}
.info-text a:hover { color: var(--yellow); }

/* Process Steps (horizontal) */
.process-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  padding: 4rem 0;
}
.process-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.process-card:hover { border-color: rgba(255,194,0,0.3); transform: translateY(-3px); }
.process-num {
  font-family: var(--font-display); font-size: 2.5rem;
  color: var(--yellow); line-height: 1; margin-bottom: 0.8rem;
}
.process-card h4 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.5rem;
}
.process-card p { font-size: 0.82rem; color: var(--white-muted); line-height: 1.65; }

/* Mini FAQ */
.mini-faq { padding: 3rem 0; }
.mini-faq-item {
  border-bottom: 1px solid var(--border); padding: 1.5rem 0;
  cursor: pointer;
}
.mini-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: var(--white);
}
.mini-faq-q::after { content: '+'; color: var(--yellow); font-size: 1.3rem; transition: transform 0.3s; }
.mini-faq-item.open .mini-faq-q::after { transform: rotate(45deg); }
.mini-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.88rem; color: var(--white-muted); line-height: 1.7;
}
.mini-faq-item.open .mini-faq-a { max-height: 200px; padding-top: 1rem; }

/* Trust Signals Row */
.trust-row {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  padding: 3rem 0;
}
.trust-item {
  text-align: center; font-family: var(--font-head);
}
.trust-item .trust-icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.trust-item h4 {
  font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem;
}
.trust-item p { font-size: 0.78rem; color: var(--white-muted); }

/* Map Container */
.map-container {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); margin-top: 1.5rem;
}
.map-container iframe {
  width: 100%; height: 300px; border: none;
  filter: invert(0.9) hue-rotate(180deg) brightness(0.8) contrast(1.2);
}

/* Inner Page Responsive */
@media (max-width: 1100px) {
  .page-hero { padding: 8rem 0 3rem; }
  .page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
  .alt-grid { gap: 3rem; }
  .alt-content h2 { font-size: 1.5rem; }
}

@media (max-width: 900px) {
  .page-hero { padding: 7rem 0 2.5rem; }
  .page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
  .page-hero .page-subtitle { font-size: 0.95rem; padding: 0 1rem; }
  .breadcrumb { font-size: 0.75rem; }

  .alt-grid { grid-template-columns: 1fr; gap: 2rem; }
  .alt-grid.reversed { direction: ltr; }
  .alt-image { aspect-ratio: 16/9; max-height: 300px; }
  .alt-content h2 { font-size: 1.4rem; }
  .alt-content p { font-size: 0.9rem; }

  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-value { font-size: 2.2rem; }
  .stat-label { font-size: 0.78rem; }

  .founder-card { grid-template-columns: 1fr; text-align: center; padding: 2rem; gap: 2rem; }
  .founder-photo { max-width: 180px; margin: 0 auto; }
  .founder-info h3 { font-size: 1.3rem; }

  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-form-card, .contact-info-card { padding: 1.5rem; }

  .process-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .process-card { padding: 1.5rem 1rem; }
  .process-num { font-size: 2rem; }

  .page-cta { padding: 4rem 0; }
  .page-cta h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
  .page-cta p { font-size: 0.9rem; padding: 0 1rem; }
  .cta-buttons { flex-direction: column; align-items: center; padding: 0 1rem; }
  .cta-buttons .btn-primary, .cta-buttons .btn-ghost { width: 100%; text-align: center; justify-content: center; }

  .trust-row { gap: 1.5rem; }

  .mini-faq-q { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .page-hero { padding: 6rem 0 2rem; }
  .page-hero h1 { font-size: 2rem; letter-spacing: 0.01em; }
  .page-hero .page-subtitle { font-size: 0.88rem; }

  .values-grid { grid-template-columns: 1fr; }
  .value-card-body { padding: 1rem; }

  .stats-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-value { font-size: 1.8rem; }
  .stat-label { font-size: 0.72rem; }

  .process-row { grid-template-columns: 1fr; }

  .founder-card { padding: 1.5rem; }
  .founder-photo { max-width: 140px; }

  .alt-image { aspect-ratio: 16/9; max-height: 220px; }
  .alt-content h2 { font-size: 1.25rem; }
  .alt-content p { font-size: 0.85rem; }
  .alt-content .feature-list li { font-size: 0.82rem; }
  .price-badge { font-size: 0.68rem; }

  .contact-form-card, .contact-info-card { padding: 1.2rem; }
  .info-icon { width: 36px; height: 36px; border-radius: 10px; font-size: 1rem; }

  .trust-row { flex-direction: column; gap: 1.5rem; }

  .map-container iframe { height: 200px; }
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 0 5%; padding-top: 90px;
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; top: 30%; right: 10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,194,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-rings {
  position: absolute; right: -8%; top: 50%;
  transform: translateY(-50%);
  width: min(55vw, 620px); height: min(55vw, 620px);
  pointer-events: none;
}
.ring {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spinRing linear infinite;
}
.ring::after {
  content: ''; position: absolute;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
  top: 0; left: 50%; transform: translateX(-50%);
  box-shadow: 0 0 12px var(--yellow);
}
.ring-1 { width:100%; height:100%; border:1px solid rgba(255,194,0,0.12); animation-duration:50s; }
.ring-2 { width:76%; height:76%; border:1px solid rgba(255,194,0,0.15); animation-duration:35s; animation-direction:reverse; }
.ring-3 { width:52%; height:52%; border:1px solid rgba(255,194,0,0.22); animation-duration:22s; }
.ring-4 { width:28%; height:28%; border:2px solid rgba(255,194,0,0.45); animation-duration:13s; animation-direction:reverse; background: rgba(255,194,0,0.04); }
@keyframes spinRing {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-content { position: relative; z-index: 2; max-width: 660px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,194,0,0.08); border: 1px solid rgba(255,194,0,0.22);
  border-radius: 60px; padding: 0.4rem 1rem;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 600;
  color: var(--yellow); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 2rem;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 0.95; letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.6rem;
}
.hero-title-accent { color: var(--yellow); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--white-muted); line-height: 1.75;
  max-width: 500px; margin-bottom: 2.5rem;
}
.hero-sub strong { color: var(--white); font-weight: 500; }

.hero-actions {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* ══════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  background: var(--yellow);
  padding: 0.9rem 0;
  position: relative;
}
.ticker-track {
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--black);
}
.ticker-dot { color: var(--black) !important; font-size: 0.6rem !important; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
#services { background: var(--dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  border-color: rgba(255,194,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0; transition: opacity 0.3s;
  z-index: 2;
}
.service-card:hover::before { opacity: 1; }

/* Service card image */
.sc-image {
  width: 100%; aspect-ratio: 16/10; overflow: hidden;
  position: relative; background: var(--dark3);
}
.sc-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s;
  filter: brightness(0.85);
}
.service-card:hover .sc-image img {
  transform: scale(1.08);
  filter: brightness(1);
}
.sc-image::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(to top, var(--dark2), transparent);
  pointer-events: none;
}

/* Service card body */
.sc-body { padding: 1.5rem 2rem 2rem; }

.service-card h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 0.7rem; color: var(--white);
}
.service-card p { font-size: 0.9rem; color: var(--white-muted); line-height: 1.65; margin-bottom: 1.2rem; }

.sc-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.sc-list li {
  font-size: 0.72rem; font-family: var(--font-head); font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 60px; padding: 0.25rem 0.7rem; color: var(--white-muted);
}

.sc-tag {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-family: var(--font-head); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--yellow); color: var(--black);
  padding: 0.2rem 0.7rem; border-radius: 60px;
  z-index: 3;
}

.sc-featured {
  border-color: rgba(255,194,0,0.2);
  background: linear-gradient(135deg, rgba(255,194,0,0.06) 0%, var(--dark2) 60%);
}

.sc-audit {
  background: var(--yellow);
  border-color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
}
.sc-audit:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(255,194,0,0.2); }
.audit-inner { text-align: center; padding: 2rem; }
.sc-audit h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--black); margin-bottom: 0.6rem; }
.sc-audit p  { font-size: 0.88rem; color: rgba(10,10,10,0.75); margin-bottom: 1.5rem; line-height: 1.6; }
.sc-audit .btn-primary { background: var(--black); color: var(--yellow); border-color: var(--black); }
.sc-audit .btn-primary:hover { background: #1a1a1a; }

/* ══════════════════════════════════════════════
   WHY
══════════════════════════════════════════════ */
.why-section { background: var(--black); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.why-left .section-sub { margin-bottom: 2rem; }
.why-numbers {
  display: flex; gap: 3rem; margin-top: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.why-num { display: flex; flex-direction: column; }
.wn-row  { display: flex; align-items: baseline; gap: 0.05rem; }
.wn-val  { font-family: var(--font-display); font-size: 3rem; color: var(--yellow); line-height: 1; }
.wn-unit { font-family: var(--font-display); font-size: 2.2rem; color: var(--yellow); line-height: 1; }
.wn-label { font-size: 0.78rem; color: var(--white-muted); margin-top: 0.4rem; font-weight: 300; letter-spacing: 0.04em; }

.why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.why-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: rgba(255,194,0,0.25); transform: translateY(-3px); }
.why-card-image {
  width: 100%; aspect-ratio: 16/10; overflow: hidden;
  position: relative;
}
.why-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; filter: brightness(0.8);
}
.why-card:hover .why-card-image img { transform: scale(1.06); filter: brightness(1); }
.why-card-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, var(--dark2), transparent);
}
.why-card h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; padding: 0 1.4rem; padding-top: 1rem; }
.why-card p  { font-size: 0.83rem; color: var(--white-muted); line-height: 1.65; padding: 0 1.4rem; padding-bottom: 1.4rem; }

/* ══════════════════════════════════════════════
   QUIZ
══════════════════════════════════════════════ */
.quiz-section { background: var(--dark); }
.quiz-wrap {
  max-width: 720px; margin: 0 auto;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 3rem);
}

.quiz-progress {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.qp-step {
  width: 38px; height: 38px; min-width: 38px; border-radius: 50%;
  background: var(--dark3); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  color: var(--white-muted);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.qp-step.active { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.qp-step.done { background: rgba(255,194,0,0.15); color: var(--yellow); border-color: var(--yellow); }
.qp-line {
  flex: 1; height: 2px; background: var(--border); position: relative; overflow: hidden;
}
.qp-line-fill {
  position: absolute; top: 0; left: 0; height: 100%; width: 0%;
  background: var(--yellow); transition: width 0.4s var(--ease);
}

.quiz-cards { position: relative; min-height: 320px; }
.quiz-card {
  position: absolute; inset: 0;
  opacity: 0; transform: translateX(30px); pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.quiz-card.active { opacity: 1; transform: translateX(0); pointer-events: all; position: relative; }

.quiz-card h3 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin-bottom: 1.5rem; line-height: 1.35;
}
.quiz-options { display: flex; flex-direction: column; gap: 0.7rem; }
.quiz-opt {
  text-align: left; width: 100%;
  padding: 1rem 1.2rem; border-radius: 12px;
  background: var(--dark3); border: 1.5px solid var(--border);
  color: var(--white); font-size: 0.93rem; font-weight: 500;
  cursor: pointer;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
}
.quiz-opt:hover {
  border-color: var(--yellow);
  background: rgba(255,194,0,0.05);
  transform: translateX(4px);
}

.quiz-result { text-align: center; padding: 1rem 0; }
.qr-badge {
  display: inline-block;
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: rgba(255,194,0,0.15); color: var(--yellow);
  border: 1px solid rgba(255,194,0,0.3);
  padding: 0.3rem 0.9rem; border-radius: 60px;
  margin-bottom: 1rem;
}
.quiz-result h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3rem);
  color: var(--yellow); margin-bottom: 0.5rem;
  letter-spacing: 0.02em; line-height: 1.1;
}
.quiz-result p { color: var(--white-muted); margin-bottom: 1.5rem; }
.qr-price {
  display: flex; align-items: baseline; justify-content: center;
  gap: 0.2rem; margin-bottom: 2rem;
}
.qr-cur { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.qr-amt { font-family: var(--font-display); font-size: clamp(2.5rem, 8vw, 4rem); color: var(--white); line-height: 1; }
.qr-per { font-size: 0.9rem; color: var(--white-muted); }
.qr-actions {
  display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════════════ */
.compare-section { background: var(--black); position: relative; overflow: hidden; }
.compare-wrap { max-width: 1000px; width: 100%; margin: 0 auto; overflow: hidden; }

.compare-table {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
}
.ct-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.ct-row:last-child { border-bottom: none; }
.ct-row:not(.ct-head):hover { background: rgba(255,255,255,0.02); }

.ct-cell {
  padding: 1rem 1.2rem;
  display: flex; align-items: center;
  font-size: 0.88rem;
  border-right: 1px solid var(--border);
}
.ct-cell:last-child { border-right: none; }

.ct-head {
  background: var(--dark3);
  border-bottom: 2px solid var(--yellow);
}
.ct-head .ct-cell {
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.04em;
  padding: 1.2rem;
}
.ct-head .ct-feature { color: var(--white-muted); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.12em; }

.ct-feature { color: var(--white-muted); font-weight: 500; }
.ct-us {
  background: rgba(255,194,0,0.06);
  color: var(--yellow);
  font-weight: 600;
  justify-content: center;
  gap: 0.5rem;
}
.ct-head .ct-us {
  background: rgba(255,194,0,0.15);
  color: var(--yellow);
}
.ct-logo { display: inline-flex; }
.ct-others {
  color: var(--white-muted);
  justify-content: center;
}
.ct-yes {
  color: var(--yellow); font-size: 1.3rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,194,0,0.1); border: 1.5px solid rgba(255,194,0,0.3);
}
.ct-no {
  color: #ff4d4d; font-size: 1.1rem;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 32px; height: 32px;
  padding: 0 0.7rem;
  border-radius: 16px;
  background: rgba(255,77,77,0.08); border: 1.5px solid rgba(255,77,77,0.2);
  font-size: 0.78rem; font-weight: 600;
}
.ct-maybe {
  color: var(--white-muted); font-size: 0.85rem;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 32px; height: 32px; padding: 0 0.7rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.04); border: 1.5px solid var(--border);
}
.ct-us strong { color: var(--yellow); font-weight: 800; font-family: var(--font-head); }

.compare-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.compare-cta p {
  font-family: var(--font-head); font-weight: 600;
  font-size: 1.05rem; margin-bottom: 1.2rem;
}

/* ══════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════ */
#process { background: var(--dark); }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; position: relative;
}
.process-step {
  display: flex; flex-direction: column;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.process-step:hover { border-color: rgba(255,194,0,0.25); transform: translateY(-4px); }
.ps-number {
  font-family: var(--font-display); font-size: 3.5rem;
  color: rgba(255,194,0,0.15); line-height: 1;
  margin-bottom: 1rem;
}
.process-step:hover .ps-number { color: rgba(255,194,0,0.4); }
.ps-content h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.6rem; }
.ps-content p { font-size: 0.85rem; color: var(--white-muted); line-height: 1.7; }
.ps-arrow {
  position: absolute; top: 50%; right: -1.1rem;
  transform: translateY(-50%);
  font-size: 1.4rem; color: var(--yellow); z-index: 2;
  background: var(--dark); width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,194,0,0.2);
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials-section { background: var(--black); }
.testimonials-slider { position: relative; overflow: hidden; }
.ts-track { display: flex; gap: 1.5rem; transition: transform 0.6s var(--ease); }

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover { border-color: rgba(255,194,0,0.2); transform: translateY(-3px); }
.tc-stars { color: var(--yellow); font-size: 0.9rem; margin-bottom: 1.2rem; letter-spacing: 2px; }
.tc-quote {
  font-size: 0.95rem; line-height: 1.75; color: var(--white-muted);
  margin-bottom: 1.8rem; font-style: italic;
}
.tc-quote::before { content: '"'; color: var(--yellow); font-size: 2rem; line-height: 0; vertical-align: -0.4rem; margin-right: 0.3rem; }
.tc-author { display: flex; align-items: center; gap: 0.9rem; }
.tc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--yellow); color: var(--black);
  font-family: var(--font-head); font-weight: 800; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tc-author strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; }
.tc-author span   { font-size: 0.75rem; color: var(--white-muted); }

.ts-controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 2.5rem; }
.ts-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,194,0,0.25);
  color: var(--yellow); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  background: transparent; cursor: pointer;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}
.ts-btn:hover { background: rgba(255,194,0,0.1); border-color: var(--yellow); transform: scale(1.07); }
.ts-dots { display: flex; gap: 0.5rem; }
.ts-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer; transition: background 0.25s, transform 0.25s;
}
.ts-dot.active { background: var(--yellow); transform: scale(1.2); }

/* ══════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════ */
#pricing { background: var(--dark); }
.pricing-toggle {
  display: flex; align-items: center; gap: 1rem; justify-content: center;
  margin-bottom: 3.5rem; flex-wrap: wrap;
}
.pt-label {
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 600;
  color: var(--white-muted); cursor: pointer; transition: color 0.25s;
}
.pt-label.active { color: var(--white); }
.save-badge {
  display: inline-block;
  background: rgba(255,194,0,0.15); border: 1px solid rgba(255,194,0,0.3);
  color: var(--yellow); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.15rem 0.5rem; border-radius: 60px; margin-left: 0.3rem;
}
.pt-switch {
  width: 50px; height: 27px; border-radius: 60px;
  background: var(--dark3); border: 1.5px solid var(--border);
  cursor: pointer; position: relative; transition: background 0.3s;
}
.pt-switch.on { background: rgba(255,194,0,0.15); border-color: rgba(255,194,0,0.3); }
.pt-thumb {
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--yellow); position: absolute;
  top: 50%; left: 4px; transform: translateY(-50%);
  transition: left 0.28s var(--ease);
}
.pt-switch.on .pt-thumb { left: 23px; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.2rem;
  position: relative; overflow: visible;  /* visible so badge is not clipped */
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { border-color: rgba(255,194,0,0.25); transform: translateY(-4px); }
.pc-featured {
  border-color: rgba(255,194,0,0.3);
  background: linear-gradient(160deg, rgba(255,194,0,0.07) 0%, var(--dark2) 60%);
  /* removed scale(1.03) — handled by new system */
}
.pc-featured:hover { transform: translateY(-4px); }
.pc-popular {
  /* legacy positioning — overridden by new absolute centering below */
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--black);
  font-family: var(--font-head); font-weight: 800; font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.28rem 0.9rem; border-radius: 60px;
  white-space: nowrap; z-index: 2;
  box-shadow: 0 4px 12px rgba(255,194,0,0.35);
}
.pc-tag {
  font-family: var(--font-head); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 0.4rem;
}
/* Legacy pricing rules — overridden by new system below */
.pc-price { display: flex; align-items: baseline; gap: 0.1rem; flex-wrap: wrap; }
.pc-currency { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.pc-amount { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -0.02em; }
.pc-per { font-size: 0.76rem; color: var(--muted); font-weight: 600; align-self: flex-end; padding-bottom: 0.2rem; }
.hidden { display: none; }
.pc-desc { font-size: 0.8rem; color: var(--white-muted); line-height: 1.55; }
.pc-features { display: flex; flex-direction: column; gap: 0.42rem; }
.pc-features li { font-size: 0.8rem; color: var(--white-muted); padding-left: 0.1rem; line-height: 1.35; }
.pc-features li:not(.muted) { color: var(--white-muted); }
.pc-features li.muted { opacity: 0.45; text-decoration: none; }
.pricing-note {
  text-align: center; margin-top: 2.5rem;
  font-size: 0.85rem; color: var(--white-muted);
}
.pricing-note a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq-section { background: var(--black); }
.faq-layout {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem;
  align-items: start;
}
.faq-left .section-sub { margin-bottom: 2rem; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 0; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  color: var(--white); cursor: pointer; background: none; border: none;
  gap: 1rem; transition: color 0.22s;
}
.faq-q:hover { color: var(--yellow); }
.faq-icon {
  font-size: 1.4rem; color: var(--yellow); flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { font-size: 0.88rem; color: var(--white-muted); line-height: 1.75; padding-bottom: 1.3rem; }

/* ══════════════════════════════════════════════
   CTA / CONTACT (Form + Calendly)
══════════════════════════════════════════════ */
.cta-section {
  background: var(--dark); position: relative; overflow: hidden;
  padding: 7rem 0;
}
.cta-bg-rings { position: absolute; inset: 0; pointer-events: none; }
.cta-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,194,0,0.08); }
.ctr-1 { width: 600px; height: 600px; top: -200px; right: -200px; }
.ctr-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; }

.cta-content { max-width: 1100px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 0.95; letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}
.cta-title span { color: var(--yellow); }
.cta-sub { font-size: 1rem; color: var(--white-muted); max-width: 520px; margin: 0 auto 3rem; line-height: 1.75; }

/* Contact grid: Form + Calendly side-by-side */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}
.contact-col {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.contact-col-head {
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.cc-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--yellow);
  line-height: 1;
}
.contact-col-head h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  line-height: 1.3;
}
.cc-sub {
  font-size: 0.88rem;
  color: var(--white-muted);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 0.6rem; }
.cf-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.8rem; }
.cf-group.full-width { grid-column: span 2; }
.cf-group label { font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white-muted); }
.cf-group input,
.cf-group select,
.cf-group textarea {
  background: var(--dark3); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.75rem 1rem;
  color: var(--white); font-size: 0.9rem;
  transition: border-color 0.25s, background 0.25s;
  outline: none; resize: none;
  -webkit-appearance: none;
  width: 100%;
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: var(--muted); }
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--yellow);
  background: rgba(255,194,0,0.03);
}
.cf-group select option { background: var(--dark3); }
.cf-success {
  display: none; text-align: center;
  margin-top: 1rem; padding: 0.9rem;
  background: rgba(255,194,0,0.08); border: 1px solid rgba(255,194,0,0.2);
  border-radius: var(--radius-sm); color: var(--yellow);
  font-family: var(--font-head); font-size: 0.85rem;
}
.cf-success.show { display: block; }

/* Calendly inline widget */
.calendly-inline-widget {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--dark3);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.cta-alts {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.cta-alt-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 60px; padding: 0.7rem 1.4rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
  color: var(--white-muted);
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.cta-alt-btn:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
#footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer-tagline {
  font-size: 0.88rem; color: var(--white-muted);
  line-height: 1.75; margin: 1rem 0 1.5rem;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 0.8rem; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-muted);
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.footer-socials a:hover { border-color: var(--yellow); color: var(--yellow); transform: scale(1.1); }
.footer-links-group h5 {
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.2rem;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links-group li a,
.footer-links-group li span {
  font-size: 0.84rem; color: var(--white-muted);
  transition: color 0.22s;
}
.footer-links-group li a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
  font-size: 0.78rem; color: var(--muted);
}

/* ══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 150;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: waBounce 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37,211,102,0.55);
}
.wa-float svg { position: relative; z-index: 2; }
.wa-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--wa-green);
  opacity: 0.6;
  animation: waPulse 2s ease-out infinite;
  z-index: 1;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%; transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--border);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--black);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

/* ══════════════════════════════════════════════
   AUDIT POPUP MODAL
══════════════════════════════════════════════ */
.audit-modal {
  position: fixed; inset: 0;
  z-index: 300;
  display: none;
  align-items: center; justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.audit-modal.show {
  display: flex;
  opacity: 1;
}
.am-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.am-box {
  position: relative;
  background: var(--dark2);
  border: 1.5px solid rgba(255,194,0,0.3);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 80px rgba(255,194,0,0.1);
}
.audit-modal.show .am-box { transform: scale(1) translateY(0); }
.am-close {
  position: absolute; top: 0.8rem; right: 1rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--dark3);
  color: var(--white);
  font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.22s, transform 0.22s;
  border: 1px solid var(--border);
}
.am-close:hover { background: var(--yellow); color: var(--black); transform: rotate(90deg); }

.am-badge {
  display: inline-block;
  background: rgba(255,194,0,0.15);
  border: 1px solid rgba(255,194,0,0.4);
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.9rem;
  border-radius: 60px;
  margin-bottom: 1.2rem;
}
.am-box h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 2.6rem);
  line-height: 1.1; letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
}
.am-box h3 span { color: var(--yellow); }
.am-box > p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.am-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.am-list li {
  font-size: 0.78rem;
  color: var(--white);
  padding: 0.4rem 0;
}
.am-form { display: flex; flex-direction: column; gap: 0.6rem; }
.am-form input {
  background: var(--dark3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  width: 100%;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.am-form input::placeholder { color: var(--muted); }
.am-form input:focus { border-color: var(--yellow); }

.am-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem;
  background: rgba(255,194,0,0.1);
  border: 1px solid rgba(255,194,0,0.3);
  border-radius: var(--radius-sm);
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 0.85rem;
}
.am-success.show { display: block; }
.am-note {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--muted);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-steps  { grid-template-columns: repeat(2, 1fr); }
  .ps-arrow       { display: none; }
  .footer-top     { grid-template-columns: 1fr 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-links      { display: none; }
  .hamburger      { display: flex; }
  .why-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .why-right      { grid-template-columns: 1fr 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pc-featured    { transform: none; }
  .pc-featured:hover { transform: translateY(-4px); }
  .faq-layout     { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-slider { overflow: hidden; }
  .testimonial-card { flex: 0 0 100%; }
  .hero-bg-rings  { opacity: 0.5; }

  /* Comparison: scroll horizontally */
  .compare-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .ct-row { min-width: 640px; }
}

@media (max-width: 680px) {
  section { padding: 4.5rem 0; overflow-x: clip; }
  #hero   { padding: 0 1rem; padding-top: 80px; min-height: 90vh; }
  .hero-title { font-size: clamp(2.2rem, 7.5vw, 3.4rem); word-break: break-word; overflow-wrap: break-word; }
  .hero-badge { font-size: 0.68rem; padding: 0.35rem 0.8rem; max-width: 100%; white-space: normal; }
  .hero-sub { font-size: 0.95rem; }
  .services-grid  { grid-template-columns: 1fr; }
  .sc-body        { padding: 1.2rem 1.2rem 1.5rem; }
  .process-steps  { grid-template-columns: 1fr; }
  .why-right      { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions   { flex-direction: column; align-items: stretch; gap: 0.8rem; }
  .hero-actions a { width: 100%; justify-content: center; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; }
  .cta-alts       { flex-direction: column; align-items: stretch; }
  .cta-alt-btn    { justify-content: center; }
  .cf-row         { grid-template-columns: 1fr; }
  .cf-group.full-width { grid-column: span 1; }
  .am-list        { grid-template-columns: 1fr; }
  .hero-bg-rings  { display: none; }

  /* WhatsApp float — slightly smaller */
  .wa-float {
    width: 50px; height: 50px;
    bottom: 16px; right: 16px;
  }
  .wa-float svg { width: 22px; height: 22px; }
  .wa-tooltip { display: none; }

  /* Comparison columns adjust */
  .compare-wrap { width: 100%; overflow: hidden; }
  .compare-table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  .ct-row { min-width: 520px; }
  .ct-cell { padding: 0.8rem 0.7rem; font-size: 0.78rem; }

  /* Quiz tight */
  .quiz-wrap { padding: 1.5rem 1.2rem; width: 100%; }
  .quiz-progress { gap: 0.3rem; }
  .qp-step { width: 30px; height: 30px; min-width: 30px; font-size: 0.75rem; }
}

@media (max-width: 420px) {
  section { padding: 3.5rem 0; }
  .container { padding: 0 1rem; }
  #hero { padding: 0 0.8rem; padding-top: 75px; }
  .hero-title { font-size: 2.2rem; }
  .sc-body { padding: 1rem 1rem 1.2rem; }
  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: 0.85rem; }
  .sc-list li { font-size: 0.68rem; padding: 0.2rem 0.5rem; }
  .nav-logo .logo-text { font-size: 0.85rem; }
  .am-box { padding: 1.5rem 1.2rem; }
  .am-close { top: 0.5rem; right: 0.5rem; }
  .ct-row { min-width: 440px; }
}
/* ══════════════════════════════════════════════
   HERO TRUST BADGES
══════════════════════════════════════════════ */
.hero-trust {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  margin-top: -1rem;
}
.hero-trust span {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 600;
  color: var(--white-muted); letter-spacing: 0.04em;
}
.hero-trust span::before { content: ''; }

/* ══════════════════════════════════════════════
   WHY CHOOSE US — Image cards
══════════════════════════════════════════════ */
.why-choose-section { background: var(--dark); }

.wc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.wc-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.wc-card:hover {
  border-color: rgba(255,194,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.25);
}
.wc-card-image {
  width: 100%; aspect-ratio: 16/10; overflow: hidden;
  position: relative;
}
.wc-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; filter: brightness(0.8);
}
.wc-card:hover .wc-card-image img { transform: scale(1.06); filter: brightness(1); }
.wc-card-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, var(--dark2), transparent);
}
.wc-card h4 {
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  margin-bottom: 0.5rem; color: var(--white);
  padding: 1rem 1.2rem 0;
}
.wc-card p { font-size: 0.82rem; color: var(--white-muted); line-height: 1.65; padding: 0 1.2rem 1.2rem; }

/* ══════════════════════════════════════════════
   PORTFOLIO / OUR WORK
══════════════════════════════════════════════ */
.portfolio-section { background: var(--black); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.portfolio-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.portfolio-card:hover {
  border-color: rgba(255,194,0,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.pc-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--dark3);
}
.pc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.portfolio-card:hover .pc-image img {
  transform: scale(1.05);
}
.pc-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.8rem;
  background: linear-gradient(135deg, var(--dark3) 0%, #1e1e1e 100%);
  transition: background 0.3s;
}
.pc-placeholder svg { opacity: 0.7; }
.pc-placeholder span {
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,194,0,0.5);
}
.pc-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.portfolio-card:hover .pc-overlay { opacity: 1; }
.portfolio-card:hover .pc-placeholder { background: linear-gradient(135deg, #1a1800 0%, var(--dark3) 100%); }

.pc-body { padding: 1.5rem; }
.pc-tags { display: flex; gap: 0.4rem; margin-bottom: 0.8rem; flex-wrap: wrap; }
.pc-tag-item {
  font-size: 0.65rem; font-family: var(--font-head); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,194,0,0.1); color: var(--yellow);
  border: 1px solid rgba(255,194,0,0.25);
  padding: 0.2rem 0.6rem; border-radius: 60px;
}
.pc-body h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  margin-bottom: 0.5rem; color: var(--white); line-height: 1.3;
}
.pc-body p { font-size: 0.84rem; color: var(--white-muted); line-height: 1.65; margin-bottom: 1rem; }
.pc-services {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.pc-services span {
  font-size: 0.72rem; font-family: var(--font-head); font-weight: 600;
  color: var(--white-muted);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 0.2rem 0.6rem; border-radius: 60px;
}

.portfolio-cta {
  text-align: center; margin-top: 3.5rem;
}
.portfolio-cta p {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 600;
  color: var(--white-muted); margin-bottom: 1.2rem;
}

/* ══════════════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════════════ */
.industries-section { background: var(--dark); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.industry-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.industry-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--yellow); opacity: 0;
  transition: opacity 0.3s; z-index: 2;
}
.industry-card:hover {
  border-color: rgba(255,194,0,0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.25);
}
.industry-card:hover::before { opacity: 1; }
.ind-image {
  width: 100%; aspect-ratio: 16/10; overflow: hidden;
  position: relative;
}
.ind-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; filter: brightness(0.75);
}
.industry-card:hover .ind-image img { transform: scale(1.08); filter: brightness(0.95); }
.ind-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(to top, var(--dark2), transparent);
}
.ind-body { padding: 1rem 1.2rem 1.4rem; }
.industry-card h4 {
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  margin-bottom: 0.5rem; color: var(--white);
}
.industry-card p { font-size: 0.8rem; color: var(--white-muted); line-height: 1.65; }

/* ══════════════════════════════════════════════
   QUIZ — Recommendation text
══════════════════════════════════════════════ */
.qr-recommendation {
  background: rgba(255,194,0,0.06);
  border: 1px solid rgba(255,194,0,0.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.65;
  text-align: left;
  display: none;
}
.qr-recommendation.show { display: block; }
.qr-recommendation strong { color: var(--yellow); }

/* ══════════════════════════════════════════════
   PRICING — Updated cards & website note
══════════════════════════════════════════════ */
.pc-price {
  display: flex; align-items: baseline; gap: 0.2rem;
  margin-bottom: 0.8rem;
}
.pricing-website-note {
  margin-top: 2.5rem;
}
.pwn-inner {
  background: var(--dark2);
  border: 1px solid rgba(255,194,0,0.25);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.pwn-icon { font-size: 2rem; flex-shrink: 0; }
.pwn-inner > div { flex: 1; }
.pwn-inner h4 {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  margin-bottom: 0.3rem; color: var(--white);
}
.pwn-inner h4 span { color: var(--yellow); }
.pwn-inner p { font-size: 0.84rem; color: var(--white-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════
   FOUNDER SECTION
══════════════════════════════════════════════ */
.founder-section { background: var(--dark); }

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}
.founder-photo-wrap { position: relative; }
.founder-photo-placeholder {
  aspect-ratio: 3/4;
  max-width: 340px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  overflow: hidden;
  position: relative;
}
.founder-photo-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,194,0,0.04) 0%, transparent 60%);
}
.founder-photo-placeholder span {
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,194,0,0.5);
}
.founder-photo-badge {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--black);
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  padding: 0.5rem 1.2rem; border-radius: 60px;
  white-space: nowrap;
}
.founder-content .section-title { margin-top: 0.8rem; }
.founder-bio {
  font-size: 0.95rem; color: var(--white-muted);
  line-height: 1.8; margin-bottom: 1rem;
}
.founder-vision {
  margin: 1.5rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  background: rgba(255,194,0,0.04);
}
.fv-item { display: flex; gap: 1rem; align-items: flex-start; }
.fv-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.fv-item strong {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 0.9rem; margin-bottom: 0.3rem; color: var(--white);
}
.fv-item p { font-size: 0.84rem; color: var(--white-muted); line-height: 1.65; }
.founder-trust {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1.5rem;
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 600;
  color: var(--white-muted);
}
.founder-trust a { color: var(--yellow); }
.founder-trust a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════
   TESTIMONIALS — Updated avatar
══════════════════════════════════════════════ */
.tc-avatar-wrap {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,194,0,0.1);
  border: 1.5px solid rgba(255,194,0,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.tc-avatar-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

/* ══════════════════════════════════════════════
   BLOG SECTION
══════════════════════════════════════════════ */
.blog-section { background: var(--black); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.blog-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  border-color: rgba(255,194,0,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.blog-img {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--dark3);
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card:hover .blog-img img {
  transform: scale(1.05);
}
.blog-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--dark3) 0%, #1a1a1a 100%);
  transition: background 0.3s;
}
.blog-card:hover .blog-img-placeholder { background: linear-gradient(135deg, #1a1800 0%, var(--dark3) 100%); }
.blog-category {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--font-head); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--yellow); color: var(--black);
  padding: 0.25rem 0.7rem; border-radius: 60px;
}
.blog-body { padding: 1.5rem; }
.blog-meta {
  display: flex; gap: 1rem;
  font-size: 0.75rem; color: var(--muted);
  margin-bottom: 0.8rem;
  font-family: var(--font-head); font-weight: 600;
}
.blog-body h3 {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; line-height: 1.4;
  color: var(--white); margin-bottom: 0.6rem;
  transition: color 0.22s;
}
.blog-card:hover .blog-body h3 { color: var(--yellow); }
.blog-body p { font-size: 0.84rem; color: var(--white-muted); line-height: 1.65; margin-bottom: 1rem; }
.blog-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.blog-tags span {
  font-size: 0.68rem; font-family: var(--font-head); font-weight: 600;
  color: var(--yellow); opacity: 0.75;
}
.blog-read-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  color: var(--yellow); letter-spacing: 0.04em;
  transition: gap 0.22s;
}
.blog-card:hover .blog-read-more { gap: 0.7rem; }

/* ══════════════════════════════════════════════
   CONTACT FORM — Simplified
══════════════════════════════════════════════ */
.cf-note {
  font-size: 0.72rem; color: var(--muted);
  text-align: center; margin-top: 0.8rem;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — New sections
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .wc-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-grid { grid-template-columns: 1fr 1.4fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .founder-grid { grid-template-columns: 1fr; gap: 3rem; }
  .founder-photo-placeholder { max-width: 260px; margin: 0 auto; aspect-ratio: 4/3; }
  .founder-photo-wrap { text-align: center; }
  .pwn-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 680px) {
  .wc-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .portfolio-grid { max-width: 100%; }
  .blog-grid { max-width: 100%; }
  .hero-trust { gap: 0.8rem; }
  .hero-trust span { font-size: 0.7rem; }
  .founder-trust { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .wc-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .industries-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .wc-card h4 { padding: 0.7rem 0.7rem 0; font-size: 0.85rem; }
  .wc-card p { padding: 0 0.7rem 0.7rem; font-size: 0.75rem; line-height: 1.5; }
  .ind-body { padding: 0.7rem 0.7rem 0.9rem; }
  .industry-card h4 { font-size: 0.85rem; }
  .industry-card p { font-size: 0.75rem; line-height: 1.5; }
}

@media (max-width: 360px) {
  .wc-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   PRICING — TABBED SYSTEM (v3)
══════════════════════════════════════════════ */

.pricing-section-main { background: var(--black); }

/* ── Pricing Anchors Banner ── */
.pricing-anchors {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,194,0,0.06);
  border: 1px solid rgba(255,194,0,0.2);
  border-radius: var(--radius);
  padding: 1.2rem 2rem;
  margin-bottom: 3rem;
}
.pa-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 1.8rem;
  flex: 1;
  min-width: 160px;
  justify-content: center;
}
.pa-icon { font-size: 1.4rem; flex-shrink: 0; }
.pa-item > div { display: flex; flex-direction: column; }
.pa-item strong {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.04em; line-height: 1.2;
}
.pa-item span {
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 700;
  color: var(--yellow);
}
.pa-div {
  width: 1px; height: 36px;
  background: rgba(255,194,0,0.2);
  flex-shrink: 0;
}

/* ── Tab Nav ── */
.ptab-nav {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 60px;
  padding: 0.4rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.ptab-btn {
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.7rem 1.4rem;
  border-radius: 60px;
  border: none;
  background: transparent;
  color: var(--white-muted);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.ptab-btn:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.ptab-btn.active { background: var(--yellow); color: var(--black); }

/* ── Tab Panels ── */
.ptab-panel { display: none; animation: tabFadeIn 0.35s var(--ease); }
.ptab-panel.active { display: block; }
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ptab-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.ptab-header h3 {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.5rem;
}
.ptab-header p {
  font-size: 0.9rem; color: var(--white-muted); max-width: 480px; margin: 0 auto;
}

/* ── Pricing Cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  /* Gives the "Most Popular" badge room to breathe above cards */
  padding-top: 1.4rem;
}
.pricing-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: visible; /* must be visible so badge isn't clipped */
}
.pricing-card:hover {
  border-color: rgba(255,194,0,0.25);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.28);
}
.pricing-card.pc-featured {
  border-color: rgba(255,194,0,0.4);
  background: linear-gradient(160deg, rgba(255,194,0,0.07) 0%, var(--dark2) 60%);
  /* Extra top padding so content clears the badge */
  padding-top: 2.2rem;
}
.pricing-card.pc-featured:hover { border-color: rgba(255,194,0,0.7); }

.pc-popular {
  position: absolute;
  top: -15px;           /* sits above card top edge */
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow); color: var(--black);
  font-family: var(--font-head); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.28rem 0.9rem; border-radius: 60px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255,194,0,0.35);
}
.pc-tag {
  font-family: var(--font-head); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow); margin-top: 0.2rem;
}
.pc-price {
  display: flex; align-items: baseline; gap: 0.1rem;
  line-height: 1;
}
.pc-currency {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-top: 0.15rem;
}
.pc-amount {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em;
}
.pc-per {
  font-size: 0.76rem; color: var(--muted);
  font-family: var(--font-head); font-weight: 600;
  align-self: flex-end; padding-bottom: 0.2rem;
}
.pc-best-for {
  font-size: 0.78rem; color: var(--muted);
  font-family: var(--font-head); font-weight: 600;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.8rem;
}
.pc-best-for strong { color: var(--white-muted); font-weight: 700; }
.pc-desc { font-size: 0.8rem; color: var(--white-muted); line-height: 1.55; }
.pc-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.42rem;
  flex: 1;
}
.pc-features li {
  font-size: 0.8rem; color: var(--white-muted); line-height: 1.35;
  display: flex; align-items: flex-start; gap: 0.35rem;
}
.pc-features li.muted { color: var(--muted); opacity: 0.5; }
.pc-note {
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  color: var(--yellow); background: rgba(255,194,0,0.08);
  border: 1px solid rgba(255,194,0,0.2);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.8rem;
  letter-spacing: 0.04em;
}
.pc-savings {
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  color: #4ade80; background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.8rem;
}
.btn-ghost.full, .btn-primary.full {
  width: 100%; text-align: center;
  display: flex; align-items: center; justify-content: center;
  margin-top: auto;
}

/* ── Pricing Footer Note ── */
.pricing-footer-note {
  margin-top: 2rem;
  text-align: center;
  padding: 1.2rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.pfn-main {
  font-size: 0.85rem; color: var(--white-muted); margin-bottom: 0.3rem;
}
.pfn-sub {
  font-size: 0.76rem; color: var(--muted);
}
.pricing-note {
  text-align: center; font-size: 0.8rem; color: var(--muted);
  margin-top: 2rem; line-height: 1.6;
}
.pricing-note a { color: var(--yellow); }

/* ── CTA Pricing Reminder ── */
.cta-pricing-reminder {
  display: flex; align-items: center; justify-content: center;
  gap: 0.8rem; flex-wrap: wrap;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  color: var(--yellow);
  background: rgba(255,194,0,0.06);
  border: 1px solid rgba(255,194,0,0.2);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.5rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}
.cta-pricing-reminder span:not(:last-child):not(.sep) { }
.cta-pricing-reminder span[aria-hidden="true"],
.cta-pricing-reminder span:nth-child(even) { color: rgba(255,194,0,0.35); }

/* ── Footer Pricing Pills ── */
.footer-pricing-pills {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 1rem; margin-top: 0.6rem;
}
.footer-pricing-pills span {
  font-family: var(--font-head); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(255,194,0,0.1);
  border: 1px solid rgba(255,194,0,0.2);
  color: var(--yellow);
  padding: 0.25rem 0.65rem;
  border-radius: 60px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Pricing Tabs
══════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid .pricing-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .pa-div { display: none; }
  .pa-item { min-width: 140px; }
}
@media (max-width: 720px) {
  .ptab-nav { border-radius: var(--radius-sm); padding: 0.4rem; width: 100%; }
  .ptab-btn { font-size: 0.72rem; padding: 0.6rem 0.9rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .pricing-card:last-child { grid-column: auto; max-width: 100%; }
  .pricing-anchors { flex-direction: column; gap: 0.8rem; padding: 1.2rem; }
  .pa-item { padding: 0; width: 100%; justify-content: flex-start; }
  .cta-pricing-reminder { font-size: 0.7rem; gap: 0.5rem; }
}
@media (max-width: 500px) {
  .ptab-btn { font-size: 0.68rem; padding: 0.5rem 0.7rem; }
  .pc-amount { font-size: 1.7rem; }
  .pc-currency { font-size: 0.95rem; }
}

/* ══════════════════════════════════════════════
   BLOG POST PAGE
══════════════════════════════════════════════ */
.blog-post-page {
  padding-top: 120px;
  padding-bottom: 5rem;
  background: var(--black);
  min-height: 60vh;
}
.blog-post-hero-img {
  max-width: 780px;
  margin: 0 auto 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.blog-post-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Blog Post Content Images */
.blog-post-content .blog-content-img {
  margin: 2.5rem 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.blog-post-content .blog-content-img img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-post-content .blog-content-img figcaption {
  background: var(--dark2);
  padding: 0.8rem 1.2rem;
  font-size: 0.8rem;
  color: var(--white-muted);
  text-align: center;
  font-style: italic;
  border-top: 1px solid var(--border);
}

/* Breadcrumbs */
.blog-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--white-muted);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.blog-breadcrumbs a {
  color: var(--white-muted);
  transition: color 0.22s;
}
.blog-breadcrumbs a:hover { color: var(--yellow); }
.blog-breadcrumbs .bc-sep { color: rgba(255,255,255,0.25); }
.blog-breadcrumbs .bc-current { color: var(--yellow); font-weight: 500; }

/* Back link */
.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 2.5rem;
  transition: gap 0.22s, opacity 0.22s;
}
.blog-back-link:hover { gap: 0.8rem; opacity: 0.8; }

/* Post Header */
.blog-post-header {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3.5rem;
}
.blog-post-category {
  display: inline-block;
  background: rgba(255,194,0,0.12);
  border: 1px solid rgba(255,194,0,0.25);
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 60px;
  margin-bottom: 1.5rem;
}
.blog-post-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.blog-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--white-muted);
  flex-wrap: wrap;
}
.blog-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.blog-post-meta .meta-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

/* Post Content */
.blog-post-content {
  max-width: 780px;
  margin: 0 auto;
}
.blog-post-content h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--white);
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  line-height: 1.25;
  position: relative;
  padding-left: 1.2rem;
}
.blog-post-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.blog-post-content h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--white);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  line-height: 1.35;
}
.blog-post-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--white-muted);
  margin-bottom: 1.5rem;
}
.blog-post-content strong {
  color: var(--white);
  font-weight: 600;
}
.blog-post-content a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.22s;
}
.blog-post-content a:hover { opacity: 0.8; }

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.blog-post-content ul { list-style: none; padding-left: 0; }
.blog-post-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--white-muted);
}
.blog-post-content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 0.7rem;
  top: 0.35em;
}
.blog-post-content ol li {
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--white-muted);
}

/* Blockquote */
.blog-post-content blockquote {
  background: linear-gradient(135deg, rgba(255,194,0,0.06) 0%, rgba(255,194,0,0.02) 100%);
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--white);
  font-style: italic;
}
.blog-post-content blockquote p {
  color: var(--white);
  margin-bottom: 0;
}

/* Callout / Highlight Box */
.blog-callout {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  margin: 2rem 0;
}
.blog-callout h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-callout p {
  font-size: 0.92rem;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Post Footer / Tags & Share */
.blog-post-footer {
  max-width: 780px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.blog-post-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.blog-post-tags span {
  font-size: 0.75rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(255,194,0,0.08);
  border: 1px solid rgba(255,194,0,0.2);
  color: var(--yellow);
  border-radius: 60px;
  padding: 0.3rem 0.9rem;
}

/* Author Box */
.blog-author-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.blog-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blog-author-avatar svg { color: var(--black); }
.blog-author-info strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.blog-author-info span {
  font-size: 0.82rem;
  color: var(--white-muted);
  line-height: 1.5;
}

/* Blog CTA Section */
.blog-cta-section {
  background: var(--dark);
  padding: 5rem 0;
  text-align: center;
}
.blog-cta-box {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255,194,0,0.08) 0%, var(--dark2) 60%);
  border: 1px solid rgba(255,194,0,0.2);
  border-radius: var(--radius);
  padding: 3rem;
}
.blog-cta-box h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.blog-cta-box h3 span { color: var(--yellow); }
.blog-cta-box p {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.blog-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Related Posts */
.blog-related {
  max-width: 780px;
  margin: 3rem auto 0;
}
.blog-related h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.blog-related-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.blog-related-card:hover {
  border-color: rgba(255,194,0,0.25);
  transform: translateY(-3px);
}
.blog-related-card h5 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  transition: color 0.22s;
}
.blog-related-card:hover h5 { color: var(--yellow); }
.blog-related-card p {
  font-size: 0.8rem;
  color: var(--white-muted);
  line-height: 1.6;
}

/* Responsive Blog Post */
@media (max-width: 768px) {
  .blog-post-page { padding-top: 100px; padding-bottom: 3rem; }
  .blog-post-header { margin-bottom: 2.5rem; }
  .blog-post-content blockquote { padding: 1.2rem 1.5rem; }
  .blog-callout { padding: 1.4rem 1.5rem; }
  .blog-author-box { flex-direction: column; text-align: center; padding: 1.5rem; }
  .blog-related-grid { grid-template-columns: 1fr; }
  .blog-cta-box { padding: 2rem 1.5rem; }
}

/* Hero Slider Styles */
#heroSlider {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(20px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

.hero-slide-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--yellow);
  transform: scale(1.2);
}

.slider-dot:hover {
  background: rgba(255, 194, 0, 0.6);
}

/* Slider Arrows */
.slider-arrows {
  position: absolute;
  bottom: 25px;
  right: 0;
  display: flex;
  gap: 12px;
  z-index: 10;
  pointer-events: none;
}
.slider-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .slider-arrows {
    display: none; /* Hide arrows on mobile to prevent clutter; dots and swipe can work (swipe not implemented yet, but dots work) */
  }
}

/* Trending Badge */
.sc-trending { position: relative; overflow: visible; }
.sc-trending-badge {
  position: absolute; top: -12px; right: 16px;
  background: linear-gradient(135deg, #FF6B35, #FF2E63);
  color: #fff; font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
  padding: 4px 14px; border-radius: 20px;
  letter-spacing: 0.08em; text-transform: uppercase;
  animation: trendingPulse 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes trendingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 46, 99, 0.4); }
  50% { box-shadow: 0 0 12px 4px rgba(255, 46, 99, 0.2); }
}

/* Blog Links */
.blog-body h3 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.blog-body h3 a:hover { color: var(--yellow); }
.blog-img a { display: block; height: 100%; }

/* ══════════════════════════════════════════════
   HERO FLOATING IMAGES
══════════════════════════════════════════════ */
.hero-visuals {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: min(42vw, 520px);
  height: min(50vw, 560px);
  pointer-events: none;
  z-index: 1;
}
.hero-float-img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,194,0,0.15);
  transition: transform 0.6s var(--ease);
}
.hero-float-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hfi-1 {
  width: 72%; top: 5%; right: 0;
  aspect-ratio: 16/10;
  animation: heroFloat1 6s ease-in-out infinite;
}
.hfi-2 {
  width: 55%; bottom: 15%; left: 0;
  aspect-ratio: 16/10;
  animation: heroFloat2 7s ease-in-out infinite 0.5s;
}
.hfi-3 {
  width: 45%; bottom: 0; right: 5%;
  aspect-ratio: 16/10;
  animation: heroFloat3 8s ease-in-out infinite 1s;
}
.hero-glow {
  position: absolute;
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,194,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

@keyframes heroFloat1 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}
@keyframes heroFloat2 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}
@keyframes heroFloat3 {
  0%, 100% { transform: translateY(0) rotate(0.5deg); }
  50% { transform: translateY(-10px) rotate(-0.5deg); }
}

@media (max-width: 900px) {
  .hero-visuals { display: none; }
}

/* ══════════════════════════════════════════════
   STACKING CARD ANIMATION
══════════════════════════════════════════════ */
.stack-card {
  will-change: transform, opacity;
}
.stack-card.visible {
  animation: stackIn 0.7s var(--ease) both;
}
.stack-card.visible:nth-child(1) { animation-delay: 0s; }
.stack-card.visible:nth-child(2) { animation-delay: 0.08s; }
.stack-card.visible:nth-child(3) { animation-delay: 0.16s; }
.stack-card.visible:nth-child(4) { animation-delay: 0.24s; }
.stack-card.visible:nth-child(5) { animation-delay: 0.32s; }
.stack-card.visible:nth-child(6) { animation-delay: 0.40s; }
.stack-card.visible:nth-child(7) { animation-delay: 0.48s; }
.stack-card.visible:nth-child(8) { animation-delay: 0.56s; }

@keyframes stackIn {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ══════════════════════════════════════════════
   SCROLL-DRIVEN PARALLAX SECTIONS
══════════════════════════════════════════════ */
.section-header {
  will-change: transform;
}

/* Scroll-triggered scale-in for section titles */
.section-header.centered .section-title,
.section-header .section-title {
  transition: transform 0.8s var(--ease), opacity 0.8s var(--ease);
}

/* Smooth entrance for all section labels */
.section-label {
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}

/* Parallax glow on scroll for different sections */
#services::after,
#industries::after,
#why-choose::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,194,0,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
#services, #industries, #why-choose {
  position: relative;
  overflow: hidden;
}
#services::after {
  top: -100px; right: -100px;
}
#industries::after {
  bottom: -100px; left: -100px;
}
@media (max-width: 900px) {
  #services::after,
  #industries::after,
  #why-choose::after {
    display: none;
  }
}

/* ══════════════════════════════════════════════
   SMOOTH SCROLL REVEAL ENHANCEMENTS
══════════════════════════════════════════════ */
/* Additional reveal variants for scroll animations */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered cascade entrance */
.reveal-cascade > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal-cascade.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-cascade.visible > *:nth-child(2) { transition-delay: 0.06s; opacity: 1; transform: translateY(0); }
.reveal-cascade.visible > *:nth-child(3) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.reveal-cascade.visible > *:nth-child(4) { transition-delay: 0.18s; opacity: 1; transform: translateY(0); }
.reveal-cascade.visible > *:nth-child(5) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.reveal-cascade.visible > *:nth-child(6) { transition-delay: 0.30s; opacity: 1; transform: translateY(0); }
.reveal-cascade.visible > *:nth-child(7) { transition-delay: 0.36s; opacity: 1; transform: translateY(0); }
.reveal-cascade.visible > *:nth-child(8) { transition-delay: 0.42s; opacity: 1; transform: translateY(0); }

/* Image card hover lift effect — global */
.service-card:hover,
.wc-card:hover,
.industry-card:hover,
.why-card:hover {
  z-index: 2;
}

/* Smooth 3D tilt on hover for image cards */
@media (hover: hover) {
  .service-card,
  .wc-card,
  .industry-card {
    perspective: 800px;
  }
  .sc-image,
  .wc-card-image,
  .ind-image {
    backface-visibility: hidden;
  }
}

/* Process steps scroll stagger */
.process-step {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

/* ═══ PORTFOLIO SCREENSHOT SLIDER ═══ */
.pd-screenshot-slider {
  position: relative;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
}
.pd-ss-track {
  position: relative;
  width: 100%;
  min-height: 300px;
}
.pd-ss-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.pd-ss-slide.pd-ss-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.pd-ss-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.pd-ss-caption {
  display: block;
  padding: 0.8rem 1.2rem;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.pd-ss-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--dark2);
  border-top: 1px solid var(--border);
}
.pd-ss-arrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pd-ss-arrow:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.pd-ss-dots {
  display: flex;
  gap: 8px;
}
.pd-ss-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.pd-ss-dot.active {
  background: var(--yellow);
  transform: scale(1.2);
}
.pd-ss-dot:hover {
  background: rgba(255, 194, 0, 0.6);
}

/* ═══ PORTFOLIO CARD IMAGE SLIDER ═══ */
.pc-slider {
  position: relative;
}
.pc-slider .pc-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.pc-slider .pc-slide.pc-slide-active {
  position: relative;
  opacity: 1;
}
.pc-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.pc-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.pc-slider-dot.active {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: scale(1.2);
}
.pc-visit-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.pc-visit-link:hover {
  color: #fff;
}

@media (max-width: 480px) {
  .blog-post-page { padding-top: 85px; }
  .blog-post-meta { flex-direction: column; gap: 0.5rem; }
  .blog-post-meta .meta-divider { display: none; }
  .blog-post-content h2 { font-size: 1.2rem; padding-left: 1rem; }
  .blog-post-content h2::before { width: 2px; }
}

/* ═══ PORTFOLIO DETAIL PAGES ═══ */
.portfolio-detail {
  padding-top: 100px;
  padding-bottom: 5rem;
  background: var(--black);
}
.portfolio-detail .container { max-width: 900px; }

/* Back Link */
.portfolio-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 2rem;
  transition: opacity 0.3s;
}
.portfolio-back:hover { opacity: 0.7; }

/* Hero Image */
.pd-hero-img {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
}
.pd-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Title Block */
.pd-header { margin-bottom: 3rem; }
.pd-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.pd-tag {
  font-size: 0.65rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,194,0,0.1);
  color: var(--yellow);
  border: 1px solid rgba(255,194,0,0.25);
  padding: 0.25rem 0.7rem;
  border-radius: 60px;
}
.pd-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.pd-subtitle {
  font-size: 1.05rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* Project Info Grid */
.pd-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 3rem;
}
.pd-info-item label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.4rem;
}
.pd-info-item span {
  font-size: 0.95rem;
  color: var(--white);
}

/* Content Sections */
.pd-section { margin-bottom: 3rem; }
.pd-section h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  padding-left: 1.2rem;
  position: relative;
}
.pd-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.pd-section p {
  color: var(--white-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.pd-section ul {
  list-style: none;
  padding: 0;
}
.pd-section ul li {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.pd-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

/* Gallery */
.pd-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.pd-gallery img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* Results Metrics */
.pd-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.pd-metric {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.pd-metric .metric-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.pd-metric .metric-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Testimonial */
.pd-testimonial {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius-sm);
  padding: 2rem;
  margin: 2rem 0;
}
.pd-testimonial p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.pd-testimonial cite {
  font-style: normal;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--yellow);
}

/* Related Projects */
.pd-related { margin-top: 4rem; }
.pd-related h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.pd-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pd-related-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.pd-related-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}
.pd-related-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.pd-related-card .pd-rc-body {
  padding: 1rem;
}
.pd-related-card h5 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.pd-related-card p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .pd-gallery { grid-template-columns: 1fr; }
  .pd-related-grid { grid-template-columns: 1fr; }
  .pd-results { grid-template-columns: 1fr 1fr; }
  .pd-info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .portfolio-detail { padding-top: 85px; }
  .pd-results { grid-template-columns: 1fr; }
  .pd-info-grid { grid-template-columns: 1fr; }
}
/* Blog Links */
.blog-body h3 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.blog-body h3 a:hover { color: var(--yellow); }
.blog-img a { display: block; height: 100%; }
