/* ============================================
   OUT OF THIN AIR — Components
   ============================================ */

/* === NAVIGATION === */
.site-nav {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
}

.site-nav-inner {
  display: flex; align-items: center;
  padding: 14px 40px 6px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.site-nav-logo {
  position: absolute; top: 4px; left: 40px; z-index: 201;
  overflow: visible;
}

.site-nav-logo img {
  height: 70px; width: auto;
}

.site-nav-links {
  display: flex; align-items: center;
  justify-content: center;
  gap: 40px;
  padding-left: 180px;
  width: 100%;
  list-style: none;
}

.site-nav-links a {
  color: var(--color-cyan);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.site-nav-links a:hover,
.site-nav-links a.active {
  color: var(--color-white);
}

.site-nav-lang {
  display: flex; gap: 8px;
  font-size: 12px;
  margin-left: auto;
}

.site-nav-lang a {
  color: var(--color-muted);
  transition: color 0.3s;
}

.site-nav-lang a:hover,
.site-nav-lang a.active {
  color: var(--color-white);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  z-index: 202;
}

.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--color-white);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 28px;
  transition: color 0.3s;
}

.nav-mobile-menu a:hover { color: var(--color-cyan); }

.nav-mobile-lang {
  display: flex; gap: 16px;
  margin-top: 20px;
  font-size: 14px;
}

.nav-mobile-lang a { color: var(--color-muted); }
.nav-mobile-lang a.active { color: var(--color-white); }

/* === HERO VIDEO === */
.hero {
  position: relative; width: 100vw; height: 55vh;
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  background: #000;
}

.hero iframe {
  position: absolute; top: 50%; left: 50%;
  width: 200vh; min-width: 120%; height: 120vh; min-height: 120%;
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
  z-index: 1; opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero iframe.active { opacity: 1; z-index: 2; }

.hero-fallback {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.7) 100%);
  z-index: 3;
}

.hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 4; text-align: center; padding: 20px 20px 25px;
}

.hero h1 {
  margin-bottom: 12px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.7), 0 0 60px rgba(0,0,0,0.4);
}

.tagline-bar {
  text-align: center; padding: 20px var(--gap);
  font-family: var(--font-body);
  font-size: 17px; color: var(--color-cyan); font-style: italic;
  letter-spacing: 1px;
}

/* === INTRO SECTION === */
.intro {
  max-width: 900px; margin: 60px auto; padding: 0 var(--gap);
  border-left: 3px solid var(--color-cyan); padding-left: 30px;
}

.intro-label {
  font-size: 11px; letter-spacing: 2px; color: var(--color-cyan);
  text-transform: uppercase; margin-bottom: 10px;
}

.intro p {
  font-size: 17px; line-height: 1.7;
}

/* === DIVIDER === */
.section-divider { text-align: center; padding: 50px 0 30px; }

.section-divider span {
  font-size: 11px; letter-spacing: 4px; color: var(--color-cyan);
  text-transform: uppercase;
}

.section-divider::after {
  content: ''; display: block; width: 60px; height: 2px;
  background: var(--color-cyan); margin: 10px auto 0;
}

/* === FEATURED ACT CARD === */
.featured-act {
  display: flex; gap: var(--gap); align-items: center;
  max-width: var(--max-width); margin: 40px auto; padding: 30px var(--gap);
  background: var(--color-card); border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.4s;
}

.featured-act:hover {
  border-color: rgba(0,210,211,0.12);
}

.featured-act-reverse { flex-direction: row-reverse; }

