/* ── LOCAL FONTS ── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/inter/inter-light.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter/inter-regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter/inter-medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter/inter-semibold.ttf') format('truetype');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/rubik/rubik-light.ttf') format('truetype');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/rubik/rubik-regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/rubik/rubik-medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/rubik/rubik-semibold.ttf') format('truetype');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/rubik/rubik-bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/rubik/rubik-extrabold.ttf') format('truetype');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/rubik/rubik-black.ttf') format('truetype');
}

:root {
    --red: #fa274d;
    --red-dark: #d91e40;
    --navy: #22294f;
    --navy-light: #2d3561;
    --dark: #212934;
    --gray-light: #f0f2f5;
    --gray-mid: #e0e0e0;
    --text-muted: #6a7684;
    --white: #ffffff;
  }

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

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    font-family: 'Inter', Arial, sans-serif;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5 {
    font-family: 'Rubik', Arial, sans-serif;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 60px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(34,41,79,0.08);
    box-shadow: 0 2px 20px rgba(34,41,79,0.06);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
    overflow: visible;
    line-height: 0;
  }

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

  .nav-logo-text {
    font-family: 'Rubik', sans-serif;
    font-size: 14px; font-weight: 700;
    color: #fff; line-height: 1.2;
    letter-spacing: 0.02em;
  }

  .nav-logo-text span { color: var(--red); }

  .nav-badge {
    background: var(--red);
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 6px;
  }

  .nav-li-btn {
    display: flex; align-items: center; gap: 6px;
    background: rgba(34,41,79,0.06);
    border: 1px solid rgba(34,41,79,0.15);
    color: var(--navy);
    font-family: 'Rubik', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
  }

  .nav-li-btn:hover { background: rgba(34,41,79,0.12); }

  /* ── HERO ── */
  .hero {
    background: #ffffff;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 140px 60px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(250,39,77,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute; bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(34,41,79,0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  /* Light hero: large decorative circle right side like sitefusion.pro */
  .hero-bg-circle {
    position: absolute; top: -60px; right: -120px;
    width: 700px; height: 700px;
    background: #eef0f6;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
  }
  .hero-inner { position: relative; z-index: 1; }

  .hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(250,39,77,0.15);
    border: 1px solid rgba(250,39,77,0.3);
    color: var(--red);
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px; border-radius: 20px;
    margin-bottom: 28px;
  }

  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
  }

  .hero h1 {
    font-size: 56px; font-weight: 800; line-height: 1.1;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .hero h1 span { color: var(--red); }

  .hero-sub {
    font-size: 20px; font-weight: 400; color: var(--text-muted);
    margin-bottom: 36px; line-height: 1.6;
  }

  .hero-meta {
    display: flex; gap: 24px; margin-bottom: 40px;
  }

  .hero-meta-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--text-muted);
  }

  .hero-meta-item svg { color: var(--red); flex-shrink: 0; }

  .hero-cta {
    display: flex; gap: 16px; flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--red);
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 14px 32px; border-radius: 8px;
    text-decoration: none; display: inline-block;
    transition: background 0.2s, transform 0.15s;
    border: none; cursor: pointer;
  }

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

  .btn-outline {
    background: transparent;
    color: var(--navy);
    font-family: 'Rubik', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 14px 32px; border-radius: 8px;
    text-decoration: none; display: inline-block;
    border: 2px solid rgba(34,41,79,0.3);
    transition: border-color 0.2s, transform 0.15s;
  }

  .btn-outline:hover { border-color: var(--navy); transform: translateY(-1px); }

  .hero-visual {
    display: flex; flex-direction: column; gap: 16px;
  }

  .hero-card {
    background: #ffffff;
    border: 1px solid rgba(34,41,79,0.1);
    box-shadow: 0 2px 16px rgba(34,41,79,0.07);
    border-radius: 12px;
    padding: 24px 28px;
  }

  .hero-card-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 8px;
  }

  .hero-card-title {
    font-family: 'Rubik', sans-serif;
    font-size: 18px; font-weight: 700; color: var(--navy);
    margin-bottom: 4px;
  }

  .hero-card-desc {
    font-size: 13px; color: var(--text-muted); line-height: 1.5;
  }

  .hero-card-date {
    display: flex; align-items: center; gap: 8px;
    margin-top: 14px;
    font-size: 13px; color: var(--text-muted);
  }

  .hero-card-date strong {
    background: var(--red); color: #fff;
    padding: 3px 10px; border-radius: 4px;
    font-size: 12px; font-weight: 700;
  }

  /* ── PAIN POINTS ── */
  .pain-section {
    background: var(--dark);
    padding: 100px 60px;
  }

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

  .section-label {
    font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 42px; font-weight: 800; line-height: 1.15;
    color: #fff; margin-bottom: 20px;
  }

  .section-title span { color: var(--red); }

  .section-subtitle {
    font-size: 17px; color: rgba(255,255,255,0.55);
    line-height: 1.7; max-width: 600px; margin-bottom: 60px;
  }

  .pain-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }

  .pain-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 32px;
    transition: border-color 0.2s, background 0.2s;
  }

  .pain-card:hover {
    border-color: rgba(250,39,77,0.3);
    background: rgba(250,39,77,0.04);
  }

  .pain-icon {
    width: 44px; height: 44px;
    background: rgba(250,39,77,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
  }

  .pain-card h4 {
    font-family: 'Rubik', sans-serif;
    font-size: 17px; font-weight: 700; color: #fff;
    margin-bottom: 10px;
  }

  .pain-card p {
    font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65;
  }

  /* ── KITCHEN TALK ── */
  .talk-section {
    background: var(--gray-light);
    padding: 100px 60px;
  }

  .talk-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }

  .talk-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(250,39,77,0.1);
    border: 1px solid rgba(250,39,77,0.25);
    color: var(--red);
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px; border-radius: 20px;
    margin-bottom: 24px;
  }

  .talk-section .section-title { color: var(--navy); }
  .talk-section .section-subtitle { color: var(--text-muted); }

  .talk-details {
    display: flex; flex-direction: column; gap: 16px;
    margin-bottom: 36px;
  }

  .talk-detail-item {
    display: flex; align-items: flex-start; gap: 14px;
  }

  .talk-detail-icon {
    width: 38px; height: 38px;
    background: var(--navy);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
  }

  .talk-detail-content label {
    display: block; font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 3px;
  }

  .talk-detail-content span {
    font-size: 15px; font-weight: 600; color: var(--navy);
  }

  .talk-visual {
    background: var(--navy);
    border-radius: 20px; padding: 48px;
    position: relative; overflow: hidden;
  }

  .talk-visual::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(250,39,77,0.2) 0%, transparent 70%);
  }

  .talk-visual-tag {
    background: var(--red);
    color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px; border-radius: 4px;
    display: inline-block; margin-bottom: 24px;
  }

  .talk-visual h3 {
    font-size: 24px; font-weight: 800; color: #fff;
    line-height: 1.3; margin-bottom: 16px;
  }

  .talk-visual p {
    font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7;
    margin-bottom: 32px;
  }

  .talk-speaker {
    display: flex; align-items: center; gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .talk-speaker-avatar {
    width: 48px; height: 48px;
    background: var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Rubik', sans-serif;
    font-size: 18px; font-weight: 800; color: #fff;
  }

  .talk-speaker-info label {
    display: block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 3px;
  }

  .talk-speaker-info span {
    font-size: 15px; font-weight: 700; color: #fff;
  }

  /* ── TECH PILLARS ── */
  .pillars-section {
    background: var(--navy);
    padding: 100px 60px;
  }

  .pillars-section .section-title { color: #fff; }
  .pillars-section .section-subtitle { color: rgba(255,255,255,0.5); }

  .pillars-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 60px;
  }

  .pillars-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }

  .pillar-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 40px 36px;
    transition: all 0.25s;
    position: relative; overflow: hidden;
  }

  .pillar-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }

  .pillar-card:hover {
    border-color: rgba(250,39,77,0.3);
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
  }

  .pillar-card:hover::before { transform: scaleX(1); }

  .pillar-img {
    width: 100%; border-radius: 10px;
    margin-bottom: 24px;
    object-fit: cover; height: 180px;
    opacity: 0.92;
    transition: opacity 0.2s;
  }
  .pillar-card:hover .pillar-img { opacity: 1; }

  .pillar-logo {
    height: 36px; margin-bottom: 28px;
    display: flex; align-items: center;
  }

  .pillar-logo img { height: 32px; object-fit: contain; filter: brightness(0) invert(1); }

  .pillar-logo-text {
    font-family: 'Rubik', sans-serif;
    font-size: 22px; font-weight: 800; color: #fff;
    letter-spacing: -0.01em;
  }

  .pillar-logo-text .accent { color: var(--red); }

  .pillar-card h3 {
    font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 12px;
  }

  .pillar-card p {
    font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7;
    margin-bottom: 28px;
  }

  .pillar-features {
    list-style: none; display: flex; flex-direction: column; gap: 10px;
  }

  .pillar-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: rgba(255,255,255,0.8);
  }

  .pillar-features li::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--red); border-radius: 50%; flex-shrink: 0;
  }

  /* ── PROCESS SECTION ── */
  .process-section {
    background: #fff;
    padding: 100px 60px;
  }

  .process-section .section-title { color: var(--navy); }
  .process-section .section-subtitle { color: var(--text-muted); }

  .process-flow {
    display: flex; gap: 0; align-items: stretch;
    margin-top: 60px; position: relative;
  }

  .process-flow::before {
    content: '';
    position: absolute; top: 36px; left: 60px; right: 60px; height: 2px;
    background: linear-gradient(to right, var(--red), rgba(250,39,77,0.2));
    z-index: 0;
  }

  .process-step {
    flex: 1; padding: 0 20px; text-align: center;
    position: relative; z-index: 1;
  }

  .process-step-num {
    width: 72px; height: 72px;
    background: var(--navy);
    border: 3px solid var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Rubik', sans-serif;
    font-size: 20px; font-weight: 800; color: #fff;
    position: relative;
  }

  .process-step:first-child .process-step-num { background: var(--red); }

  .process-step-icon { font-size: 26px; }

  .process-step h4 {
    font-family: 'Rubik', sans-serif;
    font-size: 16px; font-weight: 700; color: var(--navy);
    margin-bottom: 8px;
  }

  .process-step p {
    font-size: 13px; color: var(--text-muted); line-height: 1.6;
  }

  .process-step-tag {
    display: inline-block;
    background: rgba(250,39,77,0.08);
    color: var(--red);
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px; border-radius: 4px;
    margin-top: 12px;
  }

  .bpmn-banner {
    margin-top: 60px;
    background: var(--navy);
    border-radius: 16px; padding: 40px 48px;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
  }

  .bpmn-banner-left h3 {
    font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 10px;
  }

  .bpmn-banner-left p {
    font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 500px;
  }

  .bpmn-chips {
    display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px;
  }

  .bpmn-chip {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    font-size: 13px; font-weight: 500;
    padding: 6px 16px; border-radius: 20px;
  }

  /* ── USE CASES ── */
  .usecases-section {
    background: var(--gray-light);
    padding: 100px 60px;
  }

  .usecases-section .section-title { color: var(--navy); }
  .usecases-section .section-subtitle { color: var(--text-muted); }

  .usecases-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }

  .usecase-card {
    background: #fff;
    border-radius: 14px; padding: 36px 32px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.2s;
  }

  .usecase-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transform: translateY(-3px);
  }

  .usecase-num {
    font-family: 'Rubik', sans-serif;
    font-size: 48px; font-weight: 900; color: rgba(250,39,77,0.12);
    line-height: 1; margin-bottom: 16px;
  }

  .usecase-card h4 {
    font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px;
  }

  .usecase-card p {
    font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px;
  }

  .usecase-tag {
    display: inline-block;
    background: rgba(34,41,79,0.07);
    color: var(--navy);
    font-size: 12px; font-weight: 600;
    padding: 5px 12px; border-radius: 6px;
  }

  /* ── SOCIAL PROOF ── */
  .proof-section {
    background: #fff;
    padding: 100px 60px;
  }

  .proof-section .section-title { color: var(--navy); }
  .proof-section .section-subtitle { color: var(--text-muted); }

  .proof-partners {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
    margin-bottom: 60px;
    border: 1px solid var(--gray-mid);
    border-radius: 16px; overflow: hidden;
  }

  .proof-partner {
    flex: 1; min-width: 160px;
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid var(--gray-mid);
    transition: background 0.2s;
  }

  .proof-partner:last-child { border-right: none; }
  .proof-partner:hover { background: var(--gray-light); }

  .proof-partner-name {
    font-family: 'Rubik', sans-serif;
    font-size: 18px; font-weight: 800; color: var(--navy);
    margin-bottom: 6px;
  }

  .proof-partner-desc {
    font-size: 12px; color: var(--text-muted);
  }

  .proof-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }

  .proof-stat {
    text-align: center; padding: 40px 24px;
    background: var(--gray-light); border-radius: 14px;
  }

  .proof-stat-num {
    font-family: 'Rubik', sans-serif;
    font-size: 52px; font-weight: 900; color: var(--red);
    line-height: 1; margin-bottom: 8px;
  }

  .proof-stat-label {
    font-size: 14px; color: var(--text-muted); font-weight: 500;
  }

  /* ── MEET US ── */
  .meet-section {
    background: var(--gray-light);
    padding: 100px 60px;
  }

  .meet-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }

  .meet-section .section-title { color: var(--navy); }
  .meet-section .section-subtitle { color: var(--text-muted); }

  .meet-options {
    display: flex; flex-direction: column; gap: 16px;
  }

  .meet-options-list {
    display: flex; flex-direction: column; gap: 16px;
  }

  .meet-option {
    display: flex; align-items: center; gap: 20px;
    background: #fff; border-radius: 12px;
    padding: 24px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    text-decoration: none; color: inherit;
    transition: all 0.2s;
    width: 100%; cursor: pointer;
    font-family: inherit; text-align: left;
  }

  .meet-option:hover {
    border-color: var(--red);
    box-shadow: 0 4px 20px rgba(250,39,77,0.1);
    transform: translateX(4px);
  }

  .meet-option-icon {
    width: 48px; height: 48px;
    background: var(--navy);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
  }

  .meet-option-content {
    display: flex; flex-direction: column;
  }

  .meet-option-content h4,
  .meet-option-title {
    font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px;
    font-family: 'Rubik', sans-serif;
  }

  .meet-option-content p,
  .meet-option-desc {
    font-size: 13px; color: var(--text-muted);
  }

  .meet-option-arrow {
    margin-left: auto; color: var(--red); font-size: 20px; font-weight: 700;
    flex-shrink: 0;
  }

  /* ── MEET FORM PANEL ── */
  .meet-form-hp {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap; pointer-events: none;
  }

  .meet-form-panel {
    display: flex; flex-direction: column; gap: 20px;
  }

  .meet-form-panel[hidden],
  .meet-options-list[hidden],
  .meet-form-success[hidden],
  .meet-form[hidden] {
    display: none;
  }

  .meet-form-panel:not([hidden]) {
    animation: formSlideIn 0.25s ease both;
  }

  @keyframes formSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .meet-form-back {
    display: inline-flex; align-items: center; gap: 8px;
    background: none; border: none; cursor: pointer;
    font-family: 'Rubik', sans-serif;
    font-size: 13px; font-weight: 600;
    color: var(--text-muted);
    padding: 0; transition: color 0.2s;
    align-self: flex-start;
  }

  .meet-form-back:hover { color: var(--navy); }

  .meet-form-intro {
    font-size: 14px; color: var(--text-muted); line-height: 1.6;
    margin: 0;
  }

  .meet-form {
    display: flex; flex-direction: column; gap: 16px;
  }

  .meet-form-field {
    display: flex; flex-direction: column; gap: 6px;
  }

  .meet-form-field--split {
    flex-direction: row; gap: 12px;
  }

  .meet-form-field--split > div {
    display: flex; flex-direction: column; gap: 6px; flex: 1 1 0;
  }

  .meet-form-field label {
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--navy);
  }

  .meet-form-optional {
    font-weight: 400; text-transform: none;
    letter-spacing: 0; color: var(--text-muted);
  }

  .meet-form-field input,
  .meet-form-field textarea {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px; color: var(--dark);
    background: #fff;
    border: 1px solid var(--gray-mid);
    border-radius: 8px;
    padding: 12px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
  }

  .meet-form-field textarea {
    resize: vertical; min-height: 96px;
  }

  .meet-form-field input:focus,
  .meet-form-field textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(34,41,79,0.1);
  }

  .meet-form-error {
    font-size: 13px; color: var(--red);
    background: rgba(250,39,77,0.06);
    border: 1px solid rgba(250,39,77,0.2);
    border-radius: 6px; padding: 10px 14px;
  }

  .meet-form-submit {
    align-self: flex-start;
  }

  .meet-form-success {
    display: flex; flex-direction: column; align-items: center;
    gap: 12px; text-align: center;
    padding: 32px 24px;
    background: #fff; border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
  }

  .meet-form-success h4 {
    font-size: 20px; font-weight: 800; color: var(--navy); margin: 0;
  }

  .meet-form-success p {
    font-size: 14px; color: var(--text-muted); margin: 0;
  }

  .meet-map-placeholder {
    background: var(--navy);
    border-radius: 20px; padding: 48px;
    color: #fff; text-align: center;
  }

  .meet-map-placeholder .map-icon { font-size: 48px; margin-bottom: 20px; }

  .meet-map-placeholder h3 {
    font-size: 22px; font-weight: 800; margin-bottom: 8px;
  }

  .meet-map-placeholder p {
    font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 24px;
  }

  .meet-map-address {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px; padding: 16px 20px;
    font-size: 14px; color: rgba(255,255,255,0.7);
    line-height: 1.6;
  }

  /* ── CTA FOOTER ── */
  .cta-section {
    background: var(--navy);
    padding: 100px 60px;
    text-align: center;
    position: relative; overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(250,39,77,0.1) 0%, transparent 60%);
    pointer-events: none;
  }

  .cta-section .section-title { color: #fff; max-width: 700px; margin: 0 auto 20px; }
  .cta-section .section-subtitle { color: rgba(255,255,255,0.5); max-width: 560px; margin: 0 auto 48px; }

  .cta-btns {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 60px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    padding: 40px 60px 28px;
    display: flex; flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
  }

  .footer-legal {
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 11px; color: rgba(255,255,255,0.22);
    line-height: 1.6; text-align: center;
  }

  .footer-left {
    display: flex; align-items: center; gap: 16px;
  }

  .footer-logo-text {
    font-family: 'Rubik', sans-serif;
    font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5);
  }

  .footer-logo-text span { color: var(--red); }

  .footer-divider { color: rgba(255,255,255,0.15); }

  .footer-copy {
    font-size: 13px; color: rgba(255,255,255,0.3);
  }

  .footer-links {
    display: flex; gap: 24px;
  }

  .footer-links a {
    font-size: 13px; color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }

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


  .talk-speakers {
    display: flex; gap: 20px; flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .talk-speaker-item {
    display: flex; align-items: center; gap: 12px; flex: 1; min-width: 180px;
  }
  .talk-speaker-photo {
    width: 52px; height: 52px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
    border: 2px solid rgba(250,39,77,0.5);
  }
  .talk-speaker-info label {
    display: block; font-size: 10px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 2px;
  }
  .talk-speaker-info .speaker-name {
    font-size: 14px; font-weight: 700; color: #fff; display: block;
  }
  .talk-speaker-info .speaker-title {
    font-size: 12px; color: rgba(255,255,255,0.5); display: block;
  }
  .speaker-li {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; color: rgba(250,39,77,0.8);
    text-decoration: none; margin-top: 3px;
    transition: color 0.2s;
  }
  .speaker-li:hover { color: var(--red); }

  /* ── HEXAGON ── */
  .hex-icon {
    display: inline-block;
  }

  /* ── SCROLL ANIMATION ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .fade-in {
    opacity: 1;
    animation: fadeUp 0.7s ease both;
  }

  /* ── RESPONSIVE ── */

@media (max-width: 650px) {
    .nav-badge { display: none; }
  }

  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .hero { padding: 120px 24px 60px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 38px; }
    .hero-bg-circle { display: none; }
    .hero-meta { flex-wrap: wrap; gap: 16px; }
    .pain-section, .talk-section, .pillars-section, .process-section,
    .usecases-section, .proof-section, .meet-section, .cta-section { padding: 70px 24px; }
    .pain-grid, .pillars-grid, .usecases-grid { grid-template-columns: 1fr; }
    .talk-inner, .meet-inner { grid-template-columns: 1fr; gap: 40px; }
    .pillars-header { flex-direction: column; gap: 16px; align-items: flex-start; }
    .process-flow { flex-direction: column; gap: 32px; }
    .process-flow::before { display: none; }
    .bpmn-banner { flex-direction: column; gap: 24px; padding: 32px 24px; }
    .bpmn-banner-left p { max-width: 100%; }
    .proof-partners { flex-direction: column; }
    .proof-partner { min-width: 0; border-right: none; border-bottom: 1px solid var(--gray-mid); }
    .proof-partner:last-child { border-bottom: none; }
    .proof-stats { grid-template-columns: repeat(2, 1fr); }
    .cta-btns { flex-direction: column; align-items: center; }
    footer { flex-direction: column; gap: 20px; text-align: center; }
    .footer-top { flex-direction: column; gap: 16px; align-items: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }

  @media (max-width: 480px) {
    nav { padding: 14px 16px; }
    .nav-li-btn { display: none !important;}
    .hero { padding: 100px 16px 48px; }
    .hero h1 { font-size: 30px; }
    .hero-sub { font-size: 16px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn-primary,
    .hero-cta .btn-outline { text-align: center; }
    .pain-section, .talk-section, .pillars-section, .process-section,
    .usecases-section, .proof-section, .meet-section, .cta-section { padding: 56px 16px; }
    .section-title { font-size: 30px; }
    .talk-visual { padding: 32px 24px; }
    .proof-stats { grid-template-columns: 1fr; }
    .proof-stat-num { font-size: 40px; }
    .meet-map-placeholder { padding: 32px 20px; }
    .cta-section .section-title { font-size: 28px; }
    .cta-btns .btn-primary,
    .cta-btns .btn-outline { width: 100%; text-align: center; }
    footer { padding: 32px 16px 20px; }
  }
