:root {
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --charcoal: #2d2d2d;
    --gray: #6b6b6b;
    --light-gray: #9a9a9a;
    --bg: #fafafa;
    --off-white: #f5f5f5;
    --border: #e5e5e5;
    --accent: #c9a962;
    --accent-dark: #b89852;
    --white: #ffffff;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: var(--dark);
    line-height: 1.47;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.022em;
  }
  h1, h2, h3, h4 {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    letter-spacing: -0.022em;
    color: var(--black);
  }
  a { text-decoration: none; color: inherit; }

  /* Navigation */
  .nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0;
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    height: 32px;
  }
  .nav-logo img {
    height: 32px;
    width: auto;
    display: block;
  }
  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a.active { color: var(--black); }
  .nav-links a.active::after { width: 100%; }
  @media (max-width: 768px) {
    .nav-inner { padding: 0 24px; }
    .nav-links { display: none; }
  }

  /* Hero */
  .hero {
    padding: 140px 40px 80px;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; gap: 48px; padding: 120px 24px 60px; }
  }
  .hero-image {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--off-white);
    overflow: hidden;
    border-radius: 16px;
  }
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
  }
  .hero-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .hero-carousel-track img {
    min-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.3s, transform 0.3s;
    opacity: 0;
  }
  .hero-image:hover .hero-carousel-btn { opacity: 1; }
  .hero-carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
  }
  .hero-carousel-btn.prev { left: 16px; }
  .hero-carousel-btn.next { right: 16px; }
  .hero-carousel-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--black);
    stroke-width: 2;
    fill: none;
  }
  .hero-carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
  }
  .hero-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
  }
  .hero-carousel-dot.active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
  }
  .hero-content { max-width: 480px; }
  .hero-breadcrumb {
    font-size: 12px;
    letter-spacing: -0.01em;
    color: var(--light-gray);
    margin-bottom: 32px;
  }
  .hero-breadcrumb a:hover { color: var(--charcoal); }
  .hero-breadcrumb span { margin: 0 10px; }
  .hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 600;
  }
  .hero-subtitle {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.47;
  }
  .hero-price {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--black);
  }
  .hero-price .original {
    font-size: 1rem;
    color: var(--light-gray);
    text-decoration: line-through;
    margin-left: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  }
  .btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.3s ease;
  }
  .btn-primary {
    background: var(--white);
    color: var(--accent);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: btnPulse 3s ease-in-out infinite;
  }
  .btn-primary:hover {
    background: var(--accent);
    color: var(--black);
    box-shadow: 0 6px 24px rgba(201, 169, 98, 0.35);
    transform: translateY(-2px);
    animation: none;
  }
  .btn-outline {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
  }
  .btn-outline:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
  }
  @keyframes btnPulse {
    0%, 100% { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); }
    50% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12); }
  }
  .btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

  .hero-features {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
  }
  @media (max-width: 768px) {
    .hero-features { grid-template-columns: 1fr; gap: 16px; }
  }
  .hero-feature {
    text-align: center;
  }
  .hero-feature .val {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
    line-height: 1.2;
  }
  .hero-feature .lbl {
    font-size: 12px;
    letter-spacing: -0.01em;
    color: var(--light-gray);
    font-weight: 400;
  }
  .hero-feature .sub {
    font-size: 13px;
    color: var(--gray);
    margin-top: 2px;
    font-weight: 400;
  }

  /* Section */
  .section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 40px;
  }
  @media (max-width: 768px) {
    .section { padding: 80px 24px; }
  }
  .section-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .section-label {
    font-size:17px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 600;
  }
  .section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .section-desc {
    font-size: 15px;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.47;
  }

  /* Features */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  @media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
  }
  .feature-item {
    padding: 48px 40px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    transition: background 0.3s;
  }
  .feature-item:nth-child(3n) { border-right: none; }
  .feature-item:nth-last-child(-n+3) { border-bottom: none; }
  @media (max-width: 768px) {
    .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
    .feature-item:last-child { border-bottom: none; }
  }
  .feature-item:hover { background: var(--bg); }
  .feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    transition: color 0.3s ease;
  }
  .feature-icon svg,
  .feature-icon img {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    transition: color 0.3s ease;
  }
  .feature-item:hover .feature-icon {
    color: var(--accent-dark);
  }
  .feature-item h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: -0.022em;
  }
  .feature-item p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.47;
    font-weight: 400;
  }

  /* Scene gallery — single column large images */
  .scene-gallery {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .scene-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--off-white);
    margin-bottom: 16px;
    aspect-ratio: 16/9;
  }
  @media (max-width: 768px) {
    .scene-gallery { padding: 0 24px; }
  }
  .scene-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .scene-gallery-item:hover img {
    transform: scale(1.02);
  }
  .scene-gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: var(--white);
    font-size: 12px;
    letter-spacing: -0.01em;
    font-weight: 400;
  }

  /* Video section */
  .video-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
  }
  .video-wrapper video,
  .video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .video-placeholder {
    position: relative;
    cursor: pointer;
  }
  .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s, background 0.3s;
  }
  .video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
  }
  .video-play-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--black);
    margin-left: 4px;
  }
  .video-caption {
    text-align: center;
    font-size: 12px;
    letter-spacing: -0.01em;
    color: var(--light-gray);
    margin-top: 20px;
  }

  /* Modes */
  .modes-section {
    background: var(--bg);
  }
  .modes-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  @media (max-width: 768px) {
    .modes-grid { grid-template-columns: 1fr; padding: 0 24px; }
  }
  .mode-card {
    background: var(--white);
    padding: 48px 36px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .mode-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  }
  .mode-number {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
  }
  .mode-card h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.022em;
  }
  .mode-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.47;
    font-weight: 400;
  }

  /* Specs */
  .specs-wrapper {
    max-width: 800px;
    margin: 0 auto;
  }
  .spec-group { margin-bottom: 40px; }
  .spec-group-title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--black);
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .spec-group-title .cat-icon { font-size: 1rem; opacity: 0.6; }
  .spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
  .spec-row .label { color: var(--gray); font-weight: 400; }
  .spec-row .value { color: var(--dark); font-weight: 400; }

  /* CTA */
  .cta-section {
    background: var(--off-white);
    color: var(--dark);
    text-align: center;
    padding: 120px 40px 80px;
  }
  .cta-section h2 {
    color: var(--black);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .cta-section p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.47;
  }
  .cta-section .btn-primary {
    background: var(--white);
    color: var(--accent);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }
  .cta-section .btn-primary:hover {
    background: var(--accent);
    color: var(--black);
    box-shadow: 0 6px 24px rgba(201, 169, 98, 0.35);
  }

  /* Support strip — Apple style light gray */
  .support-strip {
    background: var(--off-white);
    padding: 40px 40px 40px;
    border-top: 1px solid var(--border);
  }
  .support-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .support-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: -0.01em;
    color: var(--gray);
    transition: color 0.3s;
  }
  .support-link:hover { color: var(--black); }
  .support-link .icon { font-size: 1rem; }

  /* Footer */
  .footer {
    background: var(--off-white);
    color: var(--gray);
    padding: 40px 40px 40px;
    border-top: 1px solid var(--border);
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  @media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  .footer-brand .footer-logo {
    display: block;
    margin-bottom: 16px;
  }
  .footer-brand .footer-logo img {
    height: 32px;
    width: auto;
    display: block;
  }
  .footer-brand p {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.47;
    font-weight: 400;
    max-width: 320px;
  }
  .footer-col h4 {
    color: var(--dark);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    font-size: 14px;
    color: var(--gray);
    transition: color 0.3s;
    font-weight: 400;
  }
  .footer-col a:hover { color: var(--accent); }
  .footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--light-gray);
  }

  
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
  }
  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--black);
    transition: 0.3s;
  }

