  :root {
    --teal-50: #E1F5EE;
    --teal-100: #9FE1CB;
    --teal-200: #5DCAA5;
    --teal-400: #1D9E75;
    --teal-600: #0F6E56;
    --teal-800: #085041;
    --teal-900: #04342C;
    --text-primary: #1A1A18;
    --text-secondary: #5F5E5A;
    --border: rgba(0,0,0,0.08);
    --surface: #FFFFFF;
    --page-bg: #FAFAF8;
  }
  * { box-sizing: border-box; }
  body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-primary);
    background: var(--page-bg);
    line-height: 1.5;
  }
  a { text-decoration: none; color: inherit; }
  img { max-width: 100%; }

  .topbar {
    background: var(--teal-900);
  }
  .topbar-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 8px 32px;
    font-size: 12px;
    color: var(--teal-100);
  }
  .topbar-container a { color: var(--teal-50); }
  .topbar-container span { display: flex; align-items: center; gap: 6px; }

  .topbar {
    transition: max-height 0.35s ease, opacity 0.25s ease;
    max-height: 40px;
    opacity: 1;
    overflow: hidden;
  }
  .topbar.is-hidden {
    max-height: 0;
    opacity: 0;
  }
  .nav {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: box-shadow 0.3s ease;
  }
  .nav.is-scrolled {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1080px;
    margin: 0 auto;
    padding: 16px 32px;
    transition: padding 0.3s ease;
  }
  .nav.is-scrolled .nav-container {
    padding: 10px 32px;
  }
  .nav-logo img {
    height: 56px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
  }
  .nav.is-scrolled .nav-logo img {
    height: 42px;
  }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    color: var(--text-secondary);
  }
  .nav-links a { transition: color 0.15s ease; }
  .nav-links a:hover { color: var(--teal-600); }
  .nav-actions { display: flex; align-items: center; gap: 16px; }
  .nav-login {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.15s ease;
  }
  .nav-login:hover { color: var(--teal-600); }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s ease, transform 0.1s ease;
  }
  .btn:hover { opacity: 0.9; }
  .btn:active { transform: scale(0.98); }
  .btn-primary { background: var(--teal-600); color: var(--teal-50); }
  .btn-secondary { background: transparent; color: var(--teal-800); border: 1px solid var(--teal-200); }
  .btn-light { background: var(--teal-50); color: var(--teal-900); }
  .btn-sm { padding: 8px 16px; font-size: 13px; }

  .hero {
    background: var(--teal-50);
    padding: 80px 32px;
    overflow: hidden;
    position: relative;
  }
  .hero-bg {
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    bottom: -80px;
    background-image: url('https://images.unsplash.com/photo-1763729805496-b5dbf7f00c79?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 0;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(225,245,238,0.93), rgba(225,245,238,0.97));
    z-index: 1;
  }
  .hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
  }
  .hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--teal-800);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 16px;
  }
  .hero h1 {
    font-size: 42px;
    font-weight: 600;
    color: var(--teal-900);
    margin: 0 0 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .hero p.lead {
    font-size: 17px;
    color: var(--teal-800);
    max-width: 460px;
    margin: 0 0 32px;
    line-height: 1.6;
  }
  .hero-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  .trust-line {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--teal-600);
  }
  .trust-line span { display: flex; align-items: center; gap: 6px; }

  .hero-visual { display: flex; justify-content: center; }
  .doc-mock {
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(4,52,44,0.12);
    width: 100%;
    max-width: 360px;
    padding: 20px;
    transform: rotate(-2deg);
    position: relative;
  }
  .doc-mock-bar { display: flex; gap: 6px; margin-bottom: 20px; }
  .doc-mock-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal-100); }
  .doc-mock-dot:nth-child(2) { background: var(--teal-200); }
  .doc-mock-dot:nth-child(3) { background: var(--teal-600); }
  .doc-mock-line { height: 9px; border-radius: 5px; background: var(--page-bg); margin-bottom: 10px; }
  .doc-mock-line.w-90 { width: 90%; }
  .doc-mock-line.w-75 { width: 75%; }
  .doc-mock-line.w-60 { width: 60%; }
  .doc-mock-line.w-40 { width: 40%; }
  .doc-mock-divider { border: none; border-top: 1px dashed var(--border); margin: 20px 0 16px; }
  .doc-mock-sign-area { position: relative; }
  .doc-mock-sign-line {
    position: relative;
    height: 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
  }
  .doc-mock-sign-label {
    position: absolute;
    left: 0;
    bottom: 8px;
    font-size: 12px;
    color: var(--text-muted);
    animation: docSignLabel 9s infinite;
  }
  .doc-mock-sig-svg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 68%;
    height: 40px;
    overflow: visible;
  }
  .doc-mock-sig-path {
    fill: none;
    stroke: var(--teal-800);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }
  .sig-p1 { animation: docSigDraw1 9s infinite; }
  .sig-p2 { animation: docSigDraw2 9s infinite; }
  .sig-p3 { animation: docSigDraw3 9s infinite; }
  .sig-p4 { animation: docSigDraw4 9s infinite; }
  .sig-p5 { animation: docSigDraw5 9s infinite; }
  .sig-p6 { animation: docSigDraw6 9s infinite; }
  .sig-p7 { animation: docSigDraw7 9s infinite; }
  .sig-p8 { animation: docSigDraw8 9s infinite; }
  .sig-p9 { animation: docSigDraw9 9s infinite; }
  .doc-mock-action {
    position: relative;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .doc-mock-send-btn {
    background: var(--teal-600);
    color: var(--teal-50);
    border: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    transform-origin: center;
    animation: docSendBtn 9s infinite;
  }
  .doc-mock-loading,
  .doc-mock-sent {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
  }
  .doc-mock-loading { color: var(--text-secondary); animation: docLoading 9s infinite; }
  .doc-mock-sent { color: var(--teal-600); animation: docSent 9s infinite; }
  .doc-mock-sent i { font-size: 17px; }
  .doc-mock-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid var(--border);
    border-top-color: var(--teal-600);
    border-radius: 50%;
    animation: docSpin 0.8s linear infinite;
  }
  .doc-mock-cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.25));
    animation: docCursorMove 9s infinite;
  }
  .doc-mock-cursor svg { width: 100%; height: 100%; fill: var(--text-primary); }

  @keyframes docCursorMove {
    0%, 5% { opacity: 0; top: -8%; left: 82%; }
    8% { opacity: 1; top: -8%; left: 82%; }
    20% { opacity: 1; top: 66%; left: 8%; }
    32% { top: 58%; left: 46%; }
    44% { top: 66%; left: 88%; }
    48% { top: 66%; left: 88%; }
    55% { top: 84%; left: 76%; }
    58% { opacity: 1; top: 84%; left: 76%; }
    60% { opacity: 0; top: 84%; left: 76%; }
    100% { opacity: 0; top: -8%; left: 82%; }
  }
  @keyframes docSigDraw1 {
    0%, 20.00% { stroke-dashoffset: 100; }
    20.60% { stroke-dashoffset: 0; }
    92% { stroke-dashoffset: 0; }
    96%, 100% { stroke-dashoffset: 100; }
  }
  @keyframes docSigDraw2 {
    0%, 20.60% { stroke-dashoffset: 100; }
    22.40% { stroke-dashoffset: 0; }
    92% { stroke-dashoffset: 0; }
    96%, 100% { stroke-dashoffset: 100; }
  }
  @keyframes docSigDraw3 {
    0%, 22.40% { stroke-dashoffset: 100; }
    28.40% { stroke-dashoffset: 0; }
    92% { stroke-dashoffset: 0; }
    96%, 100% { stroke-dashoffset: 100; }
  }
  @keyframes docSigDraw4 {
    0%, 28.40% { stroke-dashoffset: 100; }
    29.60% { stroke-dashoffset: 0; }
    92% { stroke-dashoffset: 0; }
    96%, 100% { stroke-dashoffset: 100; }
  }
  @keyframes docSigDraw5 {
    0%, 29.60% { stroke-dashoffset: 100; }
    34.40% { stroke-dashoffset: 0; }
    92% { stroke-dashoffset: 0; }
    96%, 100% { stroke-dashoffset: 100; }
  }
  @keyframes docSigDraw6 {
    0%, 34.40% { stroke-dashoffset: 100; }
    37.40% { stroke-dashoffset: 0; }
    92% { stroke-dashoffset: 0; }
    96%, 100% { stroke-dashoffset: 100; }
  }
  @keyframes docSigDraw7 {
    0%, 37.40% { stroke-dashoffset: 100; }
    43.40% { stroke-dashoffset: 0; }
    92% { stroke-dashoffset: 0; }
    96%, 100% { stroke-dashoffset: 100; }
  }
  @keyframes docSigDraw8 {
    0%, 43.40% { stroke-dashoffset: 100; }
    43.70% { stroke-dashoffset: 0; }
    92% { stroke-dashoffset: 0; }
    96%, 100% { stroke-dashoffset: 100; }
  }
  @keyframes docSigDraw9 {
    0%, 43.70% { stroke-dashoffset: 100; }
    44.00% { stroke-dashoffset: 0; }
    92% { stroke-dashoffset: 0; }
    96%, 100% { stroke-dashoffset: 100; }
  }
  @keyframes docSignLabel {
    0%, 20% { opacity: 1; }
    26% { opacity: 0; }
    94% { opacity: 0; }
    98%, 100% { opacity: 1; }
  }
  @keyframes docSendBtn {
    0%, 54% { transform: scale(1); opacity: 1; }
    56% { transform: scale(0.92); opacity: 1; }
    58% { transform: scale(1); opacity: 1; }
    60% { opacity: 0; }
    93% { opacity: 0; }
    97%, 100% { opacity: 1; transform: scale(1); }
  }
  @keyframes docLoading {
    0%, 58% { opacity: 0; }
    61% { opacity: 1; }
    75% { opacity: 1; }
    78% { opacity: 0; }
    100% { opacity: 0; }
  }
  @keyframes docSent {
    0%, 78% { opacity: 0; transform: scale(0.85); }
    81% { opacity: 1; transform: scale(1); }
    92% { opacity: 1; transform: scale(1); }
    96% { opacity: 0; transform: scale(0.85); }
    100% { opacity: 0; transform: scale(0.85); }
  }
  @keyframes docSpin {
    to { transform: rotate(360deg); }
  }
  section { padding: 72px 32px; max-width: 1080px; margin: 0 auto; }
  section.tight { padding-top: 0; }
  h2.section-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 40px;
    letter-spacing: -0.01em;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
  }
  .feature-card i {
    font-size: 26px;
    color: var(--teal-600);
  }
  .feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 16px 0 8px;
  }
  .feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
  }

  .section-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--text-secondary);
    margin: -24px 0 40px;
  }

  .tour-band {
    position: relative;
    overflow: hidden;
    padding: 96px 32px;
  }
  .tour-band-bg {
    position: absolute;
    top: -160px;
    left: 0;
    right: 0;
    bottom: -160px;
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 0;
  }
  .tour-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4,52,44,0.80), rgba(4,52,44,0.88));
    z-index: 1;
  }
  #product-tour {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
  }
  .tour-band .section-title { color: var(--teal-50); }
  .tour-band .section-subtitle { color: var(--teal-100); }
  .tour-band .tour-step h3 { color: var(--teal-50); }
  .tour-band .tour-step p { color: var(--teal-100); }
  .tour-band .tour-step-num { background: var(--teal-50); color: var(--teal-800); }

  .tour-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
  }
  .tour-frame {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(4,52,44,0.14);
    overflow: hidden;
  }
  .tour-frame-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    background: var(--page-bg);
  }
  .tour-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal-100); }
  .tour-dot:nth-child(2) { background: var(--teal-200); }
  .tour-dot:nth-child(3) { background: var(--teal-600); }
  .tour-frame-title {
    margin-left: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
  }
  .tour-frame-body {
    position: relative;
    aspect-ratio: 1200 / 760;
    background: #262626;
    overflow: hidden;
  }
  .tour-screen {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.98) translateY(6px);
  }
  .tour-screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .tour-screen-1 { animation: tourScreen1 12s infinite; }
  .tour-screen-2 { animation: tourScreen2 12s infinite; }
  .tour-screen-3 { animation: tourScreen3 12s infinite; }


  .tour-steps { display: flex; flex-direction: column; gap: 28px; }
  .tour-step {
    display: flex;
    gap: 16px;
    opacity: 0.45;
    transition: opacity 0.4s ease;
  }
  .tour-step-1 { animation: tourStep1 12s infinite; }
  .tour-step-2 { animation: tourStep2 12s infinite; }
  .tour-step-3 { animation: tourStep3 12s infinite; }
  .tour-step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--teal-600);
    color: var(--teal-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
  }
  .tour-step h3 { font-size: 16px; font-weight: 600; margin: 4px 0 6px; }
  .tour-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

  @keyframes tourScreen1 {
    0%, 27% { opacity: 1; transform: scale(1) translateY(0); }
    30% { opacity: 0; transform: scale(0.98) translateY(6px); }
    97% { opacity: 0; transform: scale(0.98) translateY(6px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
  }
  @keyframes tourScreen2 {
    0%, 30% { opacity: 0; transform: scale(0.98) translateY(6px); }
    33% { opacity: 1; transform: scale(1) translateY(0); }
    60% { opacity: 1; transform: scale(1) translateY(0); }
    63% { opacity: 0; transform: scale(0.98) translateY(6px); }
    100% { opacity: 0; transform: scale(0.98) translateY(6px); }
  }
  @keyframes tourScreen3 {
    0%, 63% { opacity: 0; transform: scale(0.98) translateY(6px); }
    66% { opacity: 1; transform: scale(1) translateY(0); }
    93% { opacity: 1; transform: scale(1) translateY(0); }
    97%, 100% { opacity: 0; transform: scale(0.98) translateY(6px); }
  }
  @keyframes tourStep1 {
    0%, 27% { opacity: 1; }
    30% { opacity: 0.45; }
    97% { opacity: 0.45; }
    100% { opacity: 1; }
  }
  @keyframes tourStep2 {
    0%, 30% { opacity: 0.45; }
    33%, 60% { opacity: 1; }
    63% { opacity: 0.45; }
  }
  @keyframes tourStep3 {
    0%, 63% { opacity: 0.45; }
    66%, 93% { opacity: 1; }
    97% { opacity: 0.45; }
  }

  .security-band { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .security-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }
  .security-grid-single {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
  }
  .security-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
  }
  .security-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .security-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
  }
  .security-list i { color: var(--teal-600); font-size: 17px; margin-top: 2px; }
  .security-list strong { color: var(--text-primary); }

  .security-card {
    background: var(--page-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
  }
  .security-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .security-mini {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
  }
  .security-mini i { font-size: 22px; color: var(--teal-600); }
  .security-mini p { font-size: 13px; font-weight: 500; color: var(--text-primary); margin: 10px 0 0; }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
  }
  .price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .price-card.is-featured {
    border: 2px solid var(--teal-600);
    box-shadow: 0 16px 32px rgba(4,52,44,0.1);
  }
  .price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal-600);
    color: var(--teal-50);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 999px;
  }
  .price-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 12px;
  }
  .price-card .price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 0 0 8px;
  }
  .price-card .amount { font-size: 34px; font-weight: 600; color: var(--teal-900); }
  .price-card .period { font-size: 14px; color: var(--text-secondary); }
  .price-card .price-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 24px;
    line-height: 1.6;
  }
  .price-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    flex: 1;
  }
  .price-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 8px 0;
    border-top: 1px solid var(--border);
  }
  .price-features li:first-child { border-top: none; }
  .price-features i { color: var(--teal-600); font-size: 16px; }
  .btn-full { width: 100%; }
  .trial-note {
    text-align: center;
    font-size: 12px;
    color: var(--teal-600);
    margin: 10px 0 0;
  }

  .cta-banner {
    background: var(--teal-900);
    padding: 40px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }
  .cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .cta-banner h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--teal-50);
    margin: 0 0 6px;
  }
  .cta-banner p {
    font-size: 14px;
    color: var(--teal-100);
    margin: 0;
  }

  .pricing-band {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  footer {
    background: var(--teal-900);
    padding: 56px 32px 0;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1080px;
    margin: 0 auto;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .footer-brand { max-width: 420px; }
  .footer-brand img { height: 26px; width: auto; display: block; margin-bottom: 16px; }
  .footer-desc {
    font-size: 14px;
    color: var(--teal-100);
    line-height: 1.6;
    margin: 0;
  }
  .footer-heading {
    font-size: 13px;
    font-weight: 600;
    color: var(--teal-50);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 14px;
  }
  .footer-columns {
    display: flex;
    gap: 56px;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-col a {
    font-size: 14px;
    color: var(--teal-100);
  }
  .footer-col a:hover { color: var(--teal-50); }
  .footer-col a.has-icon {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .footer-col a.has-icon i { font-size: 15px; color: var(--teal-200); }
  .footer-bottom {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
  }
  .footer-bottom p {
    font-size: 13px;
    color: var(--teal-200);
    margin: 0;
  }

  @media (max-width: 860px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-content { text-align: center; }
    .hero-ctas { justify-content: center; }
    .trust-line { justify-content: center; }
    .hero p.lead { margin-left: auto; margin-right: auto; }
    .hero-visual { order: -1; }
    .doc-mock { max-width: 300px; }
  }
  @media (max-width: 720px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 32px; }
    .hero p.lead { font-size: 16px; }
    .features { grid-template-columns: 1fr; }
    .tour-layout { grid-template-columns: 1fr; gap: 28px; }
    .security-grid { grid-template-columns: 1fr; }
    .security-list { grid-template-columns: 1fr; }
    .page-header-dark-inner { flex-direction: column; align-items: flex-start; text-align: left; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.is-featured { order: -1; }
    .footer-container { flex-direction: column; }
    .footer-brand { max-width: none; }
    .footer-columns { gap: 32px; }
    .cta-container { flex-direction: column; align-items: flex-start; text-align: left; }
  }

.page-header-dark {
  background: var(--teal-900);
  padding: 64px 32px;
}
.page-header-dark-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.page-header-dark h1 {
  font-size: 32px;
  font-weight: 600;
  color: var(--teal-50);
  margin: 0 0 10px;
}
.page-header-dark p {
  font-size: 15px;
  color: var(--teal-100);
  margin: 0;
  max-width: 480px;
}
.page-header-badge {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-header-badge i { font-size: 28px; color: var(--teal-200); }

.page-header-minimal {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 48px 32px 32px;
}
.page-header-minimal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.page-header-minimal .breadcrumb {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-600);
  margin: 0 0 12px;
}
.page-header-minimal h1 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.page-header-minimal p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}
.page-header-minimal .updated-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--page-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
}

.page-header-icon {
  background: var(--teal-50);
  padding: 56px 32px 44px;
  text-align: center;
}
.page-header-icon .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.page-header-icon .icon-circle i { font-size: 24px; color: var(--teal-600); }
.page-header-icon h1 {
  font-size: 30px;
  font-weight: 600;
  color: var(--teal-900);
  margin: 0 0 8px;
}
.page-header-icon p {
  font-size: 14px;
  color: var(--teal-800);
  margin: 0;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}
.legal-updated {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 8px;
}
.legal-note {
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 0 0 36px;
  line-height: 1.6;
}
.legal-content h2 {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 36px 0 12px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 14px;
}
.legal-content ul {
  margin: 0 0 14px;
  padding-left: 20px;
}
.legal-content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-content strong { color: var(--text-primary); }
.legal-content a { color: var(--teal-600); text-decoration: underline; }

