/* ============================================================
   BOKKAS — Main Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy:        #0D0117;
  --blue-mid:    #180930;
  --blue-accent: #7C3AED;
  --blue-hover:  #6D28D9;
  --blue-light:  #A855F7;
  --blue-pale:   #F5F0FF;
  --blue-border: #DDD6FE;
  --white:       #FFFFFF;
  --text-dark:   #F8F4FF;
  --text-body:   rgba(255,255,255,0.75);
  --text-muted:  rgba(255,255,255,0.5);
  --text-xmuted: rgba(255,255,255,0.35);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.5), 0 4px 16px rgba(0,0,0,0.3);
  --shadow-blue: 0 8px 32px rgba(124,58,237,0.35);

  --transition:  0.2s ease;
  --max-w:       1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea, button { font-size: inherit; }

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 12px;
}

h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
}

.btn:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--blue-accent);
  color: var(--white);
  border-color: var(--blue-accent);
}
.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(168,85,247,0.5);
  color: var(--white);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,1,23,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168,85,247,0.12);
  transition: box-shadow var(--transition);
}

.nav-wrapper.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
  flex-shrink: 0;
}

.nav-icon {
  width: 36px;
  height: 36px;
}

.nav-brand { letter-spacing: -0.02em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 120px 0 100px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.18);
  color: var(--blue-light);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 6px var(--blue-light);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.highlight {
  background: linear-gradient(135deg, #C084FC, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: #94A3B8;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-actions .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #64748B;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-pills span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #94A3B8;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 13px;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.4) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--navy);
}

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

.service-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(168,85,247,0.15);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  border-color: var(--blue-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card--featured {
  background: var(--navy);
  border-color: var(--blue-accent);
  box-shadow: var(--shadow-blue);
}

.service-card--featured h3,
.service-card--featured p,
.service-card--featured .service-features li {
  color: var(--white);
}

.service-card--featured .service-num {
  color: rgba(255,255,255,0.2);
}

.service-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(124,58,237,0.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.service-card--featured .service-icon {
  background: rgba(124,58,237,0.3);
}

.service-icon svg { width: 100%; height: 100%; }

.service-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 28px;
  pointer-events: none;
}

.service-card h3 { font-size: 20px; }

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-accent);
  flex-shrink: 0;
}

.service-card--featured .service-features li::before {
  background: var(--blue-light);
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}

.service-link:hover { gap: 8px; }

.service-link--light { color: var(--blue-light); }
.service-link--light:hover { color: var(--white); }

/* ============================================================
   WORKSHOPS
   ============================================================ */
.workshops {
  background: var(--blue-pale);
}

.workshops-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.workshops-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.workshops-content h2 { margin-top: 0; }

.workshops-content > p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: -8px;
}

.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workshop-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.workshop-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.workshop-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.workshop-item span {
  font-size: 14px;
  color: var(--text-muted);
}

.workshop-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.format-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-light);
}

.format-tag svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Visual side */
.workshops-visual {
  position: relative;
  height: 380px;
}

.visual-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(168,85,247,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.visual-card--1 {
  top: 0;
  left: 0;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.visual-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
  flex-shrink: 0;
}

.visual-lines { display: flex; flex-direction: column; gap: 8px; flex: 1; }

.visual-line {
  height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,0.12);
  width: 60%;
}

.visual-line--wide { width: 100%; }

.visual-card--2 {
  bottom: 60px;
  right: 0;
  text-align: center;
  padding: 24px 28px;
}

.visual-stat {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue-accent);
  line-height: 1;
}

.visual-stat span {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
}

.visual-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.visual-card--3 {
  bottom: 0;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
}

.visual-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-accent);
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visual-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

.visual-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   USE CASES
   ============================================================ */
.use-cases {
  background: var(--blue-mid);
}

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