.featured-act-visual {
  flex: 1.3;
  background: #0d0d0d;
  border-radius: 12px; min-height: 320px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.featured-act-visual img {
  width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: 12px;
}

/* Multi-image crossfade */
.crossfade { position: relative; width: 100%; height: 100%; min-height: 320px; }

.crossfade img {
  width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: 12px;
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.crossfade img:first-child { position: relative; }
.crossfade img.cf-active { opacity: 1; }

/* Crossfade inside grid-thumb fills the fixed height */
.grid-thumb .crossfade { height: 100%; min-height: 0; }
.grid-thumb .crossfade img { border-radius: 0; min-height: 0; }

.featured-act-info { flex: 1; }

.featured-act-tag {
  font-size: 11px; color: var(--color-cyan); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 10px;
}

.featured-act h2 { margin-bottom: 12px; }

.featured-act-desc {
  color: var(--color-muted); font-family: var(--font-body);
  font-size: 15px; line-height: 1.6; margin-bottom: 20px;
}

/* === CTA BUTTONS === */
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.cta-wa {
  background: var(--color-green); color: var(--color-white);
  padding: 10px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.cta-connect {
  background: transparent; color: var(--color-cyan);
  padding: 10px 22px; border-radius: 8px;
  font-size: 14px; border: 1px solid var(--color-cyan);
  transition: background 0.3s, transform 0.2s;
}

.cta-connect:hover {
  background: rgba(0,210,211,0.1);
  transform: translateY(-2px);
}

/* === GRID === */
.grid-section {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--gap) var(--gap);
}

.grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.grid-card {
  background: var(--color-card2); border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,210,211,0.12);
  border-color: rgba(0,210,211,0.15);
}

.grid-thumb {
  background: #0d0d0d;
  height: 220px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.grid-thumb img { width: 100%; height: 100%; object-fit: cover; }

.grid-body { padding: 20px; }
.grid-body h3 { margin-bottom: 8px; }

.grid-body .card-desc {
  color: #666; font-family: var(--font-body);
  font-size: 13px; line-height: 1.5; margin-bottom: 0;
  font-style: italic;
}

.card-link { display: none; }

/* Expand-on-hover detail */
.card-expand {
  max-height: 0; padding: 0 16px; opacity: 0; overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.3s ease-out;
  border-top: 1px solid #222;
}

.grid-card:hover .card-expand,
.grid-card.expanded .card-expand {
  max-height: 200px; padding: 12px 16px; opacity: 1;
}

.card-expand .card-desc-full {
  color: var(--color-muted); font-size: 13px; line-height: 1.6; margin-bottom: 12px;
}

/* === GRID CTA CARDS === */
.cta-card {
  border-radius: 12px; padding: 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
  min-height: 280px;
}

.cta-card:hover { transform: translateY(-6px); }

.cta-card-wa {
  background: linear-gradient(135deg, #1a3a2a, #0d2818);
  border: 1px solid rgba(37,211,102,0.25);
}
.cta-card-wa:hover { box-shadow: 0 12px 40px rgba(37,211,102,0.15); }

.cta-card-connect {
  background: linear-gradient(135deg, #0a2a2a, #0d1828);
  border: 1px solid rgba(0,210,211,0.2);
}
.cta-card-connect:hover { box-shadow: 0 12px 40px rgba(0,210,211,0.15); }

.cta-card .cta-icon { font-size: 36px; margin-bottom: 14px; }
.cta-card h3 { font-size: 20px; margin-bottom: 8px; }
.cta-card-wa h3 { color: var(--color-green); }
.cta-card-connect h3 { color: var(--color-cyan); }
.cta-card p { font-size: 13px; color: #999; line-height: 1.5; margin-bottom: 16px; }

.cta-card .cta-btn {
  padding: 10px 24px; border-radius: 8px; font-size: 14px;
  font-weight: 600; display: inline-block; transition: transform 0.2s;
}

.cta-card:hover .cta-btn { transform: scale(1.05); }
.cta-card-wa .cta-btn { background: var(--color-green); color: var(--color-white); }
.cta-card-connect .cta-btn { background: transparent; color: var(--color-cyan); border: 1px solid var(--color-cyan); }

.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; margin-bottom: 12px;
  animation: pulse-dot 2s ease-in-out infinite;
}

.cta-card-wa .pulse-dot { background: var(--color-green); box-shadow: 0 0 12px rgba(37,211,102,0.5); }
.cta-card-connect .pulse-dot { background: var(--color-cyan); box-shadow: 0 0 12px rgba(0,210,211,0.5); }

/* === BOTTOM CTA === */
.bottom-cta {
  max-width: var(--max-width); margin: 60px auto; padding: 60px var(--gap);
  background: linear-gradient(135deg, #0a2a2a, #1a1a2e);
  border-radius: 16px; text-align: center;
  border: 1px solid rgba(0,210,211,0.15);
  position: relative; overflow: hidden;
}

.bottom-cta::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(0,210,211,0.06), transparent 50%);
  animation: pulse-glow 4s ease-in-out infinite;
}

.bottom-cta h2 { font-size: 28px; margin-bottom: 10px; position: relative; }
.bottom-cta p { color: var(--color-muted); font-size: 15px; margin-bottom: 24px; position: relative; }
.bottom-cta .cta-row { justify-content: center; position: relative; }

/* === FAQ ACCORDION === */
.faq-list {
  max-width: 900px; margin: 0 auto;
  padding: 10px 0 40px;
}

.faq-item {
  border-bottom: 1px solid #1a1a1a;
  padding: 0;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-left-color: var(--color-cyan);
}

.faq-question {
  width: 100%; background: none; border: none;
  color: var(--color-white); font-family: var(--font-body);
  font-size: 16px; font-weight: 400;
  padding: 20px 40px 20px 16px;
  text-align: left; cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--color-cyan); }

.faq-question::after {
  content: '+'; position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px; color: var(--color-cyan);
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item.open .faq-question {
  color: var(--color-cyan);
}

.faq-item.open .faq-question::after {
  content: '\2212';
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer-inner {
  padding: 0 16px 20px;
  color: var(--color-muted);
  font-size: 15px; line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 800px; }

/* === VIDEO LIGHTBOX === */
.video-lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.video-lightbox.active { opacity: 1; }

.video-lightbox-inner {
  position: relative;
  width: 90vw; max-width: 1000px;
  cursor: default;
}

.video-lightbox-close {
  position: absolute; top: -40px; right: 0;
  background: none; border: none;
  color: var(--color-white); font-size: 32px;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.video-lightbox-close:hover { color: var(--color-cyan); }

.video-lightbox-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0; overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.video-lightbox-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* === VIDEO GRID — 16:9 aspect ratio for video thumbnails === */
.grid-card[data-vimeo] .grid-thumb {
  height: 0;
  padding-bottom: 56.25%; /* 16:9 */
  position: relative;
}

.grid-card[data-vimeo] .grid-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Play button hover effect */
.grid-card[data-vimeo]:hover .grid-thumb > div:last-child > div {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0,210,211,0.4);
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid #1a1a1a;
  padding: 40px var(--gap) 30px;
  text-align: center;
}

.footer-social {
  display: flex; justify-content: center; gap: 20px;
  margin-bottom: 20px;
}

.footer-social a {
  color: var(--color-muted);
  font-size: 20px;
  transition: color 0.3s, transform 0.2s;
}

.footer-social a:hover {
  color: var(--color-cyan);
  transform: translateY(-2px);
}

.footer-nav {
  display: flex; justify-content: center; gap: 24px;
  margin-bottom: 16px;
  list-style: none;
}

.footer-nav a {
  color: var(--color-muted); font-size: 13px;
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--color-white); }

.footer-lang {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 16px;
}

.footer-lang a {
  color: var(--color-muted); font-size: 12px;
  transition: color 0.3s;
}

.footer-lang a.active { color: var(--color-white); }

.footer-copy {
  color: #555; font-size: 12px;
}

/* === HOMEPAGE: OVERVIEW GRID === */
.overview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  padding-top: 40px; padding-bottom: 40px;
}

.overview-card {
  background: var(--color-card); border-radius: 12px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,210,211,0.12);
}

.overview-card-img { overflow: hidden; position: relative; padding-bottom: 100%; }
.overview-card-img a { position: absolute; inset: 0; display: block; }
.overview-card-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.overview-card h2 {
  padding: 20px 20px 8px;
  font-size: 24px;
}

.overview-card h2 a { transition: color 0.3s; }
.overview-card h2 a:hover { color: var(--color-cyan); }

.overview-card p {
  padding: 0 20px; font-size: 14px; line-height: 1.6;
  color: var(--color-muted);
}

.overview-card .card-link {
  display: block; padding: 16px 20px;
  font-size: 14px; color: var(--color-cyan);
}

/* === HOMEPAGE: CONNECT BANNER === */
.connect-banner {
  display: flex; gap: 30px; align-items: center;
  max-width: var(--max-width); margin: 20px auto; padding: 0 var(--gap);
}

.connect-banner-img {
  flex: 1; border-radius: 12px; overflow: hidden; max-height: 300px;
}

.connect-banner-img img { width: 100%; height: 100%; object-fit: cover; }

.connect-banner-content { flex: 1; }
.connect-banner-content h2 { margin-bottom: 12px; }
.connect-banner-content h2 a { transition: color 0.3s; }
.connect-banner-content h2 a:hover { color: var(--color-cyan); }
.connect-banner-content p { color: var(--color-muted); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }

/* === HOMEPAGE: TRUSTED BY === */
.trusted-section {
  max-width: var(--max-width); margin: 40px auto; padding: 40px var(--gap);
  text-align: center;
}

.trusted-section h2 {
  font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--color-muted); margin-bottom: 24px; font-family: var(--font-body);
}

