@charset "utf-8";
@import url(../font/font.css);

/* CSS Document */

  <style>
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --red:      #d0021b;
      --red-dark: #a80016;
      --navy:     #1a1f2e;
      --grey-bg:  #f4f5f7;
      --grey-mid: #e8e9ec;
      --text:     #1a1f2e;
      --text-mid: #4a5568;
      --white:    #ffffff;
      --radius:   8px;
      --shadow:   0 2px 12px rgba(0,0,0,0.10);
      --shadow-lg:0 8px 32px rgba(0,0,0,0.14);
    }
    body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; background: #eef0f3; }
    a { color: inherit; text-decoration: none; }

    .dev-note {
      background: #1a1f2e; color: #fff; text-align: center;
      padding: 14px 24px; font-size: 0.88rem;
    }
    .dev-note strong { color: #f6c90e; }

    .page-divider {
      background: var(--red); color: #fff; padding: 16px 40px;
      font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.12em; margin-top: 48px;
    }

    .page { background: var(--white); max-width: 1140px; margin: 0 auto; }

    /* Hero */
    .page-hero {
      background: var(--navy); padding: 64px 48px;
      position: relative; overflow: hidden;
    }
    .page-hero::after {
      content: ''; position: absolute; right: -40px; top: -40px;
      width: 320px; height: 320px; background: var(--red);
      opacity: 0.08; border-radius: 50%;
    }
    .breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
    .breadcrumb a { color: rgba(255,255,255,0.5); }
    .breadcrumb a:hover { color: #fff; }
    .breadcrumb span { color: rgba(255,255,255,0.3); margin: 0 6px; }
    .page-hero-label {
      font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--red); margin-bottom: 10px; display: block;
    }
    .page-hero h1 {
      font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff;
      line-height: 1.15; max-width: 640px; margin-bottom: 16px;
    }
    .page-hero p {
      color: rgba(255,255,255,0.78); font-size: 1.05rem;
      max-width: 560px; line-height: 1.7; margin-bottom: 28px;
    }
    .hero-trust-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
    .trust-chip {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
      border-radius: 20px; padding: 6px 14px; font-size: 0.82rem;
      color: rgba(255,255,255,0.85); font-weight: 600;
    }
    .trust-chip .dot { width: 7px; height: 7px; background: #4caf50; border-radius: 50%; flex-shrink: 0; }

    /* Body */
    .page-body { padding: 56px 48px; }
    .intro-grid {
      display: grid; grid-template-columns: 1fr 300px;
      gap: 48px; margin-bottom: 56px; align-items: start;
    }
    .intro-text h2 { font-size: 1.45rem; font-weight: 800; margin-bottom: 14px; line-height: 1.25; }
    .intro-text h2.sub { font-size: 1.15rem; margin-top: 32px; margin-bottom: 12px; }
    .intro-text p { color: var(--text-mid); line-height: 1.75; margin-bottom: 14px; }

    /* Sidebar */
    .sidebar-card {
      background: var(--grey-bg); border-radius: 12px; padding: 28px 24px;
      border: 1.5px solid var(--grey-mid); position: sticky; top: 20px;
    }
    .sidebar-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
    .sidebar-card p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 18px; line-height: 1.55; }
    .sidebar-card .cta-btn {
      display: block; background: var(--red); color: #fff; text-align: center;
      padding: 13px 20px; border-radius: var(--radius); font-weight: 700;
      font-size: 0.95rem; margin-bottom: 10px;
    }
    .sidebar-card .cta-btn:hover { background: var(--red-dark); }
    .sidebar-card .phone-link {
      display: block; text-align: center; font-size: 1.1rem; font-weight: 700;
      color: var(--red); margin-bottom: 20px;
    }
    .sidebar-divider { border: none; border-top: 1px solid var(--grey-mid); margin: 16px 0; }
    .sidebar-detail { font-size: 0.82rem; color: var(--text-mid); line-height: 1.55; margin-bottom: 6px; }
    .sidebar-detail strong { color: var(--text); }

    /* Feature list */
    .features-list { list-style: none; margin: 16px 0 24px; display: flex; flex-direction: column; gap: 10px; }
    .features-list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.95rem; color: var(--text-mid); line-height: 1.55;
    }
    .features-list li::before {
      content: ''; width: 8px; height: 8px; background: var(--red);
      border-radius: 50%; flex-shrink: 0; margin-top: 7px;
    }

    /* Trust pillars */
    .trust-section { background: var(--grey-bg); border-radius: 14px; padding: 40px; margin: 36px 0; }
    .trust-section-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 24px; color: var(--navy); }
    .trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .trust-card {
      background: var(--white); border-radius: 10px; padding: 24px 20px;
      border-left: 4px solid var(--red); box-shadow: var(--shadow);
    }
    .trust-card-icon { font-size: 1.5rem; margin-bottom: 10px; }
    .trust-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
    .trust-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.6; }

    /* Areas */
    .areas-section { margin: 36px 0; }
    .areas-section h2 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
    .areas-section p { color: var(--text-mid); font-size: 0.93rem; line-height: 1.7; margin-bottom: 12px; }
    .areas-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
    .area-tag {
      background: var(--grey-bg); border: 1.5px solid var(--grey-mid);
      border-radius: 20px; padding: 5px 14px; font-size: 0.82rem; font-weight: 600; color: var(--text-mid);
    }

    /* Bottom CTA */
    .page-cta {
      background: var(--navy); border-radius: 14px; padding: 36px 40px;
      display: flex; justify-content: space-between; align-items: center;
      gap: 24px; flex-wrap: wrap; margin-top: 40px;
    }
    .page-cta h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 5px; }
    .page-cta p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
    .page-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
    .btn-red {
      background: var(--red); color: #fff; padding: 13px 24px;
      border-radius: var(--radius); font-weight: 700; font-size: 0.92rem; display: inline-block;
    }
    .btn-red:hover { background: var(--red-dark); }
    .btn-outline {
      background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4);
      padding: 11px 24px; border-radius: var(--radius); font-weight: 700; font-size: 0.92rem; display: inline-block;
    }
    .btn-outline:hover { border-color: #fff; }

    .highlight-link { color: var(--red); font-weight: 700; }

    @media (max-width: 900px) {
      .intro-grid { grid-template-columns: 1fr; }
      .trust-grid { grid-template-columns: 1fr; }
      .page-hero, .page-body { padding: 40px 24px; }
    }
  </style>