.use-case-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(168,85,247,0.15);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.use-case-card:hover {
  border-color: var(--blue-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.use-case-icon {
  width: 48px;
  height: 48px;
}

.use-case-icon svg { width: 100%; height: 100%; }

.use-case-industry {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-accent);
}

.use-case-card h3 {
  font-size: 17px;
  line-height: 1.3;
}

.use-case-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.use-case-stat {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
  background: rgba(124,58,237,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  display: inline-block;
  margin-top: auto;
}

.use-case-stat strong {
  font-size: 16px;
}

.use-case-card--cta {
  background: rgba(124,58,237,0.1);
  border-color: rgba(168,85,247,0.3);
  align-items: flex-start;
  justify-content: center;
}

.use-case-cta-icon {
  width: 56px;
  height: 56px;
}

.use-case-cta-icon svg { width: 100%; height: 100%; }

.use-case-card--cta h3 { font-size: 20px; }

.use-case-card--cta p {
  font-size: 15px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--navy);
}

.testimonials .section-header h2,
.testimonials .section-header .section-label { color: var(--white); }
.testimonials .section-header { color: var(--white); }
.testimonials .section-header p { color: #64748B; }

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

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(168,85,247,0.3);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-size: 48px;
  line-height: 1;
  color: var(--blue-accent);
  font-family: Georgia, serif;
  margin-bottom: -8px;
}

.testimonial-text {
  font-size: 15px;
  color: #CBD5E1;
  line-height: 1.7;
  flex: 1;
}

.testimonial-result {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 100px;
  padding: 4px 14px;
  display: inline-block;
  align-self: flex-start;
}

.testimonial-result strong {
  font-size: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(168,85,247,0.3);
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 12px;
  color: #64748B;
  line-height: 1.4;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--blue-pale);
}

/* Kolin bio */
.about-kolin {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(168,85,247,0.15);
}

.kolin-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.kolin-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px solid rgba(168,85,247,0.3);
  box-shadow: var(--shadow-blue);
  position: relative;
}

.kolin-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.kolin-initials {
  font-size: 52px;
  font-weight: 800;
  color: rgba(255,255,255,0.8);
  z-index: 1;
  pointer-events: none;
}

.kolin-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-light);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  box-shadow: var(--shadow-sm);
}

.kolin-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.kolin-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kolin-content h2 {
  color: var(--text-dark);
  margin-bottom: 0;
}

.kolin-title {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: -8px;
}

.kolin-content p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
}

.kolin-content em {
  color: var(--blue-accent);
  font-style: normal;
  font-weight: 600;
}

.kolin-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(168,85,247,0.15);
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: rgba(124,58,237,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
}

.pillar-icon svg { width: 100%; height: 100%; }

.pillar strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pillar span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.kolin-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0A66C2;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition);
  align-self: flex-start;
}

.kolin-linkedin svg { width: 16px; height: 16px; }

.kolin-linkedin:hover {
  background: #004182;
  transform: translateY(-1px);
}

/* Bokka name section */
.bokka-name-section {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.bokka-icon-small svg {
  width: 80px;
  height: 80px;
}

.bokka-name-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bokka-name-content h3 {
  color: var(--white);
  font-size: 28px;
}

.bokka-name-content p {
  font-size: 16px;
  color: #94A3B8;
  line-height: 1.75;
}

.bokka-name-content em {
  color: var(--blue-light);
  font-style: normal;
  font-weight: 600;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

.value-item {
  font-size: 15px;
  color: #94A3B8;
  display: flex;
  gap: 8px;
}

.value-item strong {
  color: var(--white);
  font-weight: 600;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  aspect-ratio: 4/3;
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13,1,23,0.95) 0%, transparent 100%);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  padding: 32px 16px 14px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--blue-pale);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.contact-content h2 { line-height: 1.15; }

.contact-content > p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.contact-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.contact-point svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-email {
  color: var(--blue-accent);
  font-weight: 600;
  transition: color var(--transition);
}
.contact-email:hover { color: var(--blue-hover); text-decoration: underline; }

/* Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(168,85,247,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid rgba(168,85,247,0.15);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 15px;
  color: var(--text-dark);
  background: rgba(255,255,255,0.06);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-xmuted);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

.form-success {
  font-size: 15px;
  font-weight: 500;
  color: #059669;
  text-align: center;
  min-height: 0;
  transition: opacity var(--transition);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding-top: 64px;
}

.footer-inner {
  display: flex;
  gap: 64px;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 260px;
}

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

.footer-brand p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 120px;
}

.footer-col strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: #64748B;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--blue-light); }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: 13px;
  color: #475569;
}

.footer-address {
  font-size: 13px;
  font-style: normal;
  color: #475569;
  line-height: 1.7;
  margin-top: 4px;
}

.footer-address a {
  color: var(--blue-light);
  transition: color var(--transition);
}

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

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 220px;
  overflow: hidden;
}

.photo-strip-item {
  position: relative;
  overflow: hidden;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.75) saturate(1.1);
}

.photo-strip-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1.2);
}

.photo-strip-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 300px; }
}
@media (max-width: 480px) {
  .photo-strip { grid-template-columns: 1fr 1fr; height: 200px; }
}

/* ============================================================
   ARTISTIC FLAIR — Dot grid, glassmorphism, glows, gradients
   ============================================================ */

/* --- Dot grid overlay on navy sections --- */
.hero::after,
.testimonials::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(168,85,247,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.hero > *,
.testimonials > * { position: relative; z-index: 1; }

/* --- Hero: richer multi-colour glow mesh --- */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 110% 10%, rgba(124,58,237,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at -10% 80%, rgba(168,85,247,0.25) 0%, transparent 55%),
    var(--navy);
}

