/*
 * ZERO PLUS - Main Stylesheet
 * 株式会社ZERO PLUS | https://zero-plus.co.jp
 * ============================================
 * WordPress展開時は wp_enqueue_style() で読み込んでください
 * 例: wp_enqueue_style('zeroplus', get_template_directory_uri().'/assets/css/style.css');
 */


  :root {
    --black: #0d0d0d;
    --white: #f7f5f2;
    --red: #e8001a;
    --red-dark: #b0001a;
    --red-glow: rgba(232,0,26,0.25);
    --gray: #888;
    --light: #161616;
    --border: rgba(247,245,242,0.08);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  .cursor {
    position: fixed; width: 10px; height: 10px;
    background: var(--red); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s;
  }
  .cursor-ring {
    position: fixed; width: 34px; height: 34px;
    border: 1px solid rgba(232,0,26,0.5); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: left 0.12s ease, top 0.12s ease, width 0.3s, height 0.3s;
  }

  /* ── HEADER ── */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 48px;
  }
  header::before {
    content:''; position:absolute; inset:0;
    background: linear-gradient(to bottom, rgba(13,13,13,0.95), transparent);
    pointer-events: none;
  }
  .logo {
    font-family: 'Bebas Neue', sans-serif; font-size: 26px;
    letter-spacing: 0.12em; color: var(--white); text-decoration: none; position: relative;
  }
  .logo span { color: var(--red); }

  nav { display: flex; gap: 36px; position: relative; align-items: center; }
  nav a {
    font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(247,245,242,0.55); text-decoration: none; transition: color 0.3s;
  }
  nav a:hover { color: var(--red); }
  .nav-cta {
    background: var(--red) !important; color: var(--white) !important;
    padding: 10px 24px; border-radius: 2px; font-weight: 500 !important;
    transition: opacity 0.3s !important;
  }
  .nav-cta:hover { opacity: 0.85; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh; display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
  }

  .hero-left {
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 0 56px 80px;
    position: relative; z-index: 2;
    background: linear-gradient(to right, rgba(13,13,13,0.92) 60%, rgba(13,13,13,0.4) 100%);
  }

  .hero-right {
    position: relative; overflow: hidden;
  }
  .hero-img-main {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    filter: grayscale(15%) contrast(1.05);
    display: block;
    opacity: 0;
    transform: scale(1.04);
    animation: imgFadeIn 1.4s cubic-bezier(0.25,0.46,0.45,0.94) 0.4s forwards;
  }
  @keyframes imgFadeIn {
    to { opacity: 1; transform: scale(1); }
  }
  /* Red overlay gradient on image */
  .hero-right::after {
    content:'';
    position: absolute; inset: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 30%),
                linear-gradient(to top, var(--black) 0%, transparent 40%),
                linear-gradient(135deg, rgba(232,0,26,0.12) 0%, transparent 60%);
  }

  .hero-bg-glow {
    position: absolute; inset: 0; z-index: 1;
    background:
      radial-gradient(ellipse 60% 80% at 0% 80%, rgba(232,0,26,0.1) 0%, transparent 60%),
      radial-gradient(ellipse 40% 50% at 30% 20%, rgba(232,0,26,0.05) 0%, transparent 50%);
  }

  /* Grid */
  .hero-grid {
    position: absolute; inset: 0; z-index: 1;
    background-image:
      linear-gradient(rgba(247,245,242,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(247,245,242,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  .hero-eyebrow {
    font-family: 'DM Sans', sans-serif; font-size: 11px;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--red); margin-bottom: 20px;
    opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards;
    position: relative; z-index: 2;
    display: inline-block;
    background: rgba(13,13,13,0.7);
    padding: 6px 14px;
    border-left: 2px solid var(--red);
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 8vw, 120px);
    line-height: 0.9; letter-spacing: 0.02em;
    margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
    position: relative; z-index: 2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  }
  .hero-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(247,245,242,0.85);
    text-shadow: none;
  }
  .hero-title .red { color: var(--red); }

  .hero-sub {
    max-width: 460px; font-size: 14px; line-height: 1.9;
    color: rgba(247,245,242,0.85); margin-bottom: 44px;
    opacity: 0; animation: fadeUp 0.8s ease 0.7s forwards;
    position: relative; z-index: 2;
    text-shadow: 0 1px 8px rgba(0,0,0,0.9);
  }

  .hero-actions {
    display: flex; gap: 20px; align-items: center;
    opacity: 0; animation: fadeUp 0.8s ease 0.9s forwards;
    position: relative; z-index: 2;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--red); color: var(--white);
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    font-weight: 500; letter-spacing: 0.05em;
    padding: 16px 36px; text-decoration: none; border-radius: 2px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(232,0,26,0.3);
  }
  .btn-ghost {
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    color: rgba(247,245,242,0.55); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: color 0.3s;
  }
  .btn-ghost:hover { color: var(--white); }

  /* Vertical text on hero */
  .hero-vertical {
    position: absolute; right: 48px; bottom: 80px;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    z-index: 10;
    opacity: 0; animation: fadeIn 1s ease 1.5s forwards;
  }
  .hero-vertical span {
    font-family: 'DM Sans', sans-serif; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gray); writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
  }
  @keyframes scrollAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* ── STATS ── */
  .stats {
    display: grid; grid-template-columns: repeat(3,1fr);
    border-top: 1px solid var(--border);
  }
  .stat-item {
    padding: 48px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s;
  }
  .stat-item:hover { background: rgba(232,0,26,0.04); }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 72px;
    color: var(--red); line-height: 1; margin-bottom: 8px;
  }
  .stat-label { font-size: 13px; color: rgba(247,245,242,0.45); line-height: 1.6; }

  /* ── SERVICES ── */
  .services { padding: 120px 48px; }
  .section-label {
    font-family: 'DM Sans', sans-serif; font-size: 11px;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--red); margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px,5vw,72px); line-height: 1; margin-bottom: 64px;
  }

  .services-grid {
    display: grid; grid-template-columns: repeat(2,1fr);
    gap: 2px; background: rgba(247,245,242,0.06);
  }
  .service-card {
    background: var(--black); padding: 48px;
    position: relative; overflow: hidden; transition: background 0.4s;
  }
  .service-card::before {
    content:''; position:absolute; bottom:0; left:0;
    height: 2px; width: 0; background: var(--red);
    transition: width 0.5s ease;
  }
  .service-card:hover::before { width: 100%; }
  .service-card:hover { background: rgba(232,0,26,0.03); }
  .service-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 72px;
    color: rgba(247,245,242,0.04); position: absolute;
    top: 16px; right: 32px; line-height: 1;
  }
  .service-icon {
    width: 48px; height: 48px;
    background: rgba(232,0,26,0.12); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px; font-size: 20px;
  }
  .service-name { font-size: 20px; font-weight: 500; margin-bottom: 12px; letter-spacing: 0.02em; }
  .service-desc { font-size: 14px; line-height: 1.8; color: rgba(247,245,242,0.45); }
  .service-tag {
    display: inline-block; margin-top: 20px;
    font-family: 'DM Sans', sans-serif; font-size: 11px;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--red); border: 1px solid rgba(232,0,26,0.35);
    padding: 4px 12px; border-radius: 100px;
  }

  /* ── ABOUT (with image2) ── */
  .about {
    padding: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--light);
    position: relative; overflow: hidden; min-height: 600px;
  }
  .about-img-col { position: relative; overflow: hidden; }
  .about-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    filter: grayscale(10%);
    display: block;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.2s cubic-bezier(0.25,0.46,0.45,0.94),
                transform 1.4s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .about-img.img-visible {
    opacity: 1;
    transform: scale(1);
  }
  .about-img-col::after {
    content:''; position:absolute; inset:0;
    background: linear-gradient(to left, var(--light) 0%, transparent 40%),
                linear-gradient(to bottom, transparent 60%, var(--light) 100%),
                rgba(232,0,26,0.06);
  }
  .about-content {
    padding: 80px 56px; display: flex;
    flex-direction: column; justify-content: center;
    position: relative; z-index: 2;
  }
  .about-text {
    font-size: 14px; line-height: 2;
    color: rgba(247,245,242,0.55); margin-bottom: 20px;
  }
  .about-badges { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
  .about-badge {
    font-family: 'DM Sans', sans-serif; font-size: 12px;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: 1px solid rgba(232,0,26,0.4); color: var(--red);
    padding: 6px 16px; border-radius: 100px;
  }

  /* ── INDUSTRIES ── */
  .industries {
    padding: 80px 48px;
    border-top: 1px solid var(--border);
  }
  .industries-title {
    font-family: 'DM Sans', sans-serif; font-size: 11px;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gray); margin-bottom: 32px;
  }
  .industry-tags { display: flex; flex-wrap: wrap; gap: 12px; }
  .industry-tag {
    font-size: 14px; padding: 12px 24px;
    border: 1px solid rgba(247,245,242,0.1);
    border-radius: 100px; color: rgba(247,245,242,0.55);
    transition: all 0.3s; cursor: default;
  }
  .industry-tag:hover {
    border-color: var(--red); color: var(--red);
    background: rgba(232,0,26,0.05);
  }

  /* ── CTA ── */
  .contact-cta {
    padding: 140px 48px; text-align: center;
    position: relative; overflow: hidden;
  }
  .contact-cta::before {
    content:''; position:absolute; inset:0; pointer-events: none;
    background:
      radial-gradient(ellipse 60% 70% at 50% 50%, rgba(232,0,26,0.1) 0%, transparent 70%),
      linear-gradient(to bottom, rgba(13,13,13,0.3) 0%, rgba(13,13,13,0.6) 100%);
  }
  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px,7vw,100px);
    line-height: 0.95; margin-bottom: 32px;
    color: var(--white);
    text-shadow: 0 2px 24px rgba(0,0,0,0.6);
  }
  .cta-title span {
    color: var(--red);
    display: inline-block;
    position: relative;
  }
  .cta-title span::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 3px;
    background: var(--red);
    opacity: 0.6;
  }
  .cta-sub {
    font-size: 15px; color: rgba(247,245,242,0.8);
    margin-bottom: 48px; line-height: 1.9;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  }
  .cta-btn {
    position: relative; z-index: 1;
    display: inline-flex; align-items: center; gap: 14px;
    background: transparent; border: 1px solid var(--red);
    color: var(--red);
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
    letter-spacing: 0.06em; padding: 18px 52px;
    text-decoration: none; border-radius: 2px; transition: all 0.4s;
  }
  .cta-btn:hover {
    background: var(--red); color: var(--white);
    box-shadow: 0 0 60px rgba(232,0,26,0.25);
  }

  /* ── FOOTER ── */
  footer {
    padding: 40px 48px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 20px;
  }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.1em; }
  .footer-logo span { color: var(--red); }
  .footer-copy { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--gray); }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a {
    font-family: 'DM Sans', sans-serif; font-size: 12px;
    color: var(--gray); text-decoration: none; transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--red); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity:0; transform: translateY(30px); }
    to { opacity:1; transform: translateY(0); }
  }
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

  .reveal {
    opacity:0; transform: translateY(36px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity:1; transform:none; }

  /* Red accent line decoration */
  .red-line {
    display: inline-block; width: 40px; height: 2px;
    background: var(--red); margin-bottom: 16px;
  }

  @media (max-width: 768px) {
    header { padding: 20px 24px; }
    nav { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { height: 50vh; }
    .hero-left { padding: 60px 24px 60px; }
    .stats { grid-template-columns: 1fr; }
    .stat-item { padding: 32px 24px; }
    .services { padding: 80px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .about { grid-template-columns: 1fr; }
    .about-img-col { height: 300px; }
    .about-content { padding: 48px 24px; }
    .industries, .contact-cta { padding: 60px 24px; }
    footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
  }

  /* ============ COMPANY ============ */
  .company {
    padding: 120px 48px;
    background: var(--light);
    border-top: 1px solid var(--border);
  }
  .company-inner { max-width: 900px; margin: 0 auto; }
  .company-table { margin-top: 48px; border-top: 1px solid var(--border); }
  .company-row {
    display: grid; grid-template-columns: 200px 1fr;
    padding: 22px 8px; border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, padding-left 0.3s ease;
    position: relative;
  }
  .company-row::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 2px; background: var(--red);
    transform: scaleY(0); transition: transform 0.3s ease;
  }
  .company-row:hover { background: rgba(232,0,26,0.03); padding-left: 20px; }
  .company-row:hover::before { transform: scaleY(1); }
  .company-row dt {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; letter-spacing: 0.12em;
    color: rgba(247,245,242,0.45);
    display: flex; align-items: center;
  }
  .company-row dd { font-size: 15px; letter-spacing: 0.04em; }
  .company-row dd a { color: var(--white); text-decoration: none; transition: color 0.3s; }
  .company-row dd a:hover { color: var(--red); }

  /* ============ ACCESS ============ */
  .access {
    display: grid; grid-template-columns: 1fr 1.1fr;
    background: var(--black);
    border-top: 1px solid var(--border);
    min-height: 560px;
  }
  .access-info { padding: 120px 48px 120px 48px; max-width: 560px; margin-left: auto; width: 100%; }
  .access-list { margin-top: 48px; display: flex; flex-direction: column; gap: 28px; }
  .access-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding-bottom: 28px; border-bottom: 1px solid var(--border);
  }
  .access-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px; color: var(--red); line-height: 1;
    min-width: 44px;
  }
  .access-way { font-size: 15px; font-weight: 500; margin-bottom: 6px; letter-spacing: 0.04em; }
  .access-desc { font-size: 13px; color: rgba(247,245,242,0.45); line-height: 1.8; }
  .access-address {
    margin-top: 40px; font-size: 14px; line-height: 2;
    color: rgba(247,245,242,0.6); letter-spacing: 0.06em;
    padding-left: 16px; border-left: 2px solid var(--red);
  }
  .access-map { position: relative; min-height: 400px; }
  .access-map iframe {
    position: absolute; inset: 0; width: 100%; height: 100%;
    filter: grayscale(1) invert(0.92) contrast(0.9) hue-rotate(180deg);
  }
  .access-map::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    box-shadow: inset 0 0 0 1px var(--border);
  }

  @media (max-width: 768px) {
    .company { padding: 80px 24px; }
    .company-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 8px; }
    .access { grid-template-columns: 1fr; }
    .access-info { padding: 80px 24px 48px; max-width: none; }
    .access-map { min-height: 320px; }
  }

  /* ============ MOBILE NAV (hamburger) ============ */
  .nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 44px; height: 44px;
    flex-direction: column; justify-content: center; align-items: center; gap: 6px;
    z-index: 1001; position: relative;
  }
  .nav-toggle span {
    display: block; width: 26px; height: 2px;
    background: var(--white); transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  @media (max-width: 768px) {
    header { position: sticky; top: 0; background: rgba(13,13,13,0.92); backdrop-filter: blur(8px); z-index: 1000; }
    .nav-toggle { display: flex; }
    nav {
      display: flex; position: fixed; inset: 0;
      background: rgba(13,13,13,0.97);
      flex-direction: column; align-items: center; justify-content: center;
      gap: 8px; z-index: 999;
      opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease;
    }
    nav.open { opacity: 1; visibility: visible; }
    nav a { font-size: 18px; padding: 14px; letter-spacing: 0.08em; }
    nav .nav-cta { margin-top: 16px; }

    /* Mobile typography */
    .hero-title { font-size: clamp(44px, 13vw, 64px); }
    .hero-sub br { display: none; }
    .section-title { font-size: clamp(34px, 9vw, 48px); margin-bottom: 40px; }
    .stat-num { font-size: 52px; }
    .service-num { font-size: 52px; }
    .cta-title { font-size: clamp(40px, 11vw, 64px); }
    .hero-vertical { display: none; }
  }

  /* ============ CONTACT FORM ============ */
  .contact-form-sec, .privacy-sec { padding: 100px 48px 120px; background: var(--black); min-height: 70vh; }
  .contact-form-inner, .privacy-inner { max-width: 860px; margin: 0 auto; }
  .wiz-steps { display: flex; align-items: center; gap: 20px; margin-bottom: 48px; }
  .wiz-step {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; letter-spacing: 0.08em; color: rgba(247,245,242,0.35);
  }
  .wiz-step em {
    font-family: 'Bebas Neue', sans-serif; font-style: normal; font-size: 22px;
    color: rgba(247,245,242,0.25); transition: color 0.3s;
  }
  .wiz-step.is-active { color: var(--white); }
  .wiz-step.is-active em { color: var(--red); }
  .wiz-line { flex: 1; height: 1px; background: var(--border); }

  .step-panel { display: none; }
  .step-panel.on-step { display: block; animation: zpFade 0.4s ease; }
  @keyframes zpFade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

  .field-block { margin-bottom: 40px; }
  .fl-label { font-size: 14px; font-weight: 500; letter-spacing: 0.06em; margin-bottom: 16px; }
  .req {
    display: inline-block; font-size: 10px; color: var(--white);
    background: var(--red); padding: 2px 8px; margin-left: 8px;
    letter-spacing: 0.1em; vertical-align: middle;
  }
  .opt {
    display: inline-block; font-size: 10px; color: rgba(247,245,242,0.5);
    border: 1px solid var(--border); padding: 2px 8px; margin-left: 8px;
    letter-spacing: 0.1em; vertical-align: middle;
  }
  .multi { font-size: 11px; color: rgba(247,245,242,0.4); margin-left: 6px; }
  .chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
  .chip {
    font-family: inherit; font-size: 13px; letter-spacing: 0.04em;
    color: rgba(247,245,242,0.65); background: none;
    border: 1px solid var(--border); padding: 12px 20px;
    cursor: pointer; transition: all 0.25s ease;
  }
  .chip:hover { border-color: rgba(232,0,26,0.5); color: var(--white); }
  .chip.sel {
    border-color: var(--red); color: var(--white);
    background: rgba(232,0,26,0.12);
    box-shadow: 0 0 16px var(--red-glow);
  }
  .err { display: none; font-size: 12px; color: var(--red); margin-top: 10px; }
  .has-err .err { display: block; }
  .has-err input, .has-err textarea { border-color: var(--red) !important; }

  .form-half { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .form-row { margin-bottom: 28px; }
  .form-row label { display: block; font-size: 14px; font-weight: 500; letter-spacing: 0.06em; margin-bottom: 12px; }
  .form-row input, .form-row textarea {
    width: 100%; font-family: inherit; font-size: 15px;
    color: var(--white); background: var(--light);
    border: 1px solid var(--border); padding: 16px 18px;
    outline: none; transition: border-color 0.3s, box-shadow 0.3s;
  }
  .form-row input:focus, .form-row textarea:focus {
    border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,0,26,0.12);
  }
  .form-row textarea { min-height: 160px; resize: vertical; }
  .form-row ::placeholder { color: rgba(247,245,242,0.25); }

  .privacy-row { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: 8px 0 36px; font-size: 14px; }
  .privacy-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--red); cursor: pointer; }
  .privacy-row label { cursor: pointer; }
  .privacy-row a { color: var(--red); text-decoration: underline; }
  .privacy-row .err { width: 100%; margin-top: 0; }

  .wiz-nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 12px; }
  .wiz-hint { font-size: 12px; color: rgba(247,245,242,0.35); letter-spacing: 0.08em; }
  .btn-back {
    font-family: inherit; font-size: 14px; color: rgba(247,245,242,0.55);
    background: none; border: 1px solid var(--border); padding: 16px 28px;
    cursor: pointer; transition: color 0.3s, border-color 0.3s;
  }
  .btn-back:hover { color: var(--white); border-color: rgba(247,245,242,0.4); }
  #zpContactForm .btn-primary { border: none; cursor: pointer; font-family: inherit; font-size: 15px; }
  .zp-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

  .form-thanks { text-align: center; padding: 60px 24px; border: 1px solid var(--border); background: var(--light); }
  .form-thanks .thanks-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: var(--red);
    line-height: 1; margin-bottom: 24px;
  }
  .form-thanks h3 { font-size: 22px; letter-spacing: 0.06em; margin-bottom: 16px; }
  .form-thanks p { font-size: 14px; line-height: 2; color: rgba(247,245,242,0.6); margin-bottom: 32px; }
  .form-thanks .btn-primary { display: inline-flex; }

  /* ============ PRIVACY PAGE ============ */
  .privacy-lead { font-size: 14px; line-height: 2.2; color: rgba(247,245,242,0.6); margin-bottom: 56px; }
  .privacy-block { margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
  .privacy-block h3 {
    display: flex; align-items: baseline; gap: 14px;
    font-size: 18px; font-weight: 500; letter-spacing: 0.04em; margin-bottom: 18px;
  }
  .privacy-block h3 span {
    font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--red); line-height: 1;
  }
  .privacy-block p { font-size: 14px; line-height: 2.1; color: rgba(247,245,242,0.6); }
  .privacy-block ul { margin: 14px 0 0 2px; padding-left: 20px; }
  .privacy-block li { font-size: 14px; line-height: 2.1; color: rgba(247,245,242,0.6); }
  .privacy-block li::marker { color: var(--red); }
  .privacy-contact { margin-top: 16px; padding-left: 16px; border-left: 2px solid var(--red); }
  .privacy-date { font-size: 13px; color: rgba(247,245,242,0.4); margin-bottom: 48px; }
  .privacy-back { display: inline-flex; }

  @media (max-width: 768px) {
    .contact-form-sec, .privacy-sec { padding: 64px 24px 80px; }
    .form-half { grid-template-columns: 1fr; gap: 0; }
    .wiz-nav { flex-direction: column-reverse; align-items: stretch; }
    .wiz-nav .btn-primary, .wiz-nav .btn-back { justify-content: center; text-align: center; }
    .chip { padding: 12px 16px; font-size: 12px; }
  }

  /* ============ LOGO IMAGE ============ */
  .logo .logo-img { height: 34px; width: auto; display: block; }
  .footer-logo .logo-img { height: 28px; width: auto; display: block; opacity: 0.9; transition: opacity 0.3s; }
  .footer-logo:hover .logo-img { opacity: 1; }
  @media (max-width: 768px) {
    .logo .logo-img { height: 28px; }
    .footer-logo .logo-img { height: 24px; }
  }
