/* Korotetut lattiat (floors) page styles — ported from KJM Verkkosivu/korotetut-lattiat.html <style> */

    .page-hero {
      margin-top: 6.5rem;
      background: var(--ink-deep);
      color: white;
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }
    
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(60, 93, 156, 0.2) 0%, transparent 50%);
      pointer-events: none;
    }
    
    .page-hero__content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }
    
    .page-hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 1.5rem;
    }
    
    .page-hero__intro {
      font-size: 1.25rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2rem;
    }
    
    .page-hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.5rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: var(--radius-lg);
      margin-bottom: 2.5rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .page-hero__badge svg {
      opacity: 0.9;
    }
    
    .page-hero__actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    
    /* Brand story */
    .brand-story {
      padding: 5rem 0;
      background: var(--surface-low);
    }
    
    .brand-story__quote {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }
    
    .brand-story__text {
      font-size: 1.5rem;
      line-height: 1.6;
      color: var(--ink);
      font-style: italic;
      margin-bottom: 2rem;
    }
    
    .brand-story__author {
      font-size: 1rem;
      color: var(--ink-muted);
      font-style: normal;
    }
    
    /* Product family grid */
    .product-families {
      padding: 6rem 0;
    }
    
    .families-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }
    
    .family-card {
      background: var(--surface-card);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all 300ms ease;
      border-top: 3px solid var(--accent-teal);
    }
    
    .family-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-ambient);
    }
    
    .family-card__image {
      width: 100%;
      aspect-ratio: 16/10;
      background: var(--surface-dim);
    }
    
    .family-card__content {
      padding: 2rem;
    }
    
    .family-card h3 {
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
      color: var(--ink);
    }
    
    .family-card__specs {
      font-size: 0.875rem;
      color: var(--ink-muted);
      margin-bottom: 1rem;
      font-family: var(--font-body);
    }
    
    .family-card p {
      color: var(--ink-muted);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    
    /* All In One spotlight */
    .aio-spotlight {
      padding: 6rem 0;
      background: var(--surface-low);
    }
    
    .aio-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-top: 3rem;
    }
    
    .aio-diagram {
      background: var(--surface-card);
      border-radius: var(--radius-lg);
      padding: 3rem;
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .aio-features {
      list-style: none;
    }
    
    .aio-features li {
      padding: 1.25rem 0;
      border-bottom: 1px solid var(--surface-dim);
      display: flex;
      align-items: start;
      gap: 1rem;
    }
    
    .aio-features li:last-child {
      border-bottom: none;
    }
    
    .aio-features__icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--accent-teal);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 0.75rem;
      margin-top: 0.25rem;
    }
    
    .aio-features h4 {
      font-size: 1.125rem;
      margin-bottom: 0.25rem;
      color: var(--ink);
    }
    
    .aio-features p {
      font-size: 0.875rem;
      color: var(--ink-muted);
      margin: 0;
    }
    
    /* Specifications table */
    .specifications {
      padding: 6rem 0;
    }
    
    .spec-table {
      width: 100%;
      margin-top: 3rem;
      border-collapse: collapse;
      background: var(--surface-card);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    
    .spec-table thead {
      background: var(--surface-dim);
    }
    
    .spec-table th {
      text-align: left;
      padding: 1rem 1.5rem;
      font-weight: 600;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--ink);
    }
    
    .spec-table td {
      padding: 1rem 1.5rem;
      border-bottom: 1px solid var(--surface-low);
      font-size: 0.9375rem;
    }
    
    .spec-table tbody tr:last-child td {
      border-bottom: none;
    }
    
    .spec-table tbody tr:hover {
      background: var(--surface-low);
    }
    
    /* Use cases */
    .use-cases {
      padding: 4rem 0;
      background: var(--surface-low);
    }
    
    .use-cases__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 2rem;
      justify-content: center;
    }
    
    .use-case-chip {
      padding: 0.75rem 1.5rem;
      background: var(--surface-card);
      border-radius: 9999px;
      font-weight: 500;
      color: var(--ink-muted);
      transition: all 200ms ease;
      cursor: pointer;
    }
    
    .use-case-chip:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-2px);
    }
    
    @media (max-width: 968px) {
      .families-grid {
        grid-template-columns: 1fr;
      }
      
      .aio-grid {
        grid-template-columns: 1fr;
      }
      
      .spec-table {
        font-size: 0.8125rem;
      }
      
      .spec-table th,
      .spec-table td {
        padding: 0.75rem 1rem;
      }
    }
