    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary: #FA6324;
        --primary-light: #FF8C42;
        --secondary: #E85220;
        --accent: #10b981;
        --accent-light: #34d399;
        --dark: #1f2937;
        --light: #f8fafc;
        --border: #e2e8f0;
        --text: #475569;
        --text-light: #64748b;
    }

    html,
    body {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: var(--text);
        line-height: 1.6;
        background: #f8fafc;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        color: var(--dark);
    }

    /* Navbar */
    .navbar-brand {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--primary) !important;
        font-family: 'Poppins', sans-serif;
        letter-spacing: -0.5px;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
    }

    .navbar-logo {
      height: 62px;
      width: auto;
    }

    .brand-label {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--secondary);
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    .topbar {
      background: #111827;
      color: rgba(255,255,255,0.85);
      font-size: 0.9rem;
      padding: 0.45rem 0;
    }

    .topbar-left span,
    .topbar-right a {
      display: inline-flex;
      align-items: center;
      margin-right: 1.5rem;
      color: rgba(255,255,255,0.85);
      transition: color 0.2s ease;
    }

    .topbar-left span i,
    .topbar-right a i {
      margin-right: 0.5rem;
      font-size: 0.9rem;
    }

    .topbar-right a {
      text-decoration: none;
      color: rgba(255,255,255,0.75);
    }

    .topbar-right a:hover {
      color: white;
    }

    .site-navbar {
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(16px);
        padding: 1rem 0;
        box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
        border-bottom: 1px solid rgba(250, 99, 36, 0.12);
        position: fixed;
        width: 100%;
        top: 40px;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .contact-page .site-navbar {
        top: 0;
    }

    .contact-page .contact-top-section {
        padding: 120px 0 60px;
    }

    .contact-page .contact-top-section h1 {
        font-size: 2.8rem;
        line-height: 1.05;
    }

    .contact-page .contact-top-section .lead {
        font-size: 1rem;
        max-width: 680px;
    }

    .contact-directory {
        display: grid;
        grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
        gap: 2rem;
        align-items: stretch;
    }

    .office-list {
        padding: 2rem;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 1.5rem;
        background: rgba(255, 255, 255, 0.72);
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    }

    .office-list-heading {
        padding-bottom: 1rem;
        border-bottom: 1px solid #e2e8f0;
        margin-bottom: 0.25rem;
    }

    .office-kicker {
        display: block;
        margin-bottom: 0.45rem;
        color: var(--primary);
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .office-list-heading h2,
    .support-panel h2 {
        margin: 0;
        color: var(--dark);
        font-size: 1.55rem;
    }

    .office-entry {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr) auto;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .office-entry:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .office-entry-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(250, 99, 36, 0.12);
        color: var(--primary);
    }

    .office-entry h3 {
        margin: 0 0 0.35rem;
        color: var(--dark);
        font-size: 1.1rem;
    }

    .office-entry p {
        margin: 0;
        color: #475569;
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .office-entry-tag {
        align-self: start;
        padding: 0.35rem 0.65rem;
        border: 1px solid rgba(250, 99, 36, 0.2);
        border-radius: 999px;
        background: #fff7f2;
        color: var(--primary);
        font-size: 0.7rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .support-panel {
        position: relative;
        overflow: hidden;
        padding: 2rem;
        border-radius: 1.5rem;
        background: linear-gradient(145deg, #111827 0%, #1e293b 100%);
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
        color: #cbd5e1;
    }

    .support-panel::after {
        content: '';
        position: absolute;
        top: -70px;
        right: -80px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(250, 99, 36, 0.16);
    }

    .support-panel-icon {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        margin-bottom: 1.5rem;
        border-radius: 0.8rem;
        background: var(--primary);
        color: white;
    }

    .support-panel .office-kicker,
    .support-panel h2,
    .support-panel > p,
    .support-detail {
        position: relative;
        z-index: 1;
    }

    .support-panel h2 {
        margin-bottom: 1rem;
        color: white;
        line-height: 1.2;
    }

    .support-panel > p {
        margin-bottom: 1.5rem;
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .support-detail {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .support-detail strong {
        color: white;
        font-size: 0.8rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .support-detail a {
        color: #fdba9b;
        font-size: 0.9rem;
        text-decoration: none;
    }

    .support-detail a:hover {
        color: white;
    }

    .contact-highlight-card .card-title {
        color: white;
    }

    .contact-highlight-card p,
    .contact-highlight-card li {
        color: #cbd5e1;
    }

    .cta-button-light {
        background: white;
        color: var(--primary);
        border: 2px solid var(--primary);
        box-shadow: 0 14px 30px rgba(250, 99, 36, 0.12);
    }

    .cta-button-light:hover {
        background: var(--primary);
        color: white;
        box-shadow: 0 20px 40px rgba(250, 99, 36, 0.2);
    }

    .nav-link {
        color: var(--text) !important;
        font-weight: 600;
        margin: 0 0.9rem;
        transition: all 0.3s;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-size: 0.95rem;
        padding: 0.35rem 0;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -7px;
        left: 50%;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 999px;
        transform: translateX(-50%);
        transition: width 0.3s;
    }

    .nav-link:hover,
    .nav-link:focus {
        color: var(--primary) !important;
    }

    .nav-link:hover::after,
    .nav-link:focus::after {
        width: 65%;
    }

    .nav-pill {
        background: rgba(250, 99, 36, 0.1);
        color: var(--primary) !important;
        border-radius: 999px;
        padding: 0.75rem 1.2rem;
        margin: 0 0.3rem;
        border: 1px solid rgba(250, 99, 36, 0.22);
        box-shadow: inset 0 0 0 rgba(250, 99, 36, 0.2);
        transition: all 0.25s ease;
        white-space: nowrap;
    }

    .nav-pill:hover {
        background: rgba(250, 99, 36, 0.18);
        transform: translateY(-1px);
    }

    .navbar-nav {
        align-items: center;
    }

    .dropdown-menu {
      border-radius: 1rem;
      border: 1px solid rgba(31, 41, 55, 0.08);
      box-shadow: 0 25px 60px rgba(15, 23, 42, 0.14);
      padding: 0.6rem 0;
      min-width: 240px;
      overflow: hidden;
    }

    .dropdown-item {
      color: var(--dark);
      padding: 1rem 1.5rem;
      transition: background 0.25s ease, color 0.25s ease;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      border-left: 4px solid transparent;
    }

    .dropdown-item i {
      color: var(--primary);
      width: 18px;
      text-align: center;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
      background: rgba(250, 99, 36, 0.08);
      color: var(--primary);
      border-left-color: var(--primary);
    }

    .cta-nav {
      margin-left: 0.5rem;
    }

    .cta-button {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        color: white;
        border: none;
        padding: 0.85rem 1.6rem;
        border-radius: 999px;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        box-shadow: 0 16px 38px rgba(250, 99, 36, 0.16);
    }

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -120%;
        width: 120%;
        height: 100%;
        background: rgba(255, 255, 255, 0.18);
        transition: left 0.35s ease;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 22px 52px rgba(250, 99, 36, 0.25);
        text-decoration: none;
    }

    .cta-button:hover::before {
        left: 0;
    }

    .navbar.scrolled {
        padding: 0.45rem 0;
        box-shadow: 0 7px 25px rgba(0, 0, 0, 0.12);
    }

    @media (max-width: 991px) {
      .topbar {
        display: none;
      }
      .navbar {
        top: 0;
      }
            .hero {
                margin-top: 0;
            }
      .nav-link {
        margin: 0.45rem 0;
      }
      .navbar-nav {
        margin-top: 0.7rem;
      }
      .cta-nav {
        width: 100%;
        display: flex;
        justify-content: center;
      }
    }

    .navbar-toggler {
      border: none;
      outline: none;
      box-shadow: none;
      z-index: 2000;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(31,41,55,1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
      filter: invert(1);
    }

    .navbar-brand {
      padding-left: 20px;
    }

    .brand-name {
      font-size: 1rem;
      line-height: 1.1;
      font-weight: 800;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .brand-name-primary {
      color: var(--primary);
    }

    .brand-name-secondary {
      color: var(--dark);
    }

    .brand-name br {
      display: block;
      line-height: 1.1;
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        padding: 90px 0 70px 0;
        margin-top: 40px;
        position: relative;
        overflow: hidden;
        min-height: 100vh;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100vw;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -45%;
        right: -10%;
        width: 420px;
        height: 420px;
        background: radial-gradient(circle, rgba(250, 99, 36, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -25%;
        left: -5%;
        width: 360px;
        height: 360px;
        background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 8s ease-in-out infinite reverse;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(30px);
        }
    }

    .hero .container {
        position: relative;
        z-index: 2;
        max-width: 1140px;
        margin: 0 auto;
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

    .company-hero .container {
        display: block;
    }

    .company-hero-content {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .company-hero .hero-buttons {
        justify-content: center;
    }

    .company-hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .company-hero-content > p {
        max-width: 680px;
    }

    .company-hero-trust {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem 1.25rem;
        margin-top: 1.25rem;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.82rem;
    }

    .company-hero-trust i {
        color: var(--accent-light);
        margin-right: 0.35rem;
    }

    .company-capability-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .company-capability-card {
        padding: 1.35rem 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
        color: rgba(255, 255, 255, 0.82);
    }

    .company-capability-card h2 {
        margin: 0.7rem 0 0.45rem;
        color: #ffffff;
        font-size: 1.25rem;
    }

    .company-capability-card p {
        margin: 0 0 0.8rem;
        color: rgba(255, 255, 255, 0.74);
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .company-capability-card > i {
        color: var(--primary-light);
        font-size: 1.25rem;
    }

    .company-capability-card a {
        color: #7dd3fc;
        font-size: 0.82rem;
        font-weight: 700;
        text-decoration: none;
    }

    .company-capability-card a:hover {
        color: #ffffff;
    }

    .company-capability-card-accent {
        background: rgba(16, 185, 129, 0.12);
    }

    .company-capability-card-blue {
        background: rgba(59, 130, 246, 0.14);
    }

    .product-hero {
        background: linear-gradient(135deg, #111827 0%, #172554 100%);
    }

    .product-hero .container,
    .product-hero .row {
        width: 100%;
    }

    .product-hero .row {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .product-hero-copy {
        flex: 0 0 42%;
    }

    .product-hero-brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
        color: #ffffff;
    }

    .product-hero-logo {
        width: 58px;
        height: 58px;
        object-fit: contain;
    }

    .product-hero-brand strong,
    .product-hero-brand span {
        display: block;
    }

    .product-hero-brand strong {
        font-size: 1.15rem;
    }

    .product-hero-brand span {
        margin-top: 0.25rem;
        color: var(--accent-light);
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.12em;
    }

    .product-hero-story {
        width: 100%;
        margin-bottom: 2rem;
        padding: 1rem 1.15rem;
        border: 1px solid rgba(250, 99, 36, 0.35);
        border-left: 4px solid var(--primary);
        border-radius: 0.9rem;
        background: linear-gradient(135deg, rgba(250, 99, 36, 0.18), rgba(255, 255, 255, 0.05));
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
        box-sizing: border-box;
    }

    .product-hero-story-label {
        display: block;
        margin-bottom: 0.45rem;
        color: var(--primary-light);
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .product-hero-story-label i {
        margin-right: 0.35rem;
    }

    .product-hero-story h2 {
        margin: 0 0 0.45rem;
        color: #ffffff;
        font-size: 1.15rem;
        line-height: 1.3;
    }

    .product-hero-story p {
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .product-hero-proof {
        display: flex;
        align-items: center;
        gap: 1rem;
        white-space: nowrap;
        margin-top: 1.25rem;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.85rem;
    }

    .product-hero-proof i {
        color: var(--accent-light);
    }

    .product-hero-proof .proof-item {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
    }

    .product-hero-visual {
        position: relative;
        flex: 1 1 auto;
        min-width: 0;
    }

    .dashboard-preview {
        overflow: hidden;
        border: 6px solid rgba(255, 255, 255, 0.18);
        border-radius: 1rem;
        background: #f8fafc;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    }

    .dashboard-preview-topbar {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        height: 2.5rem;
        padding: 0 0.8rem;
        color: #17446d;
        background: #ffffff;
        font-size: 0.75rem;
    }

    .dashboard-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #f87171;
    }

    .dashboard-dot:nth-child(2) { background: #fbbf24; }
    .dashboard-dot:nth-child(3) { background: #34d399; }
    .dashboard-preview-topbar small { margin-left: auto; color: #94a3b8; }

    .dashboard-preview-body {
        display: grid;
        grid-template-columns: 3.5rem minmax(0, 1fr);
        min-height: 19rem;
    }

    .dashboard-sidebar {
        padding: 0.8rem 0.65rem;
        background: #062d50;
    }

    .dashboard-mark {
        display: grid;
        place-items: center;
        height: 2.25rem;
        margin-bottom: 1rem;
        border-radius: 0.4rem;
        background: #ffffff;
    }

    .dashboard-mark img { width: 1.8rem; height: 1.8rem; object-fit: contain; }
    .dashboard-sidebar > span { display: block; height: 0.35rem; margin: 0.75rem 0; border-radius: 99px; background: #7db2d6; }

    .dashboard-content {
        min-width: 0;
        padding: 1.25rem;
        color: #23364d;
    }

    .dashboard-content-header,
    .chart-label { display: flex; justify-content: space-between; gap: 1rem; }
    .dashboard-content-header small,
    .dashboard-stats small { color: #0878ca; font-size: 0.58rem; font-weight: 800; letter-spacing: 0.08em; }
    .dashboard-content-header h2 { margin: 0.35rem 0 1rem; color: #23364d; font-size: clamp(1.1rem, 2vw, 1.65rem); }
    .dashboard-content-header b { align-self: start; padding: 0.6rem 0.8rem; border-radius: 0.35rem; color: white; background: #0878ca; font-size: 0.7rem; white-space: nowrap; }
    .dashboard-range { display: flex; gap: 0.4rem; margin-bottom: 0.8rem; }
    .dashboard-range i { padding: 0.25rem 0.45rem; border-radius: 0.25rem; color: #64748b; background: #e9f1f8; font-size: 0.65rem; font-style: normal; }
    .dashboard-range .active { color: white; background: #0878ca; }
    .dashboard-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
    .dashboard-stats > div { padding: 0.8rem; border: 1px solid #dce7f0; border-radius: 0.55rem; background: white; }
    .dashboard-stats strong { display: block; margin: 0.45rem 0; color: #23364d; font-size: 1rem; }
    .dashboard-stats span { color: #64748b; font-size: 0.65rem; }
    .dashboard-chart { margin-top: 0.8rem; padding: 0.8rem; border: 1px solid #dce7f0; border-radius: 0.55rem; background: white; }
    .chart-label { color: #64748b; font-size: 0.7rem; }
    .chart-label strong { color: #0f9f7c; }
    .chart-bars { display: flex; align-items: end; gap: 0.5rem; height: 4.5rem; margin-top: 0.8rem; }
    .chart-bars span { flex: 1; min-width: 0; border-radius: 0.25rem 0.25rem 0 0; background: linear-gradient(#36c6c0, #0878ca); }

    .dashboard-float-card { position: absolute; right: 1.25rem; bottom: 1.25rem; width: min(18rem, 48%); padding: 0.8rem; border: 1px solid #dce7f0; border-radius: 0.75rem; background: rgba(255, 255, 255, 0.98); box-shadow: 0 14px 30px rgba(7, 48, 82, 0.22); color: #26384b; }
    .ai-chat-preview-header { display: flex; align-items: center; gap: 0.4rem; padding-bottom: 0.55rem; border-bottom: 1px solid #e5edf4; color: #0878ca; font-size: 0.75rem; }
    .ai-chat-preview-header small { margin-left: auto; color: #8497a8; font-size: 0.55rem; }
    .ai-chat-message { margin-top: 0.55rem; padding: 0.55rem; border-radius: 0.4rem; font-size: 0.65rem; line-height: 1.35; }
    .ai-chat-message-user { background: #edf5fb; color: #42647d; }
    .ai-chat-message-bot { border-left: 3px solid #0f9f7c; background: #f2fbf8; }
    .ai-chat-message-bot strong,
    .ai-chat-message-bot span,
    .ai-chat-message-bot b { display: block; }
    .ai-chat-message-bot strong { color: #176b59; }
    .ai-chat-message-bot span { margin: 0.2rem 0; color: #6c8790; }
    .ai-chat-message-bot b { color: #0878ca; font-size: 0.6rem; }

    .hero h1 {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: white;
        font-weight: 800;
        animation: slideInUp 0.8s ease;
    }

    .hero h1 span {
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero p {
        font-size: 1.25rem;
        color: #cbd5e1;
        margin-bottom: 1.5rem;
        line-height: 1.8;
        animation: slideInUp 0.8s ease 0.1s both;
    }

    .hero-slogan {
        display: inline-block;
        font-size: 1.05rem;
        color: rgba(255,255,255,0.88);
        margin-bottom: 2rem;
        line-height: 1.7;
        letter-spacing: 0.04em;
        max-width: 780px;
        padding: 0.75rem 1rem;
        border-radius: 1rem;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        animation: slideInUp 0.8s ease 0.15s both;
        font-weight: 600;
    }

    .badge-custom {
        display: inline-block;
        background: rgba(250, 99, 36, 0.2);
        color: var(--primary-light);
        padding: 0.65rem 1.25rem;
        border-radius: 2rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 0.875rem;
        border: 1px solid rgba(250, 99, 36, 0.3);
        animation: slideInUp 0.8s ease 0.2s both;
    }

    .hero-buttons {
        animation: slideInUp 0.8s ease 0.3s both;
    }

    .cta-button-secondary {
        background: transparent;
        border: 2px solid white;
        color: white;
        margin-left: 1rem;
    }

    .cta-button-secondary:hover {
        background: white;
        color: var(--primary);
        box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    }

    .cta-button-light {
        background: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
        transition: all 0.3s ease;
    }

    .cta-button-light:hover {
        background: var(--primary);
        color: white;
        box-shadow: 0 18px 40px rgba(250, 99, 36, 0.18);
    }

    /* Section */
    section {
        padding: 60px 0;
    }

    .section-light {
        background: var(--light);
    }

    .section-title {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .section-title h2 {
        font-size: 2.75rem;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
        letter-spacing: -0.03em;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 5px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 4px;
        box-shadow: 0 10px 25px rgba(250, 99, 36, 0.18);
    }

    .section-title p {
        font-size: 1rem;
        color: var(--text-light);
        max-width: 620px;
        margin: 1rem auto 0;
    }

    /* Stats Section */
    .stats-section {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        padding: 60px 0;
        color: white;
    }

    .stat-box {
        text-align: center;
        padding: 2rem;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        color: white;
    }

    .stat-label {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
    }

    /* Service Card Styles */
    .service-card {
        background: white;
        padding: 2rem;
        border-radius: 1.75rem;
        border: 1px solid rgba(226, 232, 240, 0.7);
        transition: all 0.3s;
        text-align: center;
        height: 100%;
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
    }

    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(250, 99, 36, 0.15);
        border-color: var(--primary);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        margin: 0 auto 1.5rem;
        box-shadow: 0 10px 25px rgba(250, 99, 36, 0.2);
        transition: all 0.3s;
    }

    .service-card:hover .service-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .service-card h4 {
        margin-bottom: 1rem;
        color: var(--dark);
        font-size: 1.25rem;
    }

    .service-card p {
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Product Card */
    .product-card {
        background: white;
        border-radius: 1.75rem;
        overflow: hidden;
        box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
        transition: all 0.3s;
        height: 100%;
        border: 1px solid rgba(226, 232, 240, 0.7);
        display: flex;
        flex-direction: column;
    }

    .product-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(250, 99, 36, 0.2);
    }

    .product-card-header p {
        color: rgba(255,255,255,0.9);
        margin: 0.5rem 0 0 0;
        transition: color 0.3s ease;
    }

    .product-card-body p {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }

    .info-card {
        background: white;
        padding: 1.9rem;
        border-radius: 1.5rem;
        border-left: 4px solid var(--primary);
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 65px rgba(15, 23, 42, 0.12);
    }

    .info-card h5 {
        margin-bottom: 1rem;
        font-size: 1.15rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .info-card h5 i {
        font-size: 1.25rem;
    }

    .info-card ul {
        list-style: none;
        margin: 0;
        padding: 0;
        color: var(--text-light);
        line-height: 1.8;
    }

    .info-card li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .info-card li:last-child {
        margin-bottom: 0;
    }

    .info-card li i {
        margin-top: 0.25rem;
        color: var(--accent);
    }

    .info-card--secondary {
        border-left-color: var(--secondary);
    }

    .info-card--accent {
        border-left-color: var(--accent);
    }

    .info-card--purple {
        border-left-color: #7b4bff;
    }

    .info-card--primary {
        border-left-color: var(--primary);
    }

    .info-card--primary h5 i {
        color: var(--primary);
    }

    .info-card--secondary h5 i {
        color: var(--secondary);
    }

    .info-card--accent h5 i {
        color: var(--accent);
    }

    .info-card--purple h5 i {
        color: #7b4bff;
    }

    .feature-card {
        background: white;
        padding: 1.9rem;
        border-radius: 1.5rem;
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        min-height: 100%;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    }

    .feature-card-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 84px;
        height: 84px;
        border-radius: 1rem;
        background: rgba(250, 99, 36, 0.12);
        color: var(--primary);
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .feature-card h4 {
        margin-bottom: 0.75rem;
        font-size: 1.15rem;
    }

    .feature-card p {
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .product-card-header {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        color: white;
        padding: 2.5rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .product-card-header::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .product-card-header i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        display: block;
        position: relative;
        z-index: 1;
    }

    .product-card-body {
        padding: 2.5rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .equal-height-row {
        display: flex;
        flex-wrap: wrap;
    }

    .equal-height-row > [class*='col-'] {
        display: flex;
        flex-direction: column;
        margin-bottom: 1.5rem;
    }

    .equal-height-row > [class*='col-'] > div {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .equal-height-row > [class*='col-'] > div > .product-card,
    .equal-height-row > [class*='col-'] > div > .service-card,
    .equal-height-row > [class*='col-'] > div > .info-card,
    .equal-height-row > [class*='col-'] > div > .feature-card,
    .equal-height-row > [class*='col-'] > div > .testimonial-card,
    .equal-height-row > [class*='col-'] > div > .team-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .product-features {
        list-style: none;
        margin: 1.5rem 0;
        padding: 0;
    }

    .product-features li {
        padding: 0.75rem 0;
        color: var(--text-light);
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        transition: all 0.3s;
    }

    .product-features li:last-child {
        border-bottom: none;
    }

    .product-features li::before {
        content: '✓';
        color: var(--accent);
        font-weight: bold;
        margin-right: 0.75rem;
        font-size: 1.1rem;
    }

    .product-features li:hover {
        color: var(--primary);
        padding-left: 0.5rem;
    }

    /* Team Card */
    .team-card {
        background: white;
        border-radius: 1.25rem;
        padding: 2.2rem;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s;
        border: 1px solid var(--border);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .team-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(250, 99, 36, 0.05), rgba(16, 185, 129, 0.05));
        opacity: 0;
        transition: opacity 0.3s;
    }

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(250, 99, 36, 0.15);
    }

    .team-card:hover::before {
        opacity: 1;
    }

    .team-card-image {
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 3rem;
        color: white;
        box-shadow: 0 10px 30px rgba(250, 99, 36, 0.2);
        position: relative;
        z-index: 1;
    }

    .team-card-body {
        position: relative;
        z-index: 1;
    }

    .team-card h4 {
        margin-bottom: 0.5rem;
        font-size: 1.25rem;
    }

    .team-role {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 0.75rem;
    }

    /* Testimonials Section */
    .testimonials-section {
        background: linear-gradient(135deg, var(--light) 0%, #f0f9ff 100%);
    }

    .testimonial-card {
        background: white;
        padding: 2.2rem;
        border-radius: 1.5rem;
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
        border-left: 5px solid var(--primary);
        transition: all 0.3s;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(250, 99, 36, 0.15);
    }

    .testimonial-stars {
        color: #fbbf24;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .testimonial-text {
        color: var(--text-light);
        font-style: italic;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }

    .testimonial-author {
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 0.25rem;
    }

    .testimonial-role {
        color: var(--primary);
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, var(--dark) 0%, #374151 100%);
        color: white;
        text-align: center;
        padding: 70px 0;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(250, 99, 36, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: white;
        position: relative;
        z-index: 1;
    }

    .cta-section p {
        font-size: 1.05rem;
        color: #cbd5e1;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .cta-button-white {
        background: white;
        color: var(--primary);
        padding: 0.875rem 2rem;
        border-radius: 0.5rem;
        font-weight: 600;
        transition: all 0.3s;
        text-decoration: none;
        cursor: pointer;
        border: none;
    }

    .cta-button-white:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(250, 99, 36, 0.4);
    }

    /* Footer */
    footer {
        position: relative;
        background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
        color: #cbd5e1;
        padding: 60px 0 30px;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), #10b981, #3b82f6);
    }

    .footer-grid {
        align-items: start;
        margin-bottom: 1rem !important;
    }

    .footer-brand-title {
        margin-bottom: 0.35rem;
        font-size: 1.35rem;
        letter-spacing: 0.04em;
    }

    .footer-kicker {
        display: block;
        margin-bottom: 1rem;
        color: var(--primary-light);
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    footer .footer-section > p {
        max-width: 360px;
        color: #aebed1;
    }

    footer h4 {
        color: white;
        margin-bottom: 1.25rem;
        font-size: 1.2rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    footer p {
        font-size: 0.95rem;
        line-height: 1.8;
        color: #cbd5e1;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-section h4 + p,
    .footer-section h4 + .footer-link {
        margin-top: 0.5rem;
    }

    .footer-link {
        color: #cbd5e1;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        padding: 0.3rem 0;
        transition: all 0.3s ease;
    }

    .footer-link i {
        font-size: 0.85rem;
        width: 18px;
    }

    .footer-link:hover {
        color: var(--primary);
        transform: translateX(4px);
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1.25rem;
    }

    .social-links a {
        width: 42px;
        height: 42px;
        background: rgba(250, 99, 36, 0.18);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .social-links a:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-3px);
    }

    .footer-contact p {
        margin-bottom: 0.8rem !important;
        font-size: 0.85rem;
        line-height: 1.55;
    }

    .footer-contact .footer-link {
        gap: 0.4rem;
    }

    .footer-contact .footer-link:hover {
        transform: none;
    }

    .footer-bottom {
        background: rgba(255, 255, 255, 0.04);
        padding: 1rem 0;
        margin-top: 1.5rem;
        text-align: center;
        font-size: 0.92rem;
        color: #94a3b8;
    }

    .footer-bottom p {
        margin: 0;
        font-size: 0.78rem;
    }

    @media (max-width: 768px) {
        footer {
            padding: 3.5rem 0 1.25rem;
        }

        .footer-section {
            margin-bottom: 1.75rem;
        }

        .footer-contact p {
            font-size: 0.82rem;
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero {
            min-height: auto;
            padding: 120px 0 60px;
        }

        .hero h1 {
            font-size: 2.25rem;
        }

        .hero p {
            font-size: 1rem;
        }

        .company-hero .container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .company-capability-grid {
            grid-template-columns: 1fr;
        }

        .company-hero-content {
            text-align: center;
        }

        .company-hero-eyebrow,
        .company-hero-trust {
            justify-content: center;
        }

        .company-hero .hero-buttons {
            justify-content: center;
        }

        .product-hero .row {
            display: block;
        }

        .product-hero-copy {
            margin-bottom: 2rem;
            text-align: center;
        }

        .product-hero-brand {
            justify-content: center;
        }

        .product-hero .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
        }

        .product-hero .cta-button-secondary {
            margin-left: 0;
        }

        .product-hero-proof {
            text-align: center;
            justify-content: center;
        }

        .dashboard-content {
            padding: 0.8rem;
        }

        .dashboard-content-header h2 {
            font-size: 1rem;
        }

        .dashboard-content-header b {
            display: none;
        }

        .dashboard-float-card {
            right: 0.6rem;
            bottom: 0.6rem;
            width: min(16rem, 58%);
        }

        .section-title h2 {
            font-size: 2rem;
        }

        .cta-button-secondary {
            margin-left: 0;
            margin-top: 1rem;
            display: block;
        }

        .stat-number {
            font-size: 2rem;
        }

        .contact-directory {
            grid-template-columns: 1fr;
        }

        .office-list,
        .support-panel {
            padding: 1.5rem;
        }

        .office-entry {
            grid-template-columns: 38px minmax(0, 1fr);
            align-items: start;
        }

        .office-entry-icon {
            width: 38px;
            height: 38px;
        }

        .office-entry-tag {
            grid-column: 2;
            justify-self: start;
        }
    }


    @media (min-width: 769px) {
        .product-hero .row {
            display: grid;
            grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
            align-items: center;
            gap: 2rem;
        }

        .product-hero .product-hero-copy,
        .product-hero .product-hero-visual {
            width: auto;
            max-width: none;
        }
    }

    @media (min-width: 601px) and (max-width: 768px) {
        .product-hero .row {
            display: grid;
            grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
            align-items: center;
            gap: 1rem;
        }

        .product-hero-copy {
            margin-bottom: 0;
            text-align: left;
        }

        .product-hero-brand {
            justify-content: flex-start;
        }
    }

    @media (max-width: 600px) {
        .product-hero .row {
            display: block;
        }

        .product-hero-copy {
            margin-bottom: 2rem;
            text-align: center;
        }

        .product-hero-brand,
        .product-hero .hero-buttons {
            justify-content: center;
        }

        .product-hero-proof {
            text-align: center;
            justify-content: center;
            white-space: normal;
        }
    }

    #about .col-lg-6:first-child img {
        display: block;
        width: 100%;
        aspect-ratio: 1.2;
        object-fit: cover;
    }

    #about .about-layout {
        align-items: flex-start !important;
        margin-top: 2rem;
    }

    #about .about-intro-row {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    #about .about-image {
        margin-top: 0;
    }

    #about .about-content {
        display: flex;
        flex-direction: column;
    }

    #about .about-intro,
    #about .about-why {
        width: 100%;
    }

    #about .about-why {
        margin: 1rem 0 !important;
    }

    #about .about-why > div {
        gap: 0.75rem !important;
    }

    #about .about-why > div > div {
        margin-bottom: 0.65rem !important;
    }

    @media (max-width: 768px) {
        #about .about-layout {
            margin-top: 1.5rem;
        }

        #about .col-lg-6:last-child > div {
            padding-left: 0 !important;
        }
    }

    /* Utility Classes */
    .text-gradient {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }