    :root {
      --ink: #1a1714;
      --ivory: #f5f5f5;
      --warm-white: #ffffff;
      --accent: #c0c0c0;
      --accent-light: #d8d8d8;
      --accent-dark: #8a8a8a;
      --muted: #7a7267;
      --border: #f5f5f5;
      --section-bg: #f5f5f5;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      background: var(--warm-white);
      color: var(--ink);
      overflow-x: hidden;
    }

    header{
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 60px;
      backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, padding 0.3s;
    }

    /* ===== NAVBAR ===== */
    header.scrolled {
      border-bottom-color: var(--border);
      padding: 14px 60px;
    }
    .nav-logo {
      font-family: 'DM Serif Display', serif;
      font-size: 28px;
      color: var(--ink);
      text-decoration: none;
      letter-spacing: 0.02em;
      text-shadow: 2px 2px 10px #ffffff ,
      -2px 2px 10px #ffffff ,
      2px -2px 10px #ffffff ,
      -2px -2px 10px #ffffff;
    }
    .nav-logo span {
      color: var(--accent); 
      text-shadow:initial;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 40px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      letter-spacing: 0.08em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-cta {
      background: var(--ink);
      color: var(--ivory) !important;
      padding: 10px 24px;
      border-radius: 2px;
      font-size: 13px !important;
      letter-spacing: 0.1em !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--accent) !important; color: var(--ivory) !important; }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 120px 60px 80px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 55%;
      height: 100%;
      background: var(--section-bg);
      z-index: 0;
    }
    .hero-text {
      position: relative;
      z-index: 1;
      padding-right: 60px;
      animation: fadeInUp 0.9s ease both;
    }
    .hero-eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--accent);
    }
    .hero h1 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(38px, 5vw, 64px);
      font-weight: 300;
      line-height: 1.4;
      color: var(--ink);
      margin-bottom: 28px;
    }
    .hero h1 strong {
      font-weight: 700;
      color: var(--accent);
    }

    h1 img{
      width: 100%;
      max-width: 550px;
      min-width: 350px;
      display: block;
      margin-left: -20px;
      margin-top: -5px;
    } 
    .hero-desc {
      font-size: 15px;
      line-height: 1.9;
      color: var(--muted);
      margin-bottom: 48px;
      max-width: 420px;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--accent);
      color: white;
      padding: 16px 36px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.08em;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      border-radius: 2px;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
    .btn-outline {
      background: transparent;
      color: var(--ink);
      padding: 15px 36px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.08em;
      border: 1.5px solid var(--ink);
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      border-radius: 2px;
      transition: all 0.2s;
    }
    .btn-outline:hover { background: var(--ink); color: var(--ivory); }

    .hero-visual {
      position: relative;
      z-index: 1;
      padding-left: 40px;
      animation: fadeInRight 0.9s 0.2s ease both;
    }
    .hero-mockup {
      background: white;
      border-radius: 8px;
      box-shadow: 0 24px 80px rgba(26,23,20,0.12);
      overflow: hidden;
    }
    .mockup-bar {
      background: #c0c0c0;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .mockup-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
    }
    .mockup-dot:nth-child(1) { background: #ff6b6b; }
    .mockup-dot:nth-child(2) { background: #ffd93d; }
    .mockup-dot:nth-child(3) { background: #6bcb77; }
    .mockup-url {
      flex: 1;
      background: white;
      border-radius: 4px;
      padding: 5px 12px;
      font-size: 11px;
      color: var(--muted);
      margin-left: 8px;
    }
    .mockup-content {
      padding: 28px;
    }
    .mockup-header-block {
      background: linear-gradient(135deg, var(--ink) 0%, #3a3530 100%);
      border-radius: 6px;
      padding: 28px;
      margin-bottom: 20px;
      color: white;
    }
    .mockup-title { font-size: 22px; font-weight: 700; margin-bottom: 8px; font-family: 'Noto Serif JP', serif; }
    .mockup-sub { font-size: 12px; opacity: 0.7; line-height: 1.6; }
    .mockup-cta-row {
      display: flex;
      gap: 10px;
      margin-top: 16px;
    }
    .mockup-btn {
      background: var(--accent);
      color: white;
      border: none;
      border-radius: 3px;
      padding: 8px 18px;
      font-size: 11px;
      font-weight: 600;
    }
    .mockup-btn-ghost {
      background: transparent;
      color: white;
      border: 1px solid rgba(255,255,255,0.4);
      border-radius: 3px;
      padding: 8px 18px;
      font-size: 11px;
    }
    .mockup-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .mockup-card {
      background: var(--ivory);
      border-radius: 6px;
      padding: 16px;
    }
    .mockup-card-icon {
      width: 32px; height: 32px;
      border-radius: 6px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }
    .mockup-card-title { font-size: 11px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
    .mockup-card-text { font-size: 10px; color: var(--muted); line-height: 1.5; }
    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 28px;
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: 'DM Serif Display', serif;
      font-size: 32px;
      color: var(--accent);
      display: block;
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-label { font-size: 11px; color: var(--muted); letter-spacing: 0.05em; }
    .stat-label-2 { font-size: 11px; color: var(--muted); letter-spacing: 0.05em; display: block;}
    /* ===== SERVICES ===== */
    .section {
      padding: 100px 60px;
    }
    .section-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.25em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 400;
      color: var(--ink);
      line-height: 1.4;
      margin-bottom: 16px;
    }
    .section-desc {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.9;
      max-width: 580px;
      margin-bottom: 60px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      border: 1px solid var(--border);
    }
    .service-card {
      background: var(--warm-white);
      padding: 52px 44px;
      transition: background 0.3s;
      position: relative;
      overflow: hidden;
    }
    .service-card:hover { background: var(--ivory); }
    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 3px;
      background: var(--accent);
      transition: width 0.4s ease;
    }
    .service-card:hover::after { width: 100%; }
    .service-num {
      font-family: 'DM Serif Display', serif;
      font-size: 64px;
      color: #c2c2c2;
      line-height: 1;
      margin-bottom: 24px;
      display: block;
    }
    .service-icon {
      width: 56px; height: 56px;
      background: var(--ink);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      font-size: 24px;
    }
    .service-title {
      font-family: 'Noto Serif JP', serif;
      font-size: 20px;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 16px;
    }
    .service-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 28px;
    }
    .service-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 32px;
    }
    .service-features li {
      font-size: 13px;
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .service-features li::before {
      content: '→';
      color: var(--accent);
      font-size: 12px;
    }
    .service-link {
      font-size: 13px;
      font-weight: 500;
      color: #888888;
      text-decoration: none;
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.2s;
    }
    .service-link:hover { gap: 14px; }

    /* ===== PRICE ===== */
    .price-section {
      background: var(--ink);
      padding: 100px 60px;
      color: var(--ivory);
    }
    .price-section .section-title { color: var(--ivory); }
    .price-section .section-desc { color: rgba(245,240,232,0.6); }
    .price-tabs {
      display: flex;
      gap: 0;
      margin-bottom: 48px;
      border-bottom: 1px solid rgba(245,240,232,0.15);
    }
    .price-tab {
      padding: 14px 28px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: rgba(245,240,232,0.5);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: all 0.2s;
      background: none;
      border-top: none;
      border-left: none;
      border-right: none;
    }
    .price-tab.active {
      color: var(--ivory);
      border-bottom-color: var(--accent);
    }
    .price-panel { display: none; }
    .price-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .price-card {
      background: rgba(245,240,232,0.05);
      border: 1px solid rgba(245,240,232,0.1);
      border-radius: 4px;
      padding: 40px 36px;
      position: relative;
      transition: border-color 0.2s, background 0.2s;
    }
    .price-card:hover {
      border-color: var(--accent);
      background: rgba(200,135,58,0.05);
    }
    .price-card.featured {
      border-color: var(--accent);
      background: rgba(200,135,58,0.08);
    }
    .price-badge {
      position: absolute;
      top: -12px; right: 24px;
      background: var(--accent);
      color: white;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      padding: 4px 14px;
      border-radius: 12px;
    }
    .price-name {
      font-family: 'Noto Serif JP', serif;
      font-size: 18px;
      font-weight: 500;
      color: var(--ivory);
      margin-bottom: 8px;
    }
    .price-amount {
      font-family: 'DM Serif Display', serif;
      font-size: 42px;
      color: var(--accent);
      line-height: 1.1;
      margin-bottom: 4px;
    }
    .price-amount span {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 14px;
      color: rgba(245,240,232,0.5);
    }
    .price-note {
      font-size: 12px;
      color: rgba(245,240,232,0.45);
      margin-bottom: 28px;
      line-height: 1.6;
    }
    .price-divider {
      height: 1px;
      background: rgba(245,240,232,0.1);
      margin-bottom: 24px;
    }
    .price-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .price-features li {
      font-size: 13px;
      color: rgba(245,240,232,0.75);
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .price-features li::before {
      content: '✓';
      color: var(--accent);
      font-weight: 700;
      flex-shrink: 0;
    }

    /* ===== FLOW ===== */
    .flow-section { background: var(--section-bg); padding: 100px 60px; }
    .flow-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 60px;
      position: relative;
    }
    .flow-steps::after {
      content: '';
      position: absolute;
      top: 36px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
      opacity: 0.4;
    }
    .flow-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 16px;
      position: relative;
      z-index: 1;
    }
    .flow-step-num {
      width: 72px; height: 72px;
      background: var(--warm-white);
      border: 2px solid var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'DM Serif Display', serif;
      font-size: 22px;
      color: var(--accent);
      margin-bottom: 20px;
      position: relative;
    }
    .flow-step-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 8px;
    }
    .flow-step-desc {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ===== FEATURES ===== */
    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .features-list {
      display: flex;
      flex-direction: column;
      gap: 36px;
    }
    .feature-item {
      display: flex;
      gap: 24px;
      padding-bottom: 36px;
      border-bottom: 1px solid var(--border);
    }
    .feature-item:last-child { border-bottom: none; padding-bottom: 0; }
    .feature-icon-wrap {
      width: 48px; height: 48px;
      background: var(--ivory);
      border: 1px solid var(--border);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    .feature-text-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 8px;
    }
    .feature-text-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.8;
    }
    .features-right {
      background: var(--ink);
      border-radius: 8px;
      padding: 56px 48px;
      color: var(--ivory);
    }
    .features-right h3 {
      font-family: 'Noto Serif JP', serif;
      font-size: 22px;
      font-weight: 400;
      margin-bottom: 32px;
      line-height: 1.5;
    }
    .pain-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .pain-item {
      background: rgba(245,240,232,0.05);
      border-left: 3px solid var(--accent);
      padding: 14px 20px;
      border-radius: 0 4px 4px 0;
    }
    .pain-item-title { font-size: 13px; font-weight: 700; color: var(--ivory); margin-bottom: 4px; }
    .pain-item-desc { font-size: 12px; color: rgba(245,240,232,0.55); line-height: 1.6; }

    /* ===== FAQ ===== */
    .faq-section { background: var(--section-bg); padding: 100px 60px; }
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 60px;
    }
    .faq-item {
      background: var(--warm-white);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
    }
    .faq-q {
      padding: 24px 28px;
      font-size: 15px;
      font-weight: 600;
      color: var(--ink);
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      gap: 16px;
    }
    .faq-q::after {
      content: '+';
      font-size: 22px;
      color: var(--accent);
      flex-shrink: 0;
      transition: transform 0.3s;
    }
    .faq-item.open .faq-q::after { transform: rotate(45deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .faq-item.open .faq-a { max-height: 200px; }
    .faq-a-inner {
      padding: 0 28px 24px;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.9;
      border-top: 1px solid var(--border);
      padding-top: 16px;
    }

    /* ===== CTA ===== */
    .cta-section {
      padding: 120px 60px;
      text-align: center;
      background: var(--warm-white);
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: 'Craftnode';
      position: absolute;
      font-family: 'DM Serif Display', serif;
      font-size: 160px;
      color: var(--section-bg);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 0;
      white-space: nowrap;
    }
    .cta-inner { position: relative; z-index: 1; }
    .cta-section .section-title { margin-bottom: 20px; }
    .cta-section .section-desc { margin: 0 auto 48px; text-align: center; }
    .cta-actions { display: flex; gap: 16px; justify-content: center; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--ink);
      color: rgba(245,240,232,0.6);
      padding: 64px 60px 40px;
    }
    .footer-top {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(245,240,232,0.1);
    }
    .footer-logo {
      font-family: 'DM Serif Display', serif;
      font-size: 28px;
      color: var(--ivory);
      margin-bottom: 12px;
      text-align: center;
    }
    .footer-logo span {
      color: var(--accent); 
    }
    
    .footer-tagline {
      font-size: 13px;
      line-height: 1.7;
      max-width: 500px;
    }
    .footer-nav-group h4 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: var(--ivory);
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-nav-group ul {
      list-style: none;
      display: flex;
      flex-direction:
      column;
      gap: 10px; 
    }
    .footer-nav-group ul a {
      font-size: 13px;
      color: rgba(245,240,232,0.5);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-nav-group ul a:hover { color: var(--ivory); }
    .footer-bottom {
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 12px;
    }
    .footer-policy { display: flex; gap: 24px; }
    .footer-policy a { color: rgba(245,240,232,0.4); text-decoration: none; }
    .footer-policy a:hover { color: var(--ivory); }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(32px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(32px); }
      to { opacity: 1; transform: translateX(0); }
    }
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== MOBILE NAV ===== */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      position: relative;
      z-index: 101;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #c0c0c0;
      transition: all 0.3s;
    }

    /* ハンバーガー open 状態のアニメーション */
    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }
    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* モバイルメニュー オーバーレイ */
    .mobile-menu {
      display: flex;
      visibility: hidden;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(255, 255, 255, 0.98);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      opacity: 0;
      transform: translateY(-12px);
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
      pointer-events: none;
      height: 100vh;
    }
    .mobile-menu.open {
      visibility: visible;
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .mobile-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      width: 100%;
      padding: 0 32px;
    }
    .mobile-menu ul li {
      width: 100%;
      text-align: center;
      border-bottom: 1px solid var(--border);
    }
    .mobile-menu ul li:first-child {
      border-top: 1px solid var(--border);
    }
    .mobile-menu ul li a {
      display: block;
      padding: 20px 0;
      font-size: 16px;
      font-weight: 500;
      color: var(--ink);
      text-decoration: none;
      letter-spacing: 0.08em;
      transition: color 0.2s;
    }
    .mobile-menu ul li a:hover { color: var(--accent); }
    .mobile-menu .mobile-cta {
      margin-top: 32px;
      width: calc(100% - 64px);
    }
    .mobile-menu .mobile-cta a {
      display: block;
      background: var(--ink);
      color: var(--ivory) !important;
      padding: 16px 32px;
      border-radius: 2px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-align: center;
      text-decoration: none;
      transition: background 0.2s;
    }
    .mobile-menu .mobile-cta a:hover { background: var(--accent); }

    /* メニュー open 中は body スクロール禁止 */
    body.menu-open { overflow: hidden; }

    
    /* ===== COMPANY PROFILE ===== */
    .company-section {
      padding: 100px 60px;
      background: var(--warm-white);
    }
    .company-inner {
      max-width: 860px;
      margin: 0 auto;
    }
    .company-header-row {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 48px;
    }
    .company-logo-mark {
      width: 60px;
      height: 60px;
      background: var(--ink);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .company-logo-mark svg {
      width: 32px;
      height: 32px;
    }
    .company-header-text .company-name-ja {
      font-family: 'Noto Serif JP', serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 4px;
    }
    .company-header-text .company-name-en {
      font-size: 12px;
      letter-spacing: 0.12em;
      color: var(--muted);
    }
    .profile-table {
      width: 100%;
      border-collapse: collapse;
    }
    .profile-table tr {
      border-top: 1px solid var(--border);
    }
    .profile-table tr:last-child {
      border-bottom: 1px solid var(--border);
    }
    .profile-table tr:hover {
      background: var(--section-bg);
    }
    .profile-table .p-label {
      width: 26%;
      padding: 20px 24px 20px 0;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--muted);
      vertical-align: middle;
      white-space: nowrap;
      text-transform: uppercase;
    }
    .profile-table .p-value {
      padding: 20px 0;
      font-size: 15px;
      color: var(--ink);
      line-height: 1.8;
      vertical-align: top;
    }
    .p-badge {
      display: inline-block;
      background: var(--ink);
      color: var(--ivory);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.06em;
      padding: 4px 12px;
      border-radius: 2px;
      margin: 0 6px 6px 0;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      header {
        padding: 18px 32px;
      }
      header.scrolled {
        padding: 12px 32px; 
      }
      .hero {
        padding: 100px 32px 60px;
        gap: 40px; 
      }
      .section {
        padding: 80px 32px; 
      }
      .price-section, .flow-section, .faq-section, .cta-section {
        padding: 80px 32px;
      }
      footer {
        padding: 60px 32px 32px; 
      }
    }
    @media (max-width: 768px) {
      header { 
        padding: 16px 24px; 
      }
      header.scrolled {
        padding: 12px 24px; 
      }
      .nav-links {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      .hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        min-height: auto;
      }
      .hero::before {
        display: none;
      }
      .hero-text {
        padding-right: 0;
      }
      .hero-visual {
        padding-left: 0;
        margin-top: 40px;
      }
      .hero-stats {
        justify-content: center;
        gap: 24px; 
      }
      
      .hero-actions{
        justify-content: center;
      }
    
      .btn-primary {
        padding: 16px 80px;
      }

      .btn-outline {
        padding: 16px 80px;
      }

      .services-grid {
        grid-template-columns: 1fr; 
      }
      .service-card {
        padding: 40px 28px;
      }
      .price-panel.active {
        grid-template-columns: 1fr; 
      }
      .flow-steps {
        grid-template-columns: 1fr 1fr;
        gap: 40px; 
      }
      .flow-steps::after {
        display: none; 
      }
      .features-grid {
        grid-template-columns: 1fr;
        gap: 48px; 
      }

      .features-right{
        padding: 48px 22px;
      }

      .faq-grid {
        grid-template-columns: 1fr;
      }
      .cta-section::before {
        font-size: 75px; 
      }
      .footer-top {
        flex-direction: column;
        gap: 40px;
      }
      .footer-bottom {
        flex-direction: column; gap: 16px;
        text-align: center;
      }
      .section {
        padding: 64px 24px; 
      }
      .price-section, .flow-section, .faq-section, .cta-section {
        padding: 64px 24px; 
      }
      footer {
        padding: 48px 24px 28px;
      }
      .price-tabs {
        flex-wrap: wrap; 
      }
    }