/* Extra glow orb left side */
.hero::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(124,58,237,0.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* --- Gradient text on section h2 headings --- */
.services .section-header h2,
.use-cases .section-header h2,
.workshops .section-header h2,
.about .section-header h2,
.gallery .section-header h2,
.contact-content h2 {
  background: linear-gradient(135deg, #ffffff 30%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials .section-header h2 {
  background: linear-gradient(135deg, #ffffff 30%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Glassmorphism testimonial cards --- */
.testimonials-grid {
  position: relative;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(168,85,247,0.4);
  box-shadow: 0 0 32px rgba(124,58,237,0.2), 0 8px 24px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}

/* --- Featured service card: gradient border glow --- */
.service-card--featured {
  background: linear-gradient(160deg, rgba(124,58,237,0.25) 0%, var(--navy) 100%);
  box-shadow: 0 0 0 1.5px rgba(168,85,247,0.5),
              0 16px 48px rgba(124,58,237,0.4),
              inset 0 1px 0 rgba(255,255,255,0.1);
}

/* --- Service cards: stronger hover glow --- */
.service-card:not(.service-card--featured):hover {
  box-shadow: 0 0 0 1.5px var(--blue-accent),
              0 12px 40px rgba(124,58,237,0.15),
              0 4px 12px rgba(0,0,0,0.06);
}

/* --- About section: dark purple gradient --- */
.about {
  background: linear-gradient(160deg, var(--blue-mid) 0%, var(--navy) 60%, #1a0930 100%);
}

/* --- Workshops section: dark purple --- */
.workshops {
  background: linear-gradient(180deg, var(--blue-mid) 0%, var(--navy) 100%);
}

/* --- Gallery: expand to 3-col on large, captions enhanced --- */
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,1,23,0.7) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.gallery-caption { z-index: 2; }

/* --- Use case cards: subtle left accent bar on hover --- */
.use-case-card:hover {
  border-left: 3px solid var(--blue-accent);
  padding-left: 25px;
}

/* --- Pillar icons: glow on hover --- */
.pillar:hover .pillar-icon {
  box-shadow: 0 0 20px rgba(168,85,247,0.3);
}

/* --- Kolin photo: animated glow ring --- */
.kolin-photo {
  box-shadow:
    0 0 0 4px rgba(124,58,237,0.2),
    0 0 40px rgba(124,58,237,0.25),
    var(--shadow-lg);
  animation: photo-pulse 4s ease-in-out infinite;
}

@keyframes photo-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(124,58,237,0.3), 0 0 50px rgba(124,58,237,0.3), var(--shadow-lg); }
  50%       { box-shadow: 0 0 0 4px rgba(168,85,247,0.5), 0 0 70px rgba(124,58,237,0.5), var(--shadow-lg); }
}

/* --- Contact section: dark purple gradient --- */
.contact {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--navy) 60%, #1a0930 100%);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: hide nav links early since we now have 6 items */
@media (max-width: 1024px) {
  /* Layout grids */
  .services-grid       { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .use-cases-grid      { grid-template-columns: repeat(2, 1fr); }
  .workshops-inner     { grid-template-columns: 1fr; gap: 48px; }
  .workshops-visual    { display: none; }
  .testimonials-grid   { grid-template-columns: repeat(2, 1fr); }
  .contact-inner       { grid-template-columns: 1fr; gap: 48px; }

  /* About / Kolin */
  .about-kolin         { grid-template-columns: 1fr; gap: 40px; }
  .kolin-photo-wrap    { flex-direction: row; align-items: center; gap: 24px; }
  .kolin-photo         { width: 120px; height: 120px; flex-shrink: 0; }
  .kolin-initials      { font-size: 32px; }
  .bokka-name-section  { grid-template-columns: 1fr; gap: 24px; }

  /* Nav: collapse to hamburger at 1024px (6 links overflow earlier) */
  .nav-links,
  .nav-cta { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(13,1,23,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(168,85,247,0.15);
    box-shadow: var(--shadow-md);
    gap: 0;
    z-index: 99;
  }

  .nav-links.open a {
    padding: 14px 8px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-toggle { display: flex; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }

  .services-grid       { max-width: 100%; }
  .use-cases-grid      { grid-template-columns: 1fr; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .about-kolin         { grid-template-columns: 1fr; }
  .kolin-photo-wrap    { align-items: flex-start; }
  .bokka-name-section  { padding: 32px 20px; }

  /* Hero */
  .hero { padding: 72px 0 56px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; width: 100%; }
  .hero-trust  { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }
  .section-header p { font-size: 16px; }

  /* Services */
  .service-card { padding: 28px 24px; }

  /* Workshops */
  .workshop-formats { gap: 8px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-caption { opacity: 1; transform: none; font-size: 12px; padding: 20px 12px 10px; }

  /* Testimonials */
  .testimonial-card { padding: 24px 20px 20px; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }

  /* Touch targets: all buttons min 44px tall */
  .btn { min-height: 44px; }
  .btn-lg { min-height: 52px; }
  .form-group input,
  .form-group select,
  .form-group textarea { min-height: 44px; font-size: 16px; } /* 16px prevents iOS zoom */

  /* Footer */
  .footer-inner { flex-direction: column; gap: 36px; }
  .footer-nav   { gap: 28px; flex-wrap: wrap; }
  .footer-col   { min-width: calc(50% - 14px); }
}

/* Small phones */
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  h3 { font-size: 18px; }

  /* Gallery: single column on small phones */
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-item { aspect-ratio: 4/3; }

  /* Use cases */
  .use-cases-grid { grid-template-columns: 1fr; }

  /* Kolin photo smaller */
  .kolin-photo { width: 90px; height: 90px; }
  .kolin-initials { font-size: 24px; }

  /* Bokka name section */
  .bokka-name-section { padding: 24px 16px; }
  .bokka-icon-small svg { width: 56px; height: 56px; }

  /* Footer cols: full width */
  .footer-col { min-width: 100%; }
  .footer-nav { gap: 20px; }
}
