/* === DANNY FRIETMAN — BOLD & ENERGETIC === */

/* --- HEADER / NAV --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-header.hidden { transform: translateY(-100%); }
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav-logo span { color: var(--color-accent); }

.nav-links {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--color-accent);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

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

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-6);
}

.hero-content { z-index: 2; }

.hero-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  display: inline-block;
}

.hero-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1.05;
}

.hero-title .accent { color: var(--color-accent); }

.hero-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--space-8);
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.hero-rotator {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.hero-rotator .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  box-shadow: none;
  max-width: none;
}

.hero-rotator .hero-slide.active {
  opacity: 1;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 2px solid var(--color-accent);
  border-radius: 12px;
  opacity: 0.3;
  z-index: -1;
}

/* Glow bg */
.hero-bg-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* --- SECTION DEFAULTS --- */
.section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.section-intro {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: var(--space-12);
}

/* --- STATS BAR --- */
.stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-10) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- PARTNER LOGOS --- */
.logos-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-8) 0;
  overflow: hidden;
}

.logos-section .section-label {
  margin-bottom: var(--space-6);
  padding: 0 var(--space-6);
}

.logos-track {
  display: flex;
  width: max-content;
  animation: scroll-logos 100s linear infinite;
}

.logos-track:hover {
  animation-play-state: paused;
}

.logos-slide {
  display: flex;
  align-items: center;
  gap: clamp(32px, 4vw, 56px);
  padding: 0 clamp(16px, 2vw, 28px);
}

.partner-logo {
  height: 40px;
  width: 110px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1) grayscale(1) opacity(0.55);
  transition: filter 0.3s ease;
}

.partner-logo--wide {
  width: 150px;
}

.partner-logo--narrow {
  width: 50px;
}

.partner-logo:hover {
  filter: brightness(0) invert(1) grayscale(1) opacity(0.9);
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- CAROUSEL --- */
.carousel-section {
  padding: clamp(var(--space-12), 6vw, var(--space-20)) 0;
  overflow: hidden;
  background: var(--color-surface);
}

.carousel-track {
  display: flex;
  gap: var(--space-4);
  animation: scroll-left 160s linear infinite;
  width: max-content;
}

.carousel-item {
  flex: 0 0 auto;
  width: 300px;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s ease;
}

.carousel-item:hover img { transform: scale(1.05); }

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- PROJECT CARDS --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-6);
}

.project-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: var(--space-8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.project-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover::before { opacity: 1; }

.project-role {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.project-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.project-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.project-tag {
  display: inline-block;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  background: var(--color-surface-2);
  padding: var(--space-1) var(--space-3);
  border-radius: 100px;
  margin-top: var(--space-4);
  margin-right: var(--space-2);
}

/* --- TIMELINE --- */
.timeline {
  position: relative;
  padding-left: var(--space-10);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-10);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-10) + 4px);
  top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid var(--color-bg);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.timeline-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.timeline-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- SPEAKING EVENTS --- */
.events-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.event-row:hover {
  border-color: var(--color-accent);
  background: var(--color-surface-2);
}

.event-year {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
}

.event-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
}

.event-detail {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: 2px;
}

.event-role {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* --- AWARDS --- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.award-card {
  text-align: center;
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.award-icon {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.award-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.award-detail {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.contact-info-block {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-method:last-child { border-bottom: none; }

.contact-method-icon {
  width: 40px; height: 40px;
  background: var(--color-accent-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 20px; height: 20px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
}

.contact-method-label {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-method-value {
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
}

/* --- FOOTER --- */
.site-footer {
  padding: var(--space-12) 0 var(--space-8);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.footer-logo span { color: var(--color-accent); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
  list-style: none;
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.footer-links a:hover { color: var(--color-text); }

.footer-credit {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer-credit a { color: var(--color-text-faint); }
.footer-credit a:hover { color: var(--color-text-muted); }

/* --- SCROLL ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- PAGE HEADER (interior pages) --- */
.page-header {
  padding-top: calc(80px + var(--space-16));
  padding-bottom: var(--space-12);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-header-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.page-header-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
}

/* --- ABOUT PAGE SPECIFIC --- */
.about-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: var(--space-12);
  align-items: start;
}

.about-photo {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.about-photo img {
  width: 100%;
  border-radius: 12px;
}

.about-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--color-bg), transparent);
  pointer-events: none;
}

.about-text p {
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.about-text p:first-child {
  font-size: var(--text-lg);
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.5;
}

/* Speaking feature photo */
.speaking-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  align-items: center;
}

.speaking-feature-img {
  border-radius: 12px;
  overflow: hidden;
}

.speaking-feature-img img {
  width: 100%;
  border-radius: 12px;
}

.speaking-cta {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: var(--space-8);
  text-align: center;
  margin-top: var(--space-12);
}

.speaking-cta-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.speaking-cta-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-6);
    gap: var(--space-4);
  }
  .nav-toggle { display: block; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: var(--space-12);
  }
  .hero-content { order: 2; }
  .hero-image { order: 1; justify-self: center; width: 100%; max-width: 280px; }
  .hero-image img { max-width: 280px; }
  .hero-rotator { max-width: 280px; width: 280px; height: 373px; aspect-ratio: auto; }
  .hero-image::before { display: none; }
  .hero-subtitle { margin-inline: auto; }
  .hero-ctas { justify-content: center; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }

  .projects-grid { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 300px; }

  .contact-grid { grid-template-columns: 1fr; }

  .event-row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
  .event-role { margin-top: var(--space-2); }

  .speaking-feature { grid-template-columns: 1fr; }

  .carousel-item { width: 240px; height: 192px; }

  /* Testimonials mobile */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Videos mobile */
  .videos-grid { grid-template-columns: 1fr; }

  /* Hide sidebar on mobile */
  .sticky-sidebar { display: none !important; }

  /* Show mobile CTA bar */
  .mobile-cta-bar { display: flex !important; }

  /* Add bottom padding to body so mobile CTA bar doesn't cover footer */
  body { padding-bottom: 60px; }
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: var(--space-8);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.35;
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  pointer-events: none;
}

.testimonial-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-title {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.testimonials-link {
  text-align: center;
}

.testimonials-link a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-accent);
  transition: color 0.2s;
}

.testimonials-link a:hover {
  color: var(--color-accent-hover);
}

/* === YOUTUBE VIDEOS SECTION === */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

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

.video-caption {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
}

/* === STICKY SIDEBAR (desktop only) === */
.sticky-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: none;
  border-radius: 0 12px 12px 0;
  padding: var(--space-3) var(--space-2);
  box-shadow: var(--shadow-md);
}

.sticky-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text-muted);
  transition: color 0.2s;
  text-decoration: none;
}

.sticky-sidebar a:hover {
  color: var(--color-accent);
}

.sticky-sidebar svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* === MOBILE CTA BAR === */
.mobile-cta-bar {
  display: none; /* shown via media query */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--color-accent);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.4);
}

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-4);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.mobile-cta-bar a:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

.mobile-cta-bar a + a {
  border-left: 1px solid rgba(255,255,255,0.2);
}

.mobile-cta-bar svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* === PROJECT LINKS === */
.project-link {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.project-link:hover {
  color: var(--color-accent-hover);
}

/* === TESTIMONIAL SUBMIT FORM === */
.testimonial-submit {
  margin-top: var(--space-12);
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-submit-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-6);
  text-align: center;
}

.testimonial-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.testimonial-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

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