.trusted-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px;
}

.trusted-name {
  font-size: 14px; color: #555;
  transition: color 0.3s;
  cursor: default;
}

.trusted-name:hover { color: var(--color-cyan); }

/* === CONTACT OPTIONS === */
.contact-options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  align-items: start;
}

.contact-details {
  padding: 30px;
  background: var(--color-card); border-radius: 12px;
}

.contact-details p {
  margin-bottom: 12px; font-size: 15px;
}

/* === CONNECT PAGE: FORM + LAYOUT === */
.connect-layout {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px;
  max-width: 900px; margin: 0 auto;
}

.connect-form h2 {
  font-size: 22px; margin-bottom: 24px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block; font-size: 13px; color: var(--color-muted);
  margin-bottom: 6px; letter-spacing: 0.5px;
}

.form-field input,
.form-field textarea {
  width: 100%; padding: 12px 14px;
  background: var(--color-card); border: 1px solid #222;
  border-radius: 8px; color: var(--color-white);
  font-family: var(--font-body); font-size: 14px;
  transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--color-cyan);
}

.form-field textarea { resize: vertical; }

.connect-sidebar {
  padding-top: 60px;
}

.connect-info {
  padding: 20px; background: var(--color-card);
  border-radius: 12px; border-left: 3px solid var(--color-cyan);
}

