/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-card: #ffffff;

  --accent: #1a3a5c;
  --accent-light: #2a5a8c;
  --accent-subtle: rgba(26, 58, 92, 0.06);
  --accent-border: rgba(26, 58, 92, 0.12);
  --gold: #b08840;
  --gold-subtle: rgba(176, 136, 64, 0.08);

  --text-primary: #1a1a2e;
  --text-secondary: #555770;
  --text-muted: #8b8da3;
  --border-color: #e8e8ed;
  --border-hover: #ccc;

  --font-display: "Outfit", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;

  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1080px;
  --nav-height: 72px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Hidden in normal view, visible in reader mode (CSS stripped) */
.reader-only-img {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  border-radius: 50%;
  transition: opacity 0.2s ease;
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
section {
  position: relative;
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-primary);
}
.section-subtitle {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
.section-divider {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 1px;
  background: var(--border-color);
  border: none;
}

/* ============================================
   HIDDEN BG GLOW (disabled)
   ============================================ */
.bg-glow {
  display: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .section-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-greeting {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.1s;
}

.hero-name {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text-primary);
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.2s;
}

.hero-name .highlight {
  color: var(--text-primary);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.3s;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.4s;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.5s;
}

.hero-photo-wrapper {
  flex-shrink: 0;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 0.3s;
}

.hero-photo-ring {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: none;
  padding: 0;
}

.hero-photo-wrapper figcaption {
  text-align: center;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 58, 92, 0.15);
}

.btn-outline {
  background: var(--accent);
  color: #fff;
}

.btn-outline:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 58, 92, 0.15);
}

/* ============================================
   VISION SECTION
   ============================================ */
.vision-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 48px;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vision-card {
  padding: 36px 28px;
  text-align: left;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: var(--bg-primary);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.vision-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.vision-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gold-subtle);
  font-size: 1.2rem;
  color: var(--gold);
}

.vision-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.vision-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-text .accent {
  color: var(--accent);
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  padding: 18px 0 18px 24px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg-primary);
}

.timeline-year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   GLASS CARD (now clean card)
   ============================================ */
.glass-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transform: none;
}

/* ============================================
   SOLCME SECTION
   ============================================ */
#solcme {
  background: var(--bg-secondary);
}

.solcme-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.solcme-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: var(--accent-subtle);
}

.solcme-logo {
  width: 700px;
  height: auto;
  filter: none;
  transition: opacity 0.3s ease;
}

.solcme-card:hover .solcme-logo {
  opacity: 0.9;
  filter: none;
}

.solcme-visual figcaption {
  text-align: center;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--accent);
}

.solcme-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solcme-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
  background: none;
  -webkit-text-fill-color: unset;
}

.solcme-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.feature-item i {
  color: var(--gold);
  font-size: 0.8rem;
  width: 20px;
  text-align: center;
}

.solcme-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
  transition: gap 0.2s ease;
}

.solcme-link:hover {
  gap: 12px;
}

/* ============================================
   INSTRUMENTS
   ============================================ */
.instruments-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}

.instruments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.instrument-card {
  text-align: center;
  padding: 28px 16px;
}

.instrument-card i,
.instrument-card .instrument-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.instrument-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.instrument-card .instrument-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   TECH STACK
   ============================================ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tech-card {
  text-align: center;
  padding: 28px 16px;
}

.tech-card i {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.2s ease;
}

.tech-card:hover i {
  transform: scale(1.08);
}

.tech-card h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.tech-card .tech-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Tech icon colors */
.tech-card .icon-react {
  color: #61dafb;
}
.tech-card .icon-ts {
  color: #3178c6;
}
.tech-card .icon-node {
  color: #68a063;
}
.tech-card .icon-python {
  color: #3776ab;
}
.tech-card .icon-three {
  color: #8b5cf6;
}
.tech-card .icon-firebase {
  color: #f5820d;
}
.tech-card .icon-mediapipe {
  color: var(--accent);
}
.tech-card .icon-html {
  color: #e44d26;
}
.tech-card .icon-vercel {
  color: #333;
}
.tech-card .icon-linux {
  color: #f5b400;
}
.tech-card .icon-headphones {
  color: #8b5cf6;
}

