:root {
      /* Clean light theme colors */
      --primary-dark: #172554;
      --primary-blue: #1e40af;
      --bg-light: #f0f9ff;
      --bg-white: #ffffff;
      --text-main: #374151;
      --text-muted: #6b7280;
      --border-color: #e5e7eb;
      --accent-orange: #d97706;
      --radius-md: 8px;
      --max-width: 1120px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background-color: var(--bg-white);
      color: var(--text-main);
      font-size: 16px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; transition: 0.2s; }
    ul { padding-left: 20px; margin: 0; }
    h1, h2, h3, h4 { color: var(--primary-dark); margin-top: 0; line-height: 1.4; }
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    h3 { font-size: 20px; }
    p { margin-bottom: 16px; font-size: 16px; line-height: 1.8; }

    /* Accessibility - Skip Link */
    .skip-link {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    .skip-link:focus {
      position: fixed;
      left: 16px;
      top: 12px;
      padding: 8px 16px;
      background: #fbbf24;
      color: #1f2937;
      z-index: 1000;
      border-radius: 6px;
      font-weight: 600;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    /* Header */
    .top-bar {
      background: var(--bg-light);
      padding: 8px 0;
      font-size: 13px;
      border-bottom: 1px solid var(--border-color);
    }

    header {
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      z-index: 100;
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }

    .flex-between { display: flex; justify-content: space-between; align-items: center; }
    .flex-gap { display: flex; gap: 15px; align-items: center; flex-wrap: wrap; }

    .nav-container { padding: 20px 0; }

    .logo {
      font-size: 22px;
      font-weight: 800;
      color: var(--primary-dark);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .logo span {
      background: var(--primary-blue);
      color: white;
      padding: 2px 8px;
      border-radius: 4px;
    }

    .nav-links {
      display: flex;
      gap: 24px;
      font-weight: 500;
      font-size: 18px;
    }

    .nav-links a:hover { color: var(--primary-blue); }

    /* Dropdown Menu */
    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-toggle {
      cursor: pointer;
    }

    .nav-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      min-width: 280px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      border-radius: 8px;
      padding: 12px 0;
      margin-top: 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.2s ease;
      z-index: 1000;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-dropdown-menu a {
      display: block;
      padding: 10px 20px;
      color: var(--text-main);
      font-size: 14px;
      transition: background 0.2s, color 0.2s;
    }

    .nav-dropdown-menu a:hover {
      background: var(--bg-light);
      color: var(--primary-blue);
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      padding: 14px 28px;
      border-radius: var(--radius-md);
      font-weight: 700;
      font-size: 17px;
      cursor: pointer;
      border: 1px solid transparent;
      align-items: center;
      gap: 6px;
    }

    .btn-primary {
      background-color: var(--primary-dark);
      color: white;
      box-shadow: 0 2px 8px rgba(23, 37, 84, 0.2);
    }
    .btn-primary:hover {
      background-color: var(--primary-blue);
      box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    }

    .btn-outline {
      background-color: transparent;
      border-color: var(--primary-dark);
      color: var(--primary-dark);
    }
    .btn-outline:hover { background-color: var(--bg-light); }

    /* Hero Section */
    .hero {
      padding: 60px 0;
      background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .hero-image {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-video {
      border-radius: 16px;
      overflow: hidden;
      max-height: 600px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }

    .hero-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-image {
        order: -1;
        max-height: 300px;
      }

      .hero-video {
        order: -1;
        max-height: 350px;
      }
    }

    .hero-eyebrow {
      color: var(--accent-orange);
      font-weight: 700;
      text-transform: uppercase;
      font-size: 12px;
      margin-bottom: 10px;
      letter-spacing: 0.05em;
    }

    .hero h1 { font-size: 42px; margin-bottom: 24px; font-weight: 800; }
    .hero-subtitle { font-size: 20px; color: var(--text-muted); margin-bottom: 30px; line-height: 1.8; }

    .hero-facts {
      list-style: none;
      padding: 0;
      margin: 30px 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .hero-facts li {
      font-size: 13px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .hero-facts li::before {
      content: "✓";
      color: var(--primary-blue);
      font-weight: bold;
      font-size: 16px;
    }

    .sidebar-card {
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
      border: 1px solid var(--border-color);
    }

    .sidebar-tag {
      background: #dbeafe;
      color: var(--primary-blue);
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 11px;
      text-transform: uppercase;
      font-weight: 700;
      display: inline-block;
      margin-bottom: 10px;
    }

    .phone-large {
      font-size: 24px;
      font-weight: 700;
      color: var(--primary-blue);
      display: block;
      margin: 10px 0;
    }

    /* Sections */
    section { padding: 60px 0; }
    section:nth-of-type(even) { background-color: var(--bg-light); }

    #services { padding-top: 0; }

    .section-header { margin-bottom: 40px; max-width: 700px; }
    .section-header h2 { font-size: 32px; margin-bottom: 16px; font-weight: 700; }
    .section-header p { color: var(--text-muted); font-size: 18px; line-height: 1.7; }

    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .service-card {
      background: white;
      padding: 0;
      border-radius: var(--radius-md);
      border: none;
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .service-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .service-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      object-position: center;
      margin-bottom: 0;
    }

    .service-card-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .service-card-content p {
      flex-grow: 1;
    }

    .service-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .service-card h3 {
      font-size: 20px;
      margin-bottom: 12px;
      font-weight: 600;
    }
    .service-card h3 a {
      color: var(--primary-dark);
    }
    .service-card h3 a:hover {
      color: var(--primary-blue);
    }

    .service-card p {
      font-size: 16px;
      color: var(--text-muted);
      flex-grow: 1;
      line-height: 1.8;
      margin-bottom: 0;
    }

    .service-card ul {
      list-style: none;
      padding: 0;
      margin: 15px 0;
      font-size: 13px;
      color: var(--text-muted);
    }

    .service-card li {
      margin-bottom: 6px;
      padding-left: 20px;
      position: relative;
    }

    .service-card li::before {
      content: "•";
      color: var(--primary-blue);
      position: absolute;
      left: 0;
      font-weight: bold;
    }

    .read-more {
      color: var(--primary-blue);
      font-size: 16px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 0;
    }
    .read-more:hover {
      gap: 8px;
    }

    /* Benefits Grid */
    .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .benefit-item {
      background: var(--bg-light);
      padding: 36px;
      border-radius: 12px;
      border: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .benefit-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 16px rgba(26, 50, 118, 0.1);
    }
    .benefit-item h3 {
      font-size: 22px;
      margin-bottom: 16px;
      color: #1A3276;
      font-weight: 600;
    }
    .benefit-item p {
      font-size: 16px;
      color: #64748b;
      line-height: 1.9;
      margin-bottom: 14px;
    }
    .benefit-item p:last-child { margin-bottom: 0; }

    /* Tech Grid */
    .tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .tech-card {
      background: white;
      padding: 20px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
    }
    .tech-card h3 { font-size: 16px; margin-bottom: 8px; }
    .tech-card p { font-size: 13px; color: var(--text-muted); margin: 0; }

    /* Trust Section */
    .trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
    .trust-block {
      background: white;
      padding: 30px;
      border-radius: 12px;
      border: 1px solid var(--border-color);
    }
    .rating { font-size: 32px; font-weight: 700; color: var(--primary-blue); margin-bottom: 10px; }
    .trust-block h3 { font-size: 18px; margin-bottom: 15px; }
    .trust-block ul { list-style: none; padding: 0; font-size: 14px; color: var(--text-muted); line-height: 1.8; }
    .trust-block li::before {
      content: "•";
      color: var(--primary-blue);
      font-weight: bold;
      margin-right: 8px;
    }

    /* Wavy Line Separator */
    .waves-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      line-height: 0;
    }

    .waves {
      position: relative;
      width: 100%;
      height: 80px;
      margin-bottom: -7px;
      min-height: 80px;
      max-height: 150px;
    }

    .wave-parallax > use {
      fill: var(--primary-dark);
    }

    /* Contact CTA */
    .contact-card {
      max-width: 900px;
      margin: 0 auto;
    }

    /* Footer */
    footer {
      background: var(--primary-dark);
      color: #9ca3af;
      padding: 40px 0 20px;
      font-size: 13px;
    }
    footer a { color: #e5e7eb; }
    footer a:hover { color: white; }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
      gap: 30px;
      margin-bottom: 20px;
    }

    .footer-col h3 {
      font-size: 14px;
      color: white;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .footer-list {
      list-style: none;
      padding: 0;
      font-size: 13px;
    }
    .footer-list li { margin-bottom: 6px; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
      text-align: center;
      font-size: 12px;
    }

    /* Mobile Menu */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      position: relative;
      z-index: 1001;
    }

    .mobile-menu-btn span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--primary-dark);
      margin: 5px 0;
      transition: 0.3s;
    }

    .mobile-menu-btn.open span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-btn.open span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-btn.open span:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: white;
      box-shadow: -2px 0 10px rgba(0,0,0,0.1);
      padding: 80px 30px 30px;
      transition: right 0.3s ease;
      z-index: 1000;
      overflow-y: auto;
    }

    .mobile-menu.open {
      right: 0;
    }

    .mobile-menu a,
    .mobile-menu .nav-dropdown-toggle {
      display: block;
      padding: 12px 0;
      color: var(--text-main);
      font-size: 16px;
      font-weight: 500;
      border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu .nav-dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      padding: 0 0 0 20px;
      margin: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .mobile-menu .nav-dropdown.open .nav-dropdown-menu {
      max-height: 300px;
    }

    .mobile-menu .nav-dropdown-menu a {
      font-size: 14px;
      padding: 8px 0;
      border: none;
    }

    .mobile-menu-close {
      position: absolute;
      top: 24px;
      right: 24px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      color: var(--text-main);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.2s;
    }

    .mobile-menu-close:hover {
      color: var(--primary-blue);
    }

    .mobile-phone-btn {
      display: flex !important;
      align-items: center;
      gap: 10px;
      background: var(--primary-dark);
      color: white !important;
      padding: 16px 20px !important;
      border-radius: 8px;
      margin-top: 24px !important;
      font-size: 17px !important;
      font-weight: 700 !important;
      transition: background 0.2s;
    }

    .mobile-phone-btn:hover {
      background: var(--primary-blue);
    }

    .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0,0,0,0.5);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease;
      z-index: 999;
    }

    .mobile-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    /* Responsive */
    @media (max-width: 900px) {
      header {
        padding: 15px 0;
      }

      header .container {
        padding: 0 24px;
      }

      .nav-container {
        padding: 0;
      }

      .services-grid,
      .benefits-grid,
      .tech-grid,
      .trust-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .nav-links {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      header .btn-primary {
        display: none;
      }

      .hero h1 {
        font-size: 28px;
      }
    }

    /* Mobile call bar */
    .mobile-callbar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 12px 16px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-top: 1px solid var(--border-color);
      z-index: 998;
      display: none;
    }

    .mobile-callbar__btn {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 14px 16px;
      border-radius: 12px;
      background: var(--primary-blue);
      color: white;
      font-weight: 800;
      font-size: 16px;
      line-height: 1;
    }

    .mobile-callbar__btn:hover {
      background: var(--primary-dark);
    }

    @media (max-width: 900px) {
      body { padding-bottom: 84px; }
      .mobile-callbar { display: block; }
    }

    /* ==========================================================================
       Armora block tokens (Phase A.2)
       Shared primitives consumed by every dynamic Gutenberg block.
       Scope: frontend only. Admin ServerSideRender inherits via render.php.
       ========================================================================== */

    .armora-section {
      padding: 60px 0;
    }

    .armora-section--tight { padding: 40px 0; }
    .armora-section--loose { padding: 80px 0; }
    .armora-section--muted { background-color: var(--bg-light); }

    .armora-section__inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }

    .armora-section__title {
      font-size: 32px;
      font-weight: 700;
      color: var(--primary-dark);
      margin: 0 0 24px;
      line-height: 1.3;
    }

    .armora-section__lead {
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0 0 24px;
      max-width: 720px;
    }

    .armora-card {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 24px;
    }

    .armora-card--raised {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
      border-color: transparent;
    }

    .armora-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius-md);
      font-weight: 700;
      font-size: 17px;
      line-height: 1;
      border: 1px solid transparent;
      cursor: pointer;
      transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
      text-decoration: none;
    }

    .armora-button--primary {
      background-color: var(--primary-dark);
      color: #ffffff;
      box-shadow: 0 2px 8px rgba(23, 37, 84, 0.2);
    }
    .armora-button--primary:hover {
      background-color: var(--primary-blue);
      box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    }

    .armora-button--outline {
      background-color: transparent;
      border-color: var(--primary-dark);
      color: var(--primary-dark);
    }
    .armora-button--outline:hover {
      background-color: var(--bg-light);
    }

    .armora-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .armora-list > li {
      position: relative;
      padding-left: 24px;
      margin-bottom: 10px;
      line-height: 1.7;
    }

    .armora-list > li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--primary-blue);
      font-weight: 700;
    }

    .armora-list--plain > li {
      padding-left: 0;
    }
    .armora-list--plain > li::before {
      content: none;
    }

    @media (max-width: 900px) {
      .armora-section { padding: 40px 0; }
      .armora-section__title { font-size: 26px; }
      .armora-section__lead { font-size: 16px; }
    }