/* === QUICK CONTACT BUTTONS === */
.quick-contact {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-bottom: 30px;
}

.qc-btn {
  padding: 12px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  background: var(--color-card); border: 1px solid #333;
  color: var(--color-white);
  transition: border-color 0.3s, transform 0.2s, background 0.3s;
  display: inline-flex; align-items: center; gap: 6px;
}

.qc-btn:hover {
  border-color: var(--color-cyan); transform: translateY(-2px);
  background: rgba(0,210,211,0.05);
}

.qc-btn.qc-wa {
  background: var(--color-green); border-color: var(--color-green); color: #fff;
}

.qc-btn.qc-wa:hover {
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

/* === RESPONSIVE: CONNECT === */
@media (max-width: 900px) {
  .connect-layout { grid-template-columns: 1fr; }
  .connect-sidebar { padding-top: 0; }
}

/* === RESPONSIVE: HOMEPAGE === */
@media (max-width: 900px) {
  .overview-grid { grid-template-columns: 1fr; }
  .connect-banner { flex-direction: column; }
  .contact-options { grid-template-columns: 1fr; }
}

/* === SHIMMER PLACEHOLDER === */
.shimmer {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  color: #555; font-size: 14px;
}

.shimmer::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(0,210,211,0.06) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

/* === RESPONSIVE — TABLET === */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

/* === RESPONSIVE — SMALL TABLET === */
@media (max-width: 900px) {
  .featured-act, .featured-act-reverse { flex-direction: column !important; }
  .featured-act-visual { width: 100%; min-height: 200px; }
  .featured-act { padding: 20px; gap: 20px; margin: 15px 10px; }
  .featured-act-desc { font-size: 14px; }
  .intro { margin: 40px auto; padding: 0 20px; padding-left: 20px; }
  .grid-section { padding: 0 15px 40px; }
  .section-divider { padding: 35px 0 20px; }

  .site-nav-links { display: none; }
  .site-nav-lang { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
}

/* === RESPONSIVE — MOBILE === */
@media (max-width: 600px) {

  /* Hero: taller, video fills height */
  .hero { min-height: 75vh; }
  .hero iframe {
    width: 300vw !important; min-width: 300vw !important;
    height: 100vh !important; min-height: 100% !important;
  }
  .tagline-bar { font-size: 14px; padding: 15px 20px; }

  /* Intro compact */
  .intro { margin: 25px 15px; padding: 0; padding-left: 15px; border-left-width: 2px; }
  .intro p { font-size: 15px; }
  .section-divider { padding: 25px 0 15px; }
  .section-divider span { font-size: 10px; }

  /* Featured acts — full width photos, no card boxing */
  .featured-act {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 0 30px 0 !important;
    gap: 0 !important;
    border: none !important;
  }
  .featured-act-visual {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    min-height: auto !important; height: auto !important;
    border-radius: 0 !important;
  }
  .featured-act-visual img {
    width: 100% !important; height: auto !important; min-height: 0 !important;
    object-fit: contain !important; border-radius: 0 !important;
  }
  .featured-act-info { padding: 15px 20px 0; }
  .featured-act-tag { font-size: 10px; margin-bottom: 6px; }
  .featured-act-desc { font-size: 14px; line-height: 1.5; margin-bottom: 12px; }

  .cta-row {
    gap: 8px; display: flex !important;
    justify-content: space-between !important; width: 100%;
  }
  .cta-wa { font-size: 13px; padding: 10px 16px; flex: 1; justify-content: center; }
  .cta-connect {
    font-size: 13px; padding: 10px 16px; flex: 1; text-align: center;
    background: var(--color-cyan) !important; color: #000 !important;
    border: none !important; font-weight: 600;
  }

  /* Grid — full width, no card boxing */
  .grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .grid-section { padding: 0 !important; }
  .grid-card {
    background: transparent !important;
    border-radius: 0 !important; margin-bottom: 25px;
    border: none !important;
  }
  .grid-card:hover { transform: none !important; box-shadow: none !important; }
  .grid-thumb {
    height: auto !important; border-radius: 0 !important;
    width: 100vw; margin-left: calc(-50vw + 50%);
  }
  .grid-thumb img { width: 100% !important; height: auto !important; object-fit: contain !important; }
  .grid-body { padding: 12px 20px !important; }

  /* Hide "More info" — show full description + CTA's directly */
  .card-link { display: none !important; }
  .grid-body .card-desc { display: none !important; }
  .card-expand {
    max-height: none !important; padding: 0 20px 5px !important;
    opacity: 1 !important; border-top: none !important;
  }
  .card-expand .card-desc-full { font-size: 14px; }

  /* CTA cards — compact */
  .cta-card { min-height: 150px; padding: 20px; margin: 0 15px 25px; border-radius: 12px !important; }
  .cta-card .cta-icon { font-size: 28px; margin-bottom: 10px; }
  .cta-card h3 { font-size: 18px; }
  .cta-card p { font-size: 12px; }

  /* Bottom CTA */
  .bottom-cta { margin: 15px; padding: 25px 20px; border-radius: 12px; }
  .bottom-cta h2 { font-size: 20px; }
  .bottom-cta p { font-size: 13px; }

  /* Crossfade mobile */
  .crossfade { position: relative; min-height: 0 !important; }
  .crossfade img {
    width: 100% !important; height: auto !important; min-height: 0 !important;
    object-fit: cover !important; border-radius: 0 !important;
  }
  .crossfade img:first-child { position: relative !important; }
  .crossfade img:not(:first-child) {
    position: absolute !important; inset: 0 !important; height: 100% !important;
  }
}

/* === QUICK CONTACT: COLORED VARIANTS === */
.qc-btn.qc-call {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}
.qc-btn.qc-call:hover {
  background: rgba(0,210,211,0.1);
  box-shadow: 0 4px 20px rgba(0,210,211,0.2);
}

.qc-btn.qc-ig {
  border-color: #E1306C;
  color: #E1306C;
}
.qc-btn.qc-ig:hover {
  background: rgba(225,48,108,0.08);
  box-shadow: 0 4px 20px rgba(225,48,108,0.2);
}

.qc-btn.qc-signal {
  border-color: #3A76F0;
  color: #3A76F0;
}
.qc-btn.qc-signal:hover {
  background: rgba(58,118,240,0.08);
  box-shadow: 0 4px 20px rgba(58,118,240,0.2);
}

.qc-btn.qc-msg {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}
.qc-btn.qc-msg:hover {
  background: rgba(0,210,211,0.1);
  box-shadow: 0 4px 20px rgba(0,210,211,0.2);
}

.qc-btn svg {
  flex-shrink: 0;
}

/* === SUBMIT BUTTON === */
.btn-submit {
  background: var(--color-cyan); color: #000;
  padding: 12px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  border: none; cursor: pointer;
  font-family: var(--font-body);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,210,211,0.3);
}

/* === FOUNDER SECTION === */
.founder-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  max-width: 1000px; margin: 30px auto; align-items: start;
}