/* ============================================
   CTA CARD
   ============================================ */
.cta-card {
  display: flex;
  width: 60%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 40px;
  flex-wrap: wrap;
  background: var(--bg-secondary);
}

.cta-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 460px;
}

/* ============================================
   CONTACT / FOOTER
   ============================================ */
.contact {
  text-align: center;
}

.contact .section-label {
  justify-content: center;
}

.contact .section-title {
  margin-bottom: 12px;
}

.contact-subtitle {
  color: var(--text-secondary);
  font-size: 1.02rem;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.social-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 50%;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  transition: all 0.2s ease;
}

.social-link:hover {
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.social-link.github:hover {
  color: #333;
  border-color: #333;
}
.social-link.linkedin:hover {
  color: #0a66c2;
  border-color: #0a66c2;
}
.social-link.twitter:hover {
  color: #1d9bf0;
  border-color: #1d9bf0;
}
.social-link.facebook:hover {
  color: #1877f2;
  border-color: #1877f2;
}
.social-link.instagram:hover {
  color: #e1306c;
  border-color: #e1306c;
}
.social-link.email:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 12px 24px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.trust-badge {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  text-align: center;
}

.trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border-hover);
  flex-shrink: 0;
  display: inline-block;
  margin: 0 4px;
}

/* ============================================
   PRESS & MEDIA SECTION
   ============================================ */
.press-subtitle {
  color: var(--text-secondary);
  font-size: 1.02rem;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.press-card {
  padding: 32px 24px;
  text-align: left;
}

.press-card > i {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.press-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.press-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.press-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.press-download:hover {
  opacity: 0.7;
}

.press-contact {
  text-align: center;
  padding-top: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.press-contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.press-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-press-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.footer-press-link:hover {
  color: var(--accent);
}

.footer-bottom span {
  color: var(--text-secondary);
}

/* ============================================
   SOCIAL SIDEBAR
   ============================================ */
.social-sidebar {
  position: fixed;
  left: 28px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 50;
}

.sidebar-ball {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.sidebar-ball:hover {
  color: var(--text-primary);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.sidebar-ball.github:hover {
  color: #333;
  border-color: #333;
}
.sidebar-ball.linkedin:hover {
  color: #0a66c2;
  border-color: #0a66c2;
}
.sidebar-ball.twitter:hover {
  color: #1d9bf0;
  border-color: #1d9bf0;
}
.sidebar-ball.facebook:hover {
  color: #1877f2;
  border-color: #1877f2;
}
.sidebar-ball.instagram:hover {
  color: #e1306c;
  border-color: #e1306c;
}
.sidebar-ball.email:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.sidebar-line {
  width: 1px;
  height: 80px;
  background: var(--border-color);
}

/* ============================================
   MASTERSTACK
   ============================================ */
#masterstack .glass-card {
  background: var(--bg-secondary);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .section-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-photo-ring {
    width: 260px;
    height: 260px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solcme-card {
    grid-template-columns: 1fr;
  }

  .solcme-visual {
    padding: 32px;
  }

  .solcme-logo {
    width: 160px;
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vision-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 20px;
    gap: 14px;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-name {
    font-size: 2.4rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-container {
    padding: 70px 20px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .instruments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solcme-info {
    padding: 28px;
  }

  .social-sidebar {
    display: none;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .press-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar-inner {
    flex-direction: column;
    gap: 10px;
  }

  .trust-badges {
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }

  .trust-badge {
    margin: 2px 0;
    text-align: center;
    display: block;
  }

  .trust-dot {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 2rem;
  }

  .hero-photo-wrapper {
    margin: 20px auto;
  }

  .hero-photo-ring {
    width: 220px;
    height: 220px;
    padding: 12px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .hero-photo {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