/* ===== MOBILE RESPONSIVE ===== */
  @media (max-width: 768px) {
    .nav-inner {
      padding: 0 20px;
      height: 56px;
    }
    .nav-logo img { height: 28px; }
    .nav-links {
      display: none;
      position: fixed;
      top: 56px;
      left: 0;
      right: 0;
      background: var(--white);
      flex-direction: column;
      padding: 20px;
      gap: 0;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 4px 24px rgba(0,0,0,0.08);
      z-index: 99;
    }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links li a {
      display: block;
      padding: 14px 0;
      font-size: 17px;
      border-bottom: 1px solid var(--border);
    }
    .nav-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
    }
    .nav-toggle span {
      width: 22px;
      height: 2px;
      background: var(--black);
      transition: 0.3s;
      transform-origin: center;
    }
    .nav-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
      flex-direction: column;
      padding: 24px 20px;
    }
    .hero-image, .hero-content {
      width: 100%;
      max-width: 100%;
    }
    .hero-image { margin-bottom: 32px; }
    .hero-content h1 { font-size: 1.75rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-price { font-size: 1.5rem; }
    .hero-features {
      flex-direction: column;
      gap: 24px;
    }
    .hero-feature { width: 100%; text-align: center; }
    
    .section { padding: 60px 20px; }
    .section-header h2 { font-size: 1.5rem; }
    .section-desc { font-size: 0.85rem; }
    
    .features-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    
    .modes-grid {
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 0 20px;
    }
    .mode-card { padding: 32px 24px; }
    
    .scene-gallery, .video-section { padding: 0 20px; }
    
    .specs-wrapper { grid-template-columns: 1fr; }
    
    .cta-section { padding: 60px 20px 48px; }
    .cta-section h2 { font-size: 1.5rem; }
    
    .support-inner {
      gap: 20px;
      flex-direction: column;
      align-items: center;
    }
    
    .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 32px 20px;
    }
    .footer { padding: 32px 20px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { font-size: 13px; }
  }
  
  @media (max-width: 480px) {
    .footer-top { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 1.5rem; }
    .hero-price { font-size: 1.25rem; }
    .section-header h2 { font-size: 1.3rem; }
  }

  .page-hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 40px 60px;
  }
  .page-hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .page-hero p {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
    font-weight: 400;
    line-height: 1.47;
  }
  .page-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px 80px;
  }
  .page-content h2 {
    font-size: 21px;
    font-weight: 600;
    margin: 48px 0 16px;
    letter-spacing: -0.022em;
  }
  .page-content p, .page-content li {
    font-size: 17px;
    color: var(--dark);
    line-height: 1.47;
    margin-bottom: 16px;
    font-weight: 400;
  }
  .page-content ul { padding-left: 20px; }
  .page-content li { margin-bottom: 8px; }
  .contact-card {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--off-white);
    border-radius: 16px;
  }
  .contact-card h2 { font-size: 24px; margin-bottom: 12px; }
  .contact-card .email-link {
    display: inline-block;
    font-size: 17px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 20px;
    padding: 16px 40px;
    border-radius: 999px;
    background: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    animation: btnPulse 3s ease-in-out infinite;
  }
  .contact-card .email-link:hover {
    background: var(--accent);
    color: var(--black);
    box-shadow: 0 6px 24px rgba(201,169,98,0.35);
    transform: translateY(-2px);
  }
  @media (max-width: 768px) {
    .page-hero { padding: 80px 20px 40px; }
    .page-hero h1 { font-size: 1.75rem; }
    .page-content { padding: 0 20px 60px; }
    .contact-card { padding: 40px 24px; margin: 24px auto; }
    .contact-card .email-link { font-size: 1rem; padding: 14px 28px; }
  }

  .about-hero {
    max-width: 860px;
    margin: 0 auto;
    padding: 120px 40px 40px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
  }
  .about-hero-text h1 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.022em;
  }
  .about-hero-text .section-label {
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 600;
  }
  .about-hero-text p {
    font-size: 17px;
    color: var(--gray);
    font-weight: 400;
    line-height: 1.47;
  }
  .about-hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
  }
  .about-hero-logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
  }
  .about-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 40px;
  }
  .about-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.022em;
  }
  .about-section p {
    font-size: 17px;
    color: var(--dark);
    line-height: 1.47;
    margin-bottom: 16px;
    font-weight: 400;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
  }
  .value-item h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.022em;
  }
  .value-item p {
    font-size: 15px;
    color: var(--gray);
    font-weight: 400;
    line-height: 1.47;
  }
  @media (max-width: 768px) {
    .about-hero { grid-template-columns: 1fr; padding: 80px 20px 40px; gap: 32px; }
    .about-hero-text h1 { font-size: 1.75rem; }
    .about-hero-logo { padding: 0; }
    .about-hero-logo img { max-width: 140px; }
    .about-section { padding: 40px 20px; }
    .values-grid { grid-template-columns: 1fr; gap: 24px; }
  }