.founder-subtitle {
  color: var(--color-cyan); font-style: italic;
  margin-bottom: 20px; font-size: 17px;
}

.founder-heading {
  font-size: 20px; margin: 24px 0 10px;
  color: var(--color-white);
}

.founder-text p {
  margin-bottom: 16px;
}

.founder-photo {
  border-radius: 12px; overflow: hidden;
  position: sticky; top: 100px;
}

.founder-photo img {
  width: 100%; height: auto; object-fit: cover;
  border-radius: 12px;
}

/* === HIGHLIGHTS LIST === */
.highlights-list {
  list-style: none; padding: 0; margin-top: 16px;
}

.highlight-item {
  padding: 12px 0; border-bottom: 1px solid #222;
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
}

.highlight-check {
  color: var(--color-cyan); font-size: 16px;
  flex-shrink: 0;
}

/* === CTA PRIMARY (solid cyan) === */
.cta-primary {
  background: var(--color-cyan); color: #000;
  padding: 10px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,210,211,0.3);
  color: #000;
}

/* === BLOG LISTING === */
.blog-listing {
  padding-top: 40px; padding-bottom: 60px;
}

.blog-listing-header {
  max-width: 700px; margin: 0 auto 40px;
  text-align: center;
}

.blog-listing-header h1 {
  font-size: 36px; margin-bottom: 12px;
}

