    :root {
      --primary: #5ba4cb;
      --primary-dark: #4a93b8;
      --primary-light: #6db5d4;
      --dark: #1a1a2e;
      --dark-light: #2d2d44;
      --text: #333;
      --text-light: #666;
      --text-lighter: #999;
      --white: #ffffff;
      --bg-light: #f8fafe;
      --bg-alt: #f0f5fa;
      --section-padding: clamp(60px, 10vw, 120px);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Noto Sans JP', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      line-height: 1.8;
      overflow-x: hidden;
    }

    html[data-lang="zh"] body {
      font-family: 'Noto Sans TC', 'Noto Sans JP', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    html[data-lang="en"] body {
      font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    /* ── Navigation ── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1rem 2rem;
      transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
    }

    .nav.scrolled {
      background: rgba(255, 255, 255, 0.97);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
      padding: 0.6rem 2rem;
    }

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

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
      color: var(--white);
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.05em;
      transition: color 0.3s;
    }

    .nav.scrolled .nav-logo {
      color: var(--dark);
    }

    .nav-logo svg {
      width: 32px;
      height: 32px;
    }

    .nav-logo svg .logo-stroke {
      stroke: #fff;
      transition: stroke 0.3s;
    }

    .nav.scrolled .nav-logo svg .logo-stroke {
      stroke: var(--primary);
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      transition: color 0.3s;
      position: relative;
    }

    .nav.scrolled .nav-links a {
      color: var(--text-light);
    }

    .nav-links a:hover {
      color: #fff;
    }

    .nav.scrolled .nav-links a:hover {
      color: var(--primary);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-light);
      transition: width 0.3s;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* Mobile menu */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      transition: background 0.3s, transform 0.3s;
    }

    .nav.scrolled .nav-toggle span {
      background: var(--dark);
    }

    /* ── Language Switcher ── */
    .lang-switcher {
      display: inline-flex;
      gap: 2px;
      align-items: center;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 999px;
      padding: 3px;
      margin-left: 1.25rem;
      transition: background 0.3s, border-color 0.3s;
    }

    .nav.scrolled .lang-switcher {
      background: rgba(91, 164, 203, 0.08);
      border-color: rgba(91, 164, 203, 0.25);
    }

    .lang-btn {
      font-family: inherit;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      padding: 0.3rem 0.7rem;
      border: none;
      background: transparent;
      color: rgba(255, 255, 255, 0.85);
      border-radius: 999px;
      cursor: pointer;
      transition: background 0.25s, color 0.25s;
      line-height: 1;
    }

    .lang-btn:hover {
      color: #fff;
    }

    .lang-btn.active {
      background: var(--primary);
      color: #fff;
    }

    .nav.scrolled .lang-btn {
      color: var(--text-light);
    }

    .nav.scrolled .lang-btn:hover {
      color: var(--primary);
    }

    .nav.scrolled .lang-btn.active {
      background: var(--primary);
      color: #fff;
    }

    .lang-switcher-mobile {
      display: none;
    }

    /* ── Hero Slider ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--dark);
    }

    .hero-slider {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1.2s ease-in-out, transform 8s linear;
      background-size: cover;
      background-position: center;
      transform: scale(1.05);
    }
    
    .slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(26, 26, 46, 0.65);
    }

    .slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .hero-content {
      text-align: center;
      color: var(--white);
      padding: 2rem;
      position: relative;
      z-index: 10;
    }

    .slider-nav {
      position: absolute;
      bottom: 5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 1rem;
      z-index: 10;
    }

    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }

    .slider-dot:hover {
      background: rgba(255, 255, 255, 0.8);
    }

    .slider-dot.active {
      background: #fff;
      transform: scale(1.3);
    }

    .hero-logo {
      width: clamp(80px, 12vw, 110px);
      height: clamp(80px, 12vw, 110px);
      margin: 0 auto 2rem;
      opacity: 0.9;
      cursor: pointer;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .hero-logo:hover {
      opacity: 1;
      transform: scale(1.05);
    }

    /* ── ON / OFF state toggle ── */
    .hero-logo line,
    .nav-logo svg line,
    .footer-logo svg line {
      transition: opacity 0.5s ease;
    }

    body.state-off .hero-logo line,
    body.state-off .nav-logo svg line,
    body.state-off .footer-logo svg line {
      opacity: 0;
    }

    body.state-off .slide::after {
      background: rgba(0, 0, 0, 0.88);
      transition: background 0.6s ease;
    }

    .slide::after {
      transition: background 0.6s ease;
    }

    .power-state {
      position: fixed;
      bottom: 2rem;
      left: 2rem;
      z-index: 500;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.9rem;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--primary-dark);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.4s ease, transform 0.4s ease, background 0.4s ease, color 0.4s ease;
      pointer-events: none;
    }

    body.power-hint-visible .power-state {
      opacity: 1;
      transform: translateY(0);
    }

    body.state-off .power-state {
      background: rgba(0, 0, 0, 0.85);
      color: rgba(255, 255, 255, 0.85);
    }

    .power-state .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 8px rgba(91, 164, 203, 0.6);
      transition: background 0.4s ease, box-shadow 0.4s ease;
    }

    body.state-off .power-state .dot {
      background: #666;
      box-shadow: none;
    }


    .hero-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      letter-spacing: 0.06em;
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-size: clamp(0.9rem, 2vw, 1.15rem);
      font-weight: 300;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 0.7;
      margin-bottom: 2rem;
    }

    .hero-desc {
      max-width: 600px;
      margin: 0 auto 3rem;
      font-size: clamp(0.85rem, 1.5vw, 0.95rem);
      font-weight: 300;
      line-height: 2;
      opacity: 0.65;
    }

    .hero-cta {
      display: inline-block;
      padding: 0.85rem 2.5rem;
      border: 1.5px solid rgba(255, 255, 255, 0.4);
      color: #fff;
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: background 0.3s, border-color 0.3s;
      border-radius: 2px;
    }

    .hero-cta:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.7);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 2s infinite;
    }

    .scroll-indicator svg {
      width: 24px;
      height: 24px;
      stroke: rgba(255, 255, 255, 0.4);
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ── Section shared ── */
    .section {
      padding: var(--section-padding) 2rem;
    }

    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 0.8rem;
    }

    .section-title {
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .section-desc {
      font-size: clamp(0.85rem, 1.4vw, 0.95rem);
      color: var(--text-light);
      max-width: 650px;
      line-height: 1.9;
      margin-bottom: 3rem;
    }

    .bg-light {
      background: var(--bg-light);
    }

    .bg-alt {
      background: var(--bg-alt);
    }

    /* ── Services Grid ── */
    .services-group {
      margin-bottom: 3.5rem;
    }

    .services-group:last-child {
      margin-bottom: 0;
    }

    .services-group-label {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.8rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .services-group-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 3rem;
      padding: 0.35rem 0.8rem;
      background: var(--primary);
      color: var(--white);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      border-radius: 100px;
    }

    .services-group-badge.off {
      background: var(--text);
    }

    .services-group-label h3 {
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--text);
      letter-spacing: 0.02em;
      margin: 0;
    }

    .services-group-label .count {
      margin-left: auto;
      font-size: 0.78rem;
      color: var(--text-light);
      letter-spacing: 0.05em;
    }

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

    .service-card {
      background: var(--white);
      padding: 2rem 1.5rem;
      border-radius: 8px;
      border: 1px solid rgba(0, 0, 0, 0.06);
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(91, 164, 203, 0.12);
      border-color: var(--primary);
    }

    .service-icon {
      width: 42px;
      height: 42px;
      margin-bottom: 1.2rem;
      color: var(--primary);
    }

    .service-card h3 {
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.4rem;
      letter-spacing: 0.01em;
    }

    .service-card .service-en {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 0.9rem;
      display: block;
    }

    .service-card p {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.75;
    }

    /* ── CTA Button ── */
    .cta-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.8rem;
      margin-top: 3rem;
      text-align: center;
    }

    .cta-prompt {
      font-size: 0.9rem;
      color: var(--text-light);
      letter-spacing: 0.03em;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.95rem 2.2rem;
      background: var(--primary);
      color: var(--white);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      border-radius: 100px;
      text-decoration: none;
      transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 15px rgba(91, 164, 203, 0.3);
    }

    .cta-button:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(91, 164, 203, 0.4);
    }

    .cta-button svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
    }

    .cta-button.dark {
      background: var(--text);
      box-shadow: 0 4px 15px rgba(26, 26, 46, 0.25);
    }

    .cta-button.dark:hover {
      background: #000;
      box-shadow: 0 8px 25px rgba(26, 26, 46, 0.35);
    }

    /* ── E-Commerce comparison ── */
    .comparison {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      margin-top: 2rem;
    }

    .comparison-card {
      padding: 2.5rem 2rem;
      border-radius: 8px;
      text-align: center;
    }

    .comparison-card.retail {
      background: var(--white);
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .comparison-card.online {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
      color: var(--white);
    }

    .comparison-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 1.5rem;
    }

    .comparison-card h3 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 0.8rem;
    }

    .comparison-card p {
      font-size: 0.88rem;
      line-height: 1.8;
      opacity: 0.85;
    }

    .ecommerce-intro {
      font-size: clamp(0.85rem, 1.4vw, 0.95rem);
      color: var(--text-light);
      line-height: 1.9;
      max-width: 800px;
      margin-bottom: 3rem;
    }

    .ecommerce-highlight {
      background: var(--bg-light);
      border-left: 3px solid var(--primary);
      padding: 1.2rem 1.5rem;
      margin: 2rem 0;
      font-size: 0.9rem;
      color: var(--text);
      line-height: 1.8;
      border-radius: 0 6px 6px 0;
    }

    /* ── Web Design section ── */
    .web-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .web-feature {
      padding: 2rem;
      border-radius: 8px;
      background: var(--white);
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .web-feature h4 {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .web-feature h4 .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      flex-shrink: 0;
    }

    .web-feature p {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.8;
    }

    /* ── Offline section ── */
    .offline-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .offline-text p {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 2;
      margin-bottom: 1.5rem;
    }

    .offline-highlight {
      background: var(--bg-light);
      border-left: 3px solid var(--primary);
      padding: 1.2rem 1.5rem;
      margin-bottom: 2rem;
      font-size: 0.9rem;
      color: var(--text);
      line-height: 1.8;
      border-radius: 0 6px 6px 0;
    }

    .offline-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    .offline-tag {
      padding: 0.5rem 1.2rem;
      background: rgba(91, 164, 203, 0.08);
      color: var(--primary-dark);
      font-size: 0.82rem;
      font-weight: 500;
      border-radius: 100px;
      letter-spacing: 0.02em;
    }

    .offline-visual {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 1fr 1fr;
      grid-template-areas:
        "shop shop leaflet namecard"
        "shop shop logo packing";
      gap: 1rem;
    }

    .offline-item.shop { grid-area: shop; }
    .offline-item.leaflet { grid-area: leaflet; }
    .offline-item.namecard { grid-area: namecard; }
    .offline-item.logo { grid-area: logo; }
    .offline-item.packing { grid-area: packing; }

    .offline-item {
      aspect-ratio: 1;
      border-radius: 8px;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      padding: 1.5rem;
      color: var(--white);
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      position: relative;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .offline-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .offline-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26, 26, 46, 0.8) 0%, rgba(26, 26, 46, 0) 60%);
      z-index: 1;
    }

    .offline-item span {
      position: relative;
      z-index: 2;
      text-transform: uppercase;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    /* ── Partners / Brands ── */
    .partners-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 4rem;
      margin-top: 2.5rem;
    }
    .partner-item {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 150px;
      height: 100px;
      opacity: 0.6;
      filter: grayscale(100%);
      transition: all 0.4s ease;
    }
    body.state-off .partner-item {
      opacity: 0.4;
      filter: grayscale(100%) invert(0.8);
    }
    .partner-item:hover {
      opacity: 1 !important;
      filter: grayscale(0%);
      transform: scale(1.05);
    }
    body.state-off .partner-item:hover {
      filter: grayscale(0%) invert(0);
    }
    .partner-item img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
    @media (max-width: 768px) {
      .partners-grid { gap: 2rem; }
      .partner-item { width: 110px; height: 80px; }
    }

    /* ── Experience section ── */
    .experience-intro {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 3rem;
      align-items: center;
      margin-bottom: 3rem;
    }

    .experience-years {
      text-align: center;
      padding: 2.5rem 1rem;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: var(--white);
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(91, 164, 203, 0.25);
    }

    .experience-years .number {
      font-size: 5.5rem;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .experience-years .label {
      font-size: 0.85rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      margin-top: 0.5rem;
      opacity: 0.9;
    }

    .experience-years .sub {
      font-size: 0.85rem;
      margin-top: 1rem;
      opacity: 0.85;
      line-height: 1.6;
    }

    .experience-text p {
      font-size: 0.92rem;
      color: var(--text-light);
      line-height: 2;
      margin-bottom: 1.2rem;
    }

    .experience-text strong {
      color: var(--text);
      font-weight: 600;
    }

    .experience-list-title {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 1.2rem;
      letter-spacing: 0.02em;
    }

    .experience-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.9rem 2rem;
      margin-bottom: 2.5rem;
    }

    .experience-item {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.6;
    }

    .experience-item::before {
      content: '';
      flex-shrink: 0;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--primary);
      margin-top: 0.55rem;
    }

    .experience-closing {
      text-align: center;
      padding: 1.8rem 1.5rem;
      background: var(--bg-light);
      border-radius: 8px;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--primary-dark);
      letter-spacing: 0.03em;
      margin-bottom: 3.5rem;
    }

    .stores-block {
      border-top: 1px solid rgba(0, 0, 0, 0.08);
      padding-top: 3rem;
    }

    .stores-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .stores-label {
      font-size: 0.78rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 0.6rem;
    }

    .stores-logo {
      width: 80px;
      height: 80px;
      object-fit: contain;
      border-radius: 50%;
      margin-bottom: 0.8rem;
    }

    .stores-brand {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--text);
      letter-spacing: 0.05em;
    }

    .stores-brand-en {
      font-size: 0.85rem;
      color: var(--text-light);
      margin-top: 0.4rem;
      letter-spacing: 0.1em;
    }

    .stores-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .store-name-sub {
      font-size: 0.78rem;
      color: var(--text-light);
      margin-left: 1rem;
      margin-bottom: 0.3rem;
      font-style: italic;
    }

    .stores-social {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 1.2rem;
      border-radius: 100px;
      background: rgba(91, 164, 203, 0.08);
      color: var(--primary-dark);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      transition: background 0.3s, transform 0.2s;
    }

    .social-link:hover {
      background: rgba(91, 164, 203, 0.18);
      transform: translateY(-2px);
    }

    .social-link svg {
      width: 18px;
      height: 18px;
    }

    .store-card {
      background: var(--white);
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 10px;
      padding: 1.8rem 1.5rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .store-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(91, 164, 203, 0.15);
      border-color: var(--primary);
    }

    .store-name {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.4rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .store-name::before {
      content: '';
      width: 4px;
      height: 1.1rem;
      background: var(--primary);
      border-radius: 2px;
    }

    .store-postal {
      font-size: 0.78rem;
      color: var(--text-light);
      margin-left: 1rem;
      margin-bottom: 0.3rem;
    }

    .store-address {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-left: 1rem;
    }

    /* ── Team ── */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }

    .team-card {
      background: var(--white);
      padding: 2.2rem 1.5rem;
      border-radius: 10px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .team-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(91, 164, 203, 0.15);
      border-color: var(--primary);
    }

    .team-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 1.2rem;
      color: var(--primary);
      stroke: currentColor;
    }

    .team-stat {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 0.25rem;
      margin-bottom: 0.4rem;
      color: var(--primary-dark);
      min-height: 2.4rem;
    }

    .team-stat .num {
      font-size: 2.2rem;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .team-stat .unit {
      font-size: 0.85rem;
      color: var(--text-light);
      font-weight: 500;
    }

    .team-stat-text {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 2.4rem;
      margin-bottom: 0.4rem;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--primary-dark);
      letter-spacing: 0.04em;
    }

    .team-role {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.5rem;
      letter-spacing: 0.02em;
    }

    .team-role-en {
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 0.8rem;
    }

    .team-desc {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    .team-langs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.4rem;
      margin-top: 0.5rem;
    }

    .team-lang {
      font-size: 0.75rem;
      padding: 0.3rem 0.7rem;
      background: rgba(91, 164, 203, 0.1);
      color: var(--primary-dark);
      border-radius: 100px;
      font-weight: 500;
    }

    /* ── About ── */
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    .about-intro p {
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 2;
      margin-bottom: 1.2rem;
    }

    .about-intro strong {
      color: var(--text);
      font-weight: 600;
    }

    .company-info {
      background: var(--white);
      border-radius: 10px;
      padding: 2rem;
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .company-info-title {
      font-size: 0.78rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .company-info-list {
      display: grid;
      grid-template-columns: 6rem 1fr;
      gap: 0.9rem 1.2rem;
      margin: 0;
    }

    .company-info-list dt {
      font-size: 0.82rem;
      color: var(--text-light);
      font-weight: 500;
      letter-spacing: 0.05em;
    }

    .company-info-list dd {
      font-size: 0.88rem;
      color: var(--text);
      font-weight: 500;
      line-height: 1.6;
      margin: 0;
    }

    /* ── Contact ── */
    .contact-section {
      background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 60%, #4a93b8 100%);
      color: var(--white);
    }

    .contact-section .section-label {
      color: var(--primary-light);
    }

    .contact-section .section-title {
      color: var(--white);
    }

    .contact-section .section-desc {
      color: rgba(255, 255, 255, 0.6);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .form-group label {
      display: block;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.4rem;
      opacity: 0.7;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.8rem 1rem;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 4px;
      color: #fff;
      font-family: inherit;
      font-size: 0.9rem;
      transition: border-color 0.3s, background 0.3s;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary-light);
      background: rgba(255, 255, 255, 0.12);
    }

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

    .form-submit {
      padding: 0.9rem 2.5rem;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 4px;
      font-family: inherit;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
      align-self: flex-start;
    }

    .form-submit:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 2rem;
    }

    .contact-info-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .contact-info-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-info-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--primary-light);
    }

    .contact-info-item h4 {
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 0.3rem;
    }

    .contact-info-item p {
      font-size: 0.82rem;
      opacity: 0.6;
      line-height: 1.6;
    }

    /* ── Footer ── */
    .footer {
      background: var(--dark);
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.85rem;
      letter-spacing: 0.02em;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3.5rem 2rem 2rem;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      color: var(--white);
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.08em;
    }

    .footer-logo svg {
      width: 28px;
      height: 28px;
    }

    .footer-tagline {
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.85rem;
      line-height: 1.7;
      max-width: 24rem;
    }

    .footer-col h5 {
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    .footer-col a,
    .footer-col span {
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.2s ease;
    }

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

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      padding-top: 2rem;
      color: rgba(255, 255, 255, 0.35);
      font-size: 0.78rem;
    }

    .footer-langs {
      display: flex;
      gap: 1rem;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ── Animations ── */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

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

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.97);
        padding: 1rem 2rem 1.5rem;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links a {
        color: var(--text) !important;
        padding: 0.7rem 0;
        display: block;
      }

      .nav-toggle {
        display: flex;
      }

      .lang-switcher-desktop {
        display: none;
      }

      .lang-switcher-mobile {
        display: flex;
        justify-content: center;
        padding: 0.8rem 0 0.3rem;
        list-style: none;
      }

      .lang-switcher-mobile .lang-switcher {
        background: rgba(91, 164, 203, 0.08);
        border-color: rgba(91, 164, 203, 0.25);
        margin-left: 0;
      }

      .lang-switcher-mobile .lang-btn {
        color: var(--text-light);
      }

      .lang-switcher-mobile .lang-btn.active {
        background: var(--primary);
        color: #fff;
      }

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

      .offline-content {
        grid-template-columns: 1fr;
      }

      .offline-visual {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-template-areas:
          "shop shop"
          "leaflet namecard"
          "logo packing";
      }

      .experience-intro {
        grid-template-columns: 1fr;
      }

      .experience-list {
        grid-template-columns: 1fr;
      }

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

      .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }

      .team-card {
        padding: 1.5rem 1rem;
      }

      .team-stat .num {
        font-size: 1.8rem;
      }

      .team-stat-text {
        font-size: 0.95rem;
      }

      .team-lang {
        font-size: 0.7rem;
        padding: 0.25rem 0.55rem;
      }

      .about-content {
        grid-template-columns: 1fr;
      }

      .company-info {
        padding: 1.5rem;
      }

      .company-info-list {
        grid-template-columns: 5.5rem 1fr;
        gap: 0.7rem 1rem;
      }

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

      .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .stores-social {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
      }

      .service-card {
        padding: 1.5rem 1.2rem;
      }

      .services-group-label {
        flex-wrap: wrap;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer-bottom {
        justify-content: center;
        text-align: center;
      }
    }
