  :root {
    --red: #c92127;
    --red-dark: #a01419;
    --red-light: #ee2737;
    --navy: #0f2c4a;
    --navy-dark: #0a1f37;
    --navy-light: #1a3d62;
    --orange: #ff6b1a;
    --yellow: #ffc629;
    --bg: #ffffff;
    --bg-alt: #f5f7fa;
    --bg-section: #f0f4f8;
    --border: #e1e7ef;
    --text: #1a2332;
    --text-soft: #4a5568;
    --text-mute: #718096;
    --green: #16a34a;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }
  ::selection { background: var(--red); color: var(--bg); }
  a, button { cursor: pointer; }
  img { max-width: 100%; display: block; }

  /* ============ TOP BAR ============ */
  .topbar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .topbar-inner {
    max-width: 1320px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
    flex-wrap: wrap;
  }
  .topbar-left { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
  .topbar-item { display: flex; align-items: center; gap: 6px; }
  .topbar-item svg { width: 14px; height: 14px; stroke: var(--yellow); fill: none; stroke-width: 2; }
  .topbar-right { display: flex; gap: 16px; align-items: center; }
  .topbar-right a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
  }
  .topbar-right a:hover { color: var(--yellow); }
  .topbar-social { display: flex; gap: 8px; }
  .topbar-social a {
    width: 24px; height: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
  }
  .topbar-social a:hover { background: var(--red); }
  .topbar-social svg { width: 11px; height: 11px; fill: white; }

  /* ============ HEADER ============ */
  header {
    position: sticky; top: 0; z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
  }
  header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  .nav-inner {
    max-width: 1320px; margin: 0 auto;
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
  }
  .logo {
    text-decoration: none;
    display: flex; align-items: center; gap: 12px;
  }
  .logo-mark {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 18px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(201, 33, 39, 0.3);
    position: relative;
    transition: transform 0.3s;
  }
  .logo:hover .logo-mark { transform: rotate(-5deg); }
  .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
  .logo-text strong {
    font-size: 20px; font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
  }
  .logo-text strong em {
    font-style: normal;
    color: var(--red);
  }
  .logo-text small {
    font-size: 11px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
  }

  nav ul { display: flex; list-style: none; gap: 4px; align-items: center; }
  nav .nav-link {
    color: var(--text); text-decoration: none;
    font-size: 14px; font-weight: 600;
    padding: 10px 14px;
    transition: all 0.2s;
    display: flex; align-items: center; gap: 6px;
    border-radius: 6px;
    position: relative;
  }
  nav .nav-link:hover { color: var(--red); background: rgba(201, 33, 39, 0.05); }
  nav .nav-link .chevron {
    width: 10px; height: 10px;
    transition: transform 0.3s;
    stroke: currentColor; fill: none; stroke-width: 2.5;
  }
  .dropdown { position: relative; }
  .dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--bg);
    border: 1px solid var(--border);
    min-width: 380px; padding: 8px;
    border-radius: 10px;
    opacity: 0; visibility: hidden;
    transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    pointer-events: none;
  }
  .dropdown-menu::before {
    content: '';
    position: absolute; top: -6px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px; height: 12px;
    background: var(--bg);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
  }
  .dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
  .dropdown:hover .nav-link .chevron { transform: rotate(180deg); }
  .dropdown-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px;
    text-decoration: none; color: var(--text);
    transition: all 0.2s;
    border-radius: 8px;
  }
  .dropdown-item:hover {
    background: var(--bg-alt);
  }
  .dropdown-item:hover .dropdown-icon {
    background: var(--red); color: white;
    transform: scale(1.05);
  }
  .dropdown-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: rgba(201, 33, 39, 0.1);
    color: var(--red);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
  }
  .dropdown-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
  .dropdown-item-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; color: var(--navy); }
  .dropdown-item-text small { display: block; font-size: 12px; color: var(--text-mute); line-height: 1.4; }

  .nav-actions { display: flex; align-items: center; gap: 10px; }
  .nav-icon-btn {
    width: 40px; height: 40px;
    background: var(--bg-alt);
    color: var(--text);
    border: none;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
  }
  .nav-icon-btn:hover { background: var(--red); color: white; }
  .nav-icon-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

  .header-hotline {
    display: flex; align-items: center; gap: 12px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(201, 33, 39, 0.25);
  }
  .header-hotline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 33, 39, 0.4);
  }
  .header-hotline-icon {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    animation: ringPhone 2s infinite;
  }
  @keyframes ringPhone {
    0%, 50%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
  }
  .header-hotline-icon svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2.5; }
  .header-hotline-text { display: flex; flex-direction: column; line-height: 1.1; }
  .header-hotline-text small { font-size: 10px; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.05em; }
  .header-hotline-text strong { font-size: 16px; font-weight: 800; }

  .hamburger {
    display: none; width: 40px; height: 40px;
    background: var(--red);
    border: none;
    border-radius: 8px;
    flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  }
  .hamburger span {
    display: block; width: 18px; height: 2px;
    background: white; transition: all 0.3s;
  }
  .hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    min-height: 640px;
    display: flex; align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--red-dark) 100%);
    color: white;
    padding: 80px 24px;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 20% 50%, rgba(201, 33, 39, 0.4), transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(255, 107, 26, 0.3), transparent 50%);
  }
  .hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  }
  .hero-grid {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    position: relative; z-index: 2;
    width: 100%;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px; font-weight: 600;
    margin-bottom: 24px;
    opacity: 0;
    animation: slideInLeft 0.7s ease forwards 0.1s;
  }
  .hero-badge .dot {
    width: 8px; height: 8px;
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--yellow);
    animation: pulseDot 1.5s infinite;
  }
  @keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .hero h1 {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    opacity: 0;
    animation: slideInLeft 0.7s ease forwards 0.2s;
  }
  .hero h1 span {
    color: var(--yellow);
    position: relative;
    display: inline-block;
  }
  .hero h1 span::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 100%; height: 4px;
    background: var(--yellow);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: scaleX 0.8s ease forwards 1s;
  }
  @keyframes scaleX {
    to { transform: scaleX(1); }
  }
  @keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 540px;
    opacity: 0;
    animation: slideInLeft 0.7s ease forwards 0.4s;
  }
  .hero-actions {
    display: flex; gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    opacity: 0;
    animation: slideInLeft 0.7s ease forwards 0.6s;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    font-family: 'Be Vietnam Pro';
    font-weight: 700; font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 24px rgba(201, 33, 39, 0.4);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201, 33, 39, 0.55);
  }
  .btn-primary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform 0.3s; }
  .btn-primary:hover svg { transform: translateX(4px); }

  .btn-outline {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 32px;
    border: 2px solid rgba(255,255,255,0.3);
    font-family: 'Be Vietnam Pro';
    font-weight: 700; font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .btn-outline:hover {
    background: white;
    color: var(--red);
    transform: translateY(-3px);
  }
  .btn-outline svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; }

  .hero-trust {
    display: flex; gap: 32px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    opacity: 0;
    animation: slideInLeft 0.7s ease forwards 0.8s;
  }
  .hero-trust-item {
    display: flex; align-items: center; gap: 12px;
  }
  .hero-trust-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--yellow);
  }
  .hero-trust-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
  .hero-trust-text strong { display: block; font-size: 17px; font-weight: 800; }
  .hero-trust-text small { font-size: 12px; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.05em; }

  /* HERO RIGHT VISUAL */
  .hero-visual {
    position: relative;
    aspect-ratio: 1.1;
    opacity: 0;
    animation: slideInRight 0.8s ease forwards 0.4s;
  }
  .hero-visual-main {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    padding: 24px;
  }
  .hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 20px;
    transition: all 0.4s;
    cursor: pointer;
    display: flex; flex-direction: column;
    justify-content: space-between;
  }
  .hero-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
    border-color: var(--yellow);
  }
  .hero-card .icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(201, 33, 39, 0.4);
  }
  .hero-card:nth-child(2) .icon { background: linear-gradient(135deg, var(--green) 0%, #14843d 100%); box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4); }
  .hero-card:nth-child(3) .icon { background: linear-gradient(135deg, var(--orange) 0%, #e85a0a 100%); box-shadow: 0 4px 12px rgba(255, 107, 26, 0.4); }
  .hero-card:nth-child(4) .icon { background: linear-gradient(135deg, var(--yellow) 0%, #e6b424 100%); box-shadow: 0 4px 12px rgba(255, 198, 41, 0.4); }
  .hero-card .icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; }
  .hero-card .num { font-size: 11px; font-weight: 700; opacity: 0.7; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
  .hero-card h4 { font-size: 16px; font-weight: 700; line-height: 1.2; }

  .hero-floating {
    position: absolute;
    bottom: -30px; left: -30px;
    background: var(--bg);
    color: var(--navy);
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    display: flex; align-items: center; gap: 14px;
    animation: floatCard 3s ease-in-out infinite;
  }
  @keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .hero-floating-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--green) 0%, #14843d 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-floating-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 3; }
  .hero-floating-text strong { display: block; font-size: 15px; font-weight: 800; }
  .hero-floating-text small { display: block; font-size: 12px; color: var(--text-mute); }

  /* ============ MARQUEE ============ */
  .marquee {
    background: var(--red);
    color: white;
    padding: 16px 0;
    overflow: hidden; white-space: nowrap;
    border-bottom: 4px solid var(--red-dark);
    position: relative;
  }
  .marquee::before, .marquee::after {
    content: '';
    position: absolute; top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
  }
  .marquee::before { left: 0; background: linear-gradient(to right, var(--red), transparent); }
  .marquee::after { right: 0; background: linear-gradient(to left, var(--red), transparent); }
  .marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-size: 16px; font-weight: 700;
  }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  .marquee-track span { margin: 0 24px; display: inline-flex; align-items: center; gap: 16px; }
  .marquee-track svg { width: 16px; height: 16px; stroke: var(--yellow); fill: none; stroke-width: 2.5; }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ============ COMMON SECTIONS ============ */
  .container { max-width: 1320px; margin: 0 auto; }
  .section { padding: 80px 24px; }
  .section-tag-row {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px;
    justify-content: center;
  }
  .section-tag-line {
    width: 50px; height: 3px;
    background: var(--red);
    border-radius: 2px;
  }
  .section-tag {
    font-size: 13px;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
  }
  .section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy);
    text-align: center;
    margin-bottom: 16px;
  }
  .section-title span { color: var(--red); }
  .section-desc {
    font-size: 16px;
    color: var(--text-soft);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
    line-height: 1.7;
  }

  /* ============ ABOUT/INTRO ============ */
  .about {
    background: var(--bg);
    position: relative;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-visual-main {
    aspect-ratio: 1.1;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 44, 74, 0.2);
  }
  .about-visual-main::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 30% 30%, rgba(201, 33, 39, 0.4), transparent 50%),
      radial-gradient(circle at 70% 70%, rgba(255, 198, 41, 0.2), transparent 50%);
  }
  .about-visual-main svg.bg-icon {
    position: absolute; bottom: -40px; right: -40px;
    width: 60%; height: 60%;
    color: rgba(255,255,255,0.05);
    fill: none; stroke: currentColor; stroke-width: 1;
  }
  .about-visual-content {
    position: absolute; inset: 0;
    padding: 40px;
    display: flex; flex-direction: column; justify-content: space-between;
    color: white;
  }
  .about-visual-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
    backdrop-filter: blur(10px);
  }
  .about-visual-tag .dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; }
  .about-visual-content h3 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .about-visual-content h3 span { color: var(--yellow); }
  .about-visual-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .about-visual-stat {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 16px;
    border-radius: 12px;
  }
  .about-visual-stat .num { font-size: 28px; font-weight: 900; color: var(--yellow); line-height: 1; }
  .about-visual-stat .lbl { font-size: 12px; opacity: 0.9; margin-top: 4px; }

  .about-experience-badge {
    position: absolute; bottom: -24px; right: -24px;
    background: var(--red);
    color: white;
    width: 140px; height: 140px;
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 12px 30px rgba(201, 33, 39, 0.4);
    border: 4px solid white;
    animation: pulseBadge 2.5s infinite;
  }
  @keyframes pulseBadge {
    0%, 100% { box-shadow: 0 12px 30px rgba(201, 33, 39, 0.4); }
    50% { box-shadow: 0 12px 40px rgba(201, 33, 39, 0.7); }
  }
  .about-experience-badge .num { font-size: 48px; font-weight: 900; line-height: 1; }
  .about-experience-badge .lbl { font-size: 11px; text-transform: uppercase; font-weight: 700; margin-top: 2px; }

  .about-content .section-tag-row { justify-content: flex-start; margin-bottom: 14px; }
  .about-content .section-title { text-align: left; font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 20px; }
  .about-content > p {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .about-checkpoints {
    display: grid; gap: 14px;
    margin-bottom: 32px;
  }
  .about-checkpoint {
    display: flex; align-items: flex-start; gap: 12px;
  }
  .about-checkpoint-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .about-checkpoint-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 3; }
  .about-checkpoint p {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    padding-top: 4px;
  }
  .about-content .btn-primary { display: inline-flex; }

  /* ============ PROBLEM SECTION ============ */
  .problem {
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
  }
  .problem::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--red));
  }
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 16px;
  }
  .problem-card {
    background: white;
    padding: 32px 24px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    position: relative;
    overflow: hidden;
  }
  .problem-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
  }
  .problem-card:hover::before { transform: scaleX(1); }
  .problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--red);
  }
  .problem-card:hover .problem-icon { transform: rotate(-10deg) scale(1.1); }
  .problem-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, rgba(201,33,39,0.1) 0%, rgba(255,107,26,0.1) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: var(--red);
    transition: all 0.4s;
    border: 2px dashed rgba(201,33,39,0.3);
  }
  .problem-icon svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 2; }
  .problem-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .problem-card p {
    font-size: 13px;
    color: var(--text-mute);
    line-height: 1.5;
  }

  /* ============ SERVICES (GIẢI PHÁP) ============ */
  .services {
    background: var(--bg);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    position: relative;
    overflow: hidden;
    display: flex; gap: 24px;
    align-items: flex-start;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 6px; height: 100%;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 44, 74, 0.12);
    border-color: var(--red);
  }
  .service-card:hover::before { transform: scaleY(1); }
  .service-card:hover .service-icon-box {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: white;
    transform: rotate(-5deg);
  }
  .service-card:hover .service-cta { gap: 12px; color: var(--red); }
  .service-icon-box {
    flex-shrink: 0;
    width: 80px; height: 80px;
    background: var(--bg-section);
    color: var(--red);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  .service-icon-box svg { width: 36px; height: 36px; stroke: currentColor; fill: none; stroke-width: 2; }
  .service-content { flex: 1; }
  .service-tag {
    display: inline-block;
    background: rgba(201,33,39,0.1);
    color: var(--red);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
  }
  .service-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .service-content > p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .service-features {
    list-style: none;
    margin-bottom: 20px;
  }
  .service-features li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 6px;
    font-weight: 500;
  }
  .service-features li::before {
    content: '✓';
    width: 18px; height: 18px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    font-weight: 900;
    flex-shrink: 0;
  }
  .service-cta {
    color: var(--navy);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .service-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

  /* ============ STATS BANNER ============ */
  .stats-banner {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--red-dark) 100%);
    color: white;
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
  }
  .stats-banner::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 30px 30px;
  }
  .stats-grid {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative; z-index: 1;
  }
  .stat-card {
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .stat-card:last-child { border-right: none; }
  .stat-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: var(--yellow);
  }
  .stat-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; }
  .stat-num {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--yellow);
    letter-spacing: -0.02em;
  }
  .stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    opacity: 0.9;
  }

  /* ============ COMMITMENT ============ */
  .commitment {
    background: var(--bg-section);
  }
  .commitment-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
  }
  .commitment-content .section-tag-row { justify-content: flex-start; margin-bottom: 14px; }
  .commitment-content .section-title { text-align: left; font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 20px; }
  .commitment-content > p {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 32px;
  }
  .commitment-list { list-style: none; }
  .commitment-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s;
  }
  .commitment-item:hover {
    transform: translateX(6px);
    border-color: var(--red);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  }
  .commitment-item:hover .commitment-icon { background: var(--red); color: white; }
  .commitment-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: rgba(201,33,39,0.1);
    color: var(--red);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
  }
  .commitment-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.2; }
  .commitment-text {
    flex: 1;
  }
  .commitment-text strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .commitment-text p {
    font-size: 13px;
    color: var(--text-mute);
    line-height: 1.5;
  }

  .commitment-visual {
    position: relative;
  }
  .commitment-visual-main {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(201, 33, 39, 0.3);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .commitment-visual-main::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 70% 30%, rgba(255,198,41,0.3), transparent 50%);
  }
  .commitment-visual-main svg {
    width: 50%; height: 50%;
    color: rgba(255,255,255,0.15);
    fill: none; stroke: currentColor; stroke-width: 1.5;
  }
  .commitment-floating {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    display: flex; align-items: center; gap: 12px;
  }
  .commitment-floating.tl { top: 20px; left: -20px; animation: floatCard 3s ease-in-out infinite; }
  .commitment-floating.br { bottom: 20px; right: -20px; animation: floatCard 3s ease-in-out infinite reverse; }
  .commitment-floating-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--green) 0%, #14843d 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .commitment-floating.br .commitment-floating-icon { background: linear-gradient(135deg, var(--orange) 0%, #e85a0a 100%); }
  .commitment-floating-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2.5; }
  .commitment-floating-text strong { display: block; font-size: 14px; font-weight: 800; color: var(--navy); }
  .commitment-floating-text small { font-size: 11px; color: var(--text-mute); }

  /* ============ PROCESS ============ */
  .process {
    background: var(--bg);
  }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 16px;
  }
  .process-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.4s;
  }
  .process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--red);
  }
  .process-card:hover .process-num { background: var(--red); transform: scale(1.05); }
  .process-num {
    width: 56px; height: 56px;
    background: var(--navy);
    color: white;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 900;
    margin-bottom: 20px;
    transition: all 0.3s;
    position: relative;
  }
  .process-num::after {
    content: '';
    position: absolute; right: -32px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 2px;
    border-top: 2px dashed var(--border);
  }
  .process-card:nth-child(3n) .process-num::after,
  .process-card:last-child .process-num::after { display: none; }
  .process-icon {
    width: 48px; height: 48px;
    background: rgba(201,33,39,0.08);
    color: var(--red);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
  }
  .process-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
  .process-card h4 {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .process-card p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
  }

  /* ============ FORM SECTION ============ */
  .form-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .form-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 10% 50%, rgba(201, 33, 39, 0.3), transparent 50%),
      radial-gradient(circle at 90% 30%, rgba(255, 107, 26, 0.2), transparent 50%);
  }
  .form-section .container {
    position: relative; z-index: 1;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
  }
  .form-info .section-tag { color: var(--yellow); }
  .form-info .section-tag-line { background: var(--yellow); }
  .form-info .section-tag-row { justify-content: flex-start; }
  .form-info h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .form-info h2 span { color: var(--yellow); }
  .form-info > p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .form-benefits {
    list-style: none;
    margin-bottom: 32px;
  }
  .form-benefits li {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.95);
  }
  .form-benefits li svg {
    width: 20px; height: 20px;
    background: var(--green);
    border-radius: 50%;
    padding: 4px;
    stroke: white;
    fill: none;
    stroke-width: 3;
    flex-shrink: 0;
  }
  .form-hotline {
    display: inline-flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
  }
  .form-hotline:hover {
    background: var(--yellow);
    color: var(--navy);
    transform: translateY(-3px);
  }
  .form-hotline-icon {
    width: 44px; height: 44px;
    background: var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    animation: ringPhone 2s infinite;
  }
  .form-hotline:hover .form-hotline-icon { background: var(--navy); }
  .form-hotline-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2.5; }
  .form-hotline-text small { display: block; font-size: 11px; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.05em; }
  .form-hotline-text strong { font-size: 22px; font-weight: 900; line-height: 1; }

  .form-card {
    background: white;
    color: var(--text);
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
  }
  .form-card::before {
    content: '★ MIỄN PHÍ';
    position: absolute; top: -12px; right: 24px;
    background: var(--yellow);
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(255,198,41,0.4);
  }
  .form-card h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .form-card > p {
    font-size: 14px;
    color: var(--text-mute);
    margin-bottom: 24px;
  }
  .form-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; margin-bottom: 14px;
  }
  .form-group { margin-bottom: 14px; }
  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .form-group label span { color: var(--red); }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    padding: 12px 14px;
    color: var(--text);
    font-family: 'Be Vietnam Pro';
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    background: white;
    box-shadow: 0 0 0 3px rgba(201,33,39,0.1);
  }
  .form-group textarea { min-height: 100px; resize: vertical; }
  .form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    color: white;
    padding: 16px;
    border: none;
    font-family: 'Be Vietnam Pro';
    font-weight: 800; font-size: 15px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 24px rgba(201,33,39,0.35);
    transition: all 0.3s;
    margin-top: 8px;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  }
  .form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201,33,39,0.5);
  }
  .form-submit svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; }

  /* ============ PROJECTS / NEWS ============ */
  .projects {
    background: var(--bg);
  }
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .project-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
  }
  .project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  .project-card:hover .project-img-bg { transform: scale(1.05); }
  .project-card:hover .project-content h4 { color: var(--red); }
  .project-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
  }
  .project-img-bg {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--red-dark) 100%);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.5s;
    position: relative;
  }
  .project-img-bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 50%);
  }
  .project-img-bg svg {
    width: 80px; height: 80px;
    color: rgba(255,255,255,0.3);
    fill: none; stroke: currentColor; stroke-width: 1.5;
  }
  .project-tag {
    position: absolute; top: 16px; left: 16px;
    background: var(--red);
    color: white;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
  }
  .project-content {
    padding: 24px;
  }
  .project-meta {
    display: flex; align-items: center; gap: 8px;
    color: var(--text-mute);
    font-size: 12px;
    margin-bottom: 10px;
  }
  .project-meta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
  .project-content h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 12px;
    transition: color 0.3s;
  }
  .project-content p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .project-cta {
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .project-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }
  .projects-more {
    text-align: center;
    margin-top: 40px;
  }

  /* ============ PARTNERS ============ */
  .partners {
    background: var(--bg-section);
    padding: 60px 24px;
  }
  .partners-title {
    text-align: center;
    font-size: 14px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 32px;
  }
  .partners-grid {
    max-width: 1320px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
  .partner-logo {
    aspect-ratio: 2;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    color: var(--text-mute);
    font-size: 14px;
    transition: all 0.3s;
    text-align: center;
    padding: 8px;
  }
  .partner-logo:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }

  /* ============ TESTIMONIALS ============ */
  .testimonials {
    background: var(--bg);
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .testimonial-card {
    background: var(--bg-section);
    padding: 36px;
    border-radius: 16px;
    position: relative;
    border: 1px solid var(--border);
    transition: all 0.3s;
  }
  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    background: white;
    border-color: var(--red);
  }
  .testimonial-card::before {
    content: '"';
    position: absolute; top: 16px; right: 28px;
    font-size: 100px;
    line-height: 1;
    font-weight: 900;
    color: var(--red);
    opacity: 0.15;
    font-family: Georgia, serif;
  }
  .testimonial-stars {
    display: flex; gap: 4px;
    color: var(--yellow);
    font-size: 18px;
    margin-bottom: 16px;
  }
  .testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }
  .testimonial-author {
    display: flex; align-items: center; gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .testimonial-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800;
    box-shadow: 0 4px 12px rgba(201,33,39,0.25);
  }
  .testimonial-info strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 2px;
  }
  .testimonial-info small {
    font-size: 13px;
    color: var(--text-mute);
  }

  /* ============ CTA BANNER ============ */
  .cta-banner {
    padding: 0 24px;
  }
  .cta-banner-inner {
    max-width: 1320px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
    color: white;
    border-radius: 20px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(201,33,39,0.3);
  }
  .cta-banner-inner::before {
    content: '';
    position: absolute; right: -100px; top: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,198,41,0.3), transparent 70%);
    border-radius: 50%;
  }
  .cta-banner-inner::after {
    content: '';
    position: absolute; right: 40px; bottom: -80px;
    width: 200px; height: 200px;
    border: 30px solid rgba(255,255,255,0.1);
    border-radius: 50%;
  }
  .cta-banner-content {
    position: relative; z-index: 1;
  }
  .cta-banner-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
  }
  .cta-banner-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .cta-banner-content p {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.6;
  }
  .cta-banner-actions {
    display: flex; flex-direction: column; gap: 12px;
    position: relative; z-index: 1;
  }
  .cta-banner-btn {
    background: white;
    color: var(--red);
    padding: 18px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    transition: all 0.3s;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  }
  .cta-banner-btn:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .cta-banner-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; }
  .cta-banner-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
  }
  .cta-banner-btn.secondary:hover {
    background: var(--yellow);
    color: var(--navy);
    border-color: var(--yellow);
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.85);
    padding: 80px 24px 0;
  }
  .footer-grid {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand .logo { margin-bottom: 20px; }
  .footer-brand .logo-text strong { color: white; }
  .footer-brand > p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; opacity: 0.8; }
  .footer-contacts {
    display: grid; gap: 14px;
    margin-bottom: 24px;
  }
  .footer-contact {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 13px;
    line-height: 1.5;
  }
  .footer-contact-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--yellow);
  }
  .footer-contact-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
  .footer-contact strong { display: block; color: white; font-weight: 700; margin-bottom: 2px; }
  .footer-social { display: flex; gap: 10px; }
  .footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    transition: all 0.3s;
  }
  .footer-social a:hover { background: var(--red); transform: translateY(-3px); }
  .footer-social svg { width: 14px; height: 14px; fill: currentColor; }

  .footer-col h5 {
    font-size: 14px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .footer-col h5::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 36px; height: 3px;
    background: var(--red);
    border-radius: 2px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .footer-col a::before {
    content: '›';
    color: var(--red);
    font-weight: 700;
    transition: transform 0.2s;
  }
  .footer-col a:hover { color: var(--yellow); }
  .footer-col a:hover::before { transform: translateX(3px); }

  .footer-newsletter p {
    font-size: 13px;
    margin-bottom: 14px;
    opacity: 0.8;
  }
  .footer-newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    overflow: hidden;
  }
  .footer-newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 14px;
    color: white;
    font-family: 'Be Vietnam Pro';
    font-size: 13px;
  }
  .footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
  .footer-newsletter-form input:focus { outline: none; }
  .footer-newsletter-form button {
    background: var(--red);
    color: white;
    border: none;
    padding: 0 16px;
    font-family: 'Be Vietnam Pro';
    font-weight: 700;
    font-size: 13px;
    transition: background 0.2s;
  }
  .footer-newsletter-form button:hover { background: var(--red-dark); }

  .footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 0;
    display: flex; justify-content: space-between; flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
  }
  .footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-bottom-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-bottom-links a:hover { color: var(--yellow); }

  /* ============ FAB ============ */
  .fab-container {
    position: fixed; bottom: 24px; right: 24px;
    z-index: 90;
    display: flex; flex-direction: column; gap: 12px;
  }
  .fab {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: all 0.3s;
    position: relative;
    border: none;
  }
  .fab:hover { transform: scale(1.1); }
  .fab.phone {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  }
  .fab.phone::before {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%; border: 3px solid var(--red);
    animation: ping 1.5s infinite;
  }
  @keyframes ping {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
  }
  .fab.zalo { background: linear-gradient(135deg, #0068ff 0%, #0050c8 100%); }
  .fab.messenger { background: linear-gradient(135deg, #00b2ff 0%, #006aff 100%); }
  .fab svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
  .fab.zalo span { font-weight: 800; font-size: 14px; }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed; top: 0; right: -100%;
    width: 90%; max-width: 380px; height: 100vh;
    background: white;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    padding: 24px;
    transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 99;
    overflow-y: auto;
  }
  .mobile-menu.active { right: 0; }
  .mobile-menu-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 24px; padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu ul { list-style: none; }
  .mobile-menu li { border-bottom: 1px solid var(--border); }
  .mobile-menu a {
    display: block; padding: 16px 0;
    color: var(--text); text-decoration: none;
    font-size: 16px; font-weight: 600;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--red); }
  .mobile-menu-cta {
    margin-top: 24px;
  }
  .mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden;
    transition: all 0.3s;
    z-index: 98;
  }
  .mobile-overlay.active { opacity: 1; visibility: visible; }

  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    .hero-grid, .about-grid, .commitment-grid, .form-grid {
      grid-template-columns: 1fr; gap: 40px;
    }
    .hero-floating { left: 50%; transform: translateX(-50%); bottom: -50px; }
    .commitment-floating.tl { left: 0; }
    .commitment-floating.br { right: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .partners-grid { grid-template-columns: repeat(4, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .stat-card { border-right: none; }
    .process-grid, .projects-grid, .testimonials-grid, .services-grid {
      grid-template-columns: 1fr 1fr;
    }
    .problem-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 760px) {
    nav, .nav-actions .nav-icon-btn, .nav-actions .header-hotline { display: none; }
    .hamburger { display: flex; }
    .topbar-right { display: none; }
    .hero-visual-main { padding: 16px; gap: 12px; }
    .hero-card { padding: 14px; }
    .hero-card .icon { width: 36px; height: 36px; margin-bottom: 8px; }
    .hero-card h4 { font-size: 13px; }
    .services-grid, .process-grid, .projects-grid, .testimonials-grid,
    .problem-grid, .form-row, .cta-banner-inner, .footer-grid {
      grid-template-columns: 1fr !important;
    }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .service-card { flex-direction: column; padding: 28px; gap: 16px; }
    .form-card, .cta-banner-inner { padding: 32px 24px; }
    .process-num::after { display: none; }
    .about-experience-badge { width: 100px; height: 100px; right: 0; }
    .about-experience-badge .num { font-size: 32px; }
    .section { padding: 60px 24px; }
  }