.blog-listing-header p {
  color: var(--color-muted); font-size: 16px; line-height: 1.6;
}

.blog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
  max-width: 900px; margin: 0 auto;
}

.blog-card {
  background: var(--color-card2); border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,210,211,0.12);
  border-color: rgba(0,210,211,0.15);
}

.blog-card-thumb {
  background: #0d0d0d; height: 200px; overflow: hidden;
}

.blog-card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}

.blog-card-body {
  padding: 20px; flex: 1;
  display: flex; flex-direction: column;
}

.blog-card-date {
  font-size: 12px; color: var(--color-muted);
  letter-spacing: 0.5px; margin-bottom: 8px;
  font-family: var(--font-body);
}

.blog-card-body h2 {
  font-size: 20px; margin-bottom: 8px; line-height: 1.3;
}

.blog-card-body h2 a {
  transition: color 0.3s;
}

.blog-card-body h2 a:hover {
  color: var(--color-cyan);
}

.blog-card-desc {
  color: var(--color-muted); font-size: 14px; line-height: 1.6;
  margin-bottom: 16px; flex: 1;
}

.blog-card-link {
  font-size: 14px; color: var(--color-cyan);
  transition: opacity 0.3s;
}

.blog-card-link:hover { opacity: 0.7; }

.blog-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 12px;
}

.blog-tag {
  font-size: 11px; color: var(--color-cyan);
  background: rgba(0,210,211,0.08);
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.3px;
}

/* === BLOG POST === */
.blog-post {
  max-width: 760px; margin: 0 auto;
  padding-top: 30px; padding-bottom: 60px;
}

.blog-back {
  display: inline-block; margin-bottom: 20px;
  font-size: 14px; color: var(--color-cyan);
  transition: opacity 0.3s;
}

.blog-back:hover { opacity: 0.7; }

.blog-post-header {
  margin-bottom: 30px;
}

.blog-post-header time {
  display: block; font-size: 13px; color: var(--color-muted);
  letter-spacing: 0.5px; margin-bottom: 10px;
}

.blog-post-header h1 {
  font-size: 40px; line-height: 1.2; margin-bottom: 14px;
}

.blog-post-desc {
  font-size: 17px; color: var(--color-muted);
  line-height: 1.6; font-style: italic;
}

.blog-post-header .blog-card-tags {
  margin-top: 16px;
}

.blog-post-hero {
  width: 100%; border-radius: 12px; overflow: hidden;
  margin-bottom: 40px;
}

.blog-post-hero img {
  width: 100%; height: auto; display: block;
}

/* Blog post body typography */
.blog-post-content {
  font-size: 16px; line-height: 1.8;
  color: var(--color-text);
}

.blog-post-content h2 {
  font-size: 26px; margin: 40px 0 16px;
  color: var(--color-white);
}

.blog-post-content h3 {
  font-size: 20px; margin: 32px 0 12px;
  color: var(--color-white);
}

.blog-post-content p {
  margin-bottom: 20px;
}

.blog-post-content a {
  color: var(--color-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s;
}

.blog-post-content a:hover { opacity: 0.7; }

.blog-post-content strong {
  color: var(--color-white); font-weight: 600;
}

.blog-post-content em {
  font-style: italic;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 20px 24px;
}

.blog-post-content li {
  margin-bottom: 8px;
}

.blog-post-content blockquote {
  border-left: 3px solid var(--color-cyan);
  padding: 12px 20px; margin: 24px 0;
  background: var(--color-card);
  border-radius: 0 8px 8px 0;
  color: var(--color-muted);
  font-style: italic;
}

.blog-post-content pre {
  background: var(--color-card); padding: 20px;
  border-radius: 8px; overflow-x: auto;
  margin: 24px 0; font-size: 14px;
  border: 1px solid #222;
}

.blog-post-content code {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.9em;
}

.blog-post-content p code {
  background: var(--color-card); padding: 2px 6px;
  border-radius: 4px; font-size: 0.85em;
}

.blog-post-content img {
  border-radius: 8px; margin: 24px 0;
}

.blog-post-content hr {
  border: none; border-top: 1px solid #222;
  margin: 40px 0;
}

/* Blog post navigation (prev/next) */
.blog-post-nav {
  display: flex; justify-content: space-between; gap: 20px;
  margin-top: 50px; padding-top: 30px;
  border-top: 1px solid #1a1a1a;
}

.blog-post-nav a {
  font-size: 14px; color: var(--color-cyan);
  transition: opacity 0.3s;
  max-width: 45%;
}

.blog-post-nav a:hover { opacity: 0.7; }

.blog-nav-label {
  display: block; font-size: 11px; color: var(--color-muted);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 4px;
}

.blog-nav-next {
  text-align: right; margin-left: auto;
}

/* === RESPONSIVE: BLOG === */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .blog-post-header h1 { font-size: 28px; }
  .blog-post-content h2 { font-size: 22px; }
  .blog-post-hero { border-radius: 0; margin-left: -20px; margin-right: -20px; width: calc(100% + 40px); }
  .blog-post-nav { flex-direction: column; }
  .blog-post-nav a { max-width: 100%; }
  .blog-nav-next { text-align: left; margin-left: 0; }
}

/* === RESPONSIVE: FOUNDER === */
@media (max-width: 900px) {
  .founder-section { grid-template-columns: 1fr; }
  .founder-photo { position: static; }
}
