html {
    scroll-behavior: smooth;

}

.spy-section {
    scroll-margin-top: 90px; /* anchor offset */
}

.spy-section.active-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.about-content h3 {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Navigation */
.navbar {
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container.navbar-padding {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links li a.btn-primary {
    padding: 0.75rem 1.5rem;
}

/* Logo in nav */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    height: 61px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-main {
    font-size: 1.10rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
    display: block;
}

.brand-tagline {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

/* Nav links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    border-bottom: 2px solid #00d4ff;
}

/* Scrollspy active in nav */
.nav-links .spy-link.active {
    border-bottom: 2px solid #00d4ff;
}

.scrollspy-nav .spy-link.active {
    color: #fff;
}

/* On mobile, make logo a bit smaller so it doesn’t dominate */
@media (max-width: 768px) {
    .logo img {
        height: 36px;
    }
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #00d4ff;
    color: #0a1628;
}

.btn-primary:hover {
    background: #00c0ea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-white {
    background: white;
    color: #0a1628;
}

.btn-white:hover {
    background: #f0f0f0;
}

.btn-cta {
    background: #00d4ff;
    color: #0a1628;
}

.btn-cta:hover {
    background: #00c0ea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 22, 40, 0.95), rgba(10, 22, 40, 0.95)), url('/images/image.png');
    background-size: cover;
    background-position: center;
    background-color: #F4F7FB;
    color: white;
    padding: 2rem 1rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    max-width: 600px;
}

.hero-landing {
    background-size: cover;
    background-position: center;
    background-color: #F4F7FB;
    color: #031019;
    padding: 2rem 1rem;
}

.hero-content-landing {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left-landing {
    max-width: 600px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-tagline::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: #00d4ff;
}

.hero h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-feature strong {
    color: white;
}

/* === Multi-step form card in hero === */
.hero-form-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.75rem 1.5rem 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-form-header {
    margin-bottom: 1.25rem;
}

.hero-form-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.hero-form-header p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.step-indicator {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
}

.step-indicator-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
}

.step-indicator.active .step-indicator-circle {
    background: #00d4ff;
    border-color: #00d4ff;
    color: #0a1628;
    font-weight: 700;
}

.step-indicator.active {
    color: #ffffff;
}

.step-indicator.completed .step-indicator-circle {
    background: #16a34a;
    border-color: #16a34a;
    color: #0a1628;
}

.step-indicator-label {
    white-space: nowrap;
}

form.hero-multistep-form {
    font-size: 0.9rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 0.9rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.85);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 84%;
    padding: 0.55rem 0.6rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(10, 22, 40, 0.9);
    color: #ffffff;
    font-size: 0.9rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.form-helper {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 3rem;
    margin-top: 1rem;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.payment-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    cursor: pointer;
}

.payment-option label {
    font-size: 0.9rem;
    line-height: 1.35rem;
    color: #fff;
    max-width: 160px;
    cursor: pointer;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start !important;
    text-align: left !important;
}

.checkbox-row label {
    text-align: left;
    width: auto;
    color: #fff;
}

.form-footer {
    margin-top: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.form-footer .btn-prev {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    cursor: pointer;
}

.form-footer .btn-next,
.form-footer .btn-submit {
    background: #00d4ff;
    color: #0a1628;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.35);
}

.form-footer .btn-next:hover,
.form-footer .btn-submit:hover {
    background: #00c0ea;
}

.form-footer .btn-prev[disabled] {
    opacity: 0.35;
    cursor: default;
}

.form-disclaimer {
    margin-top: 0.7rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Stats Section */
.stats {
    background: #0a1628;
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: #f9fafb;
    padding: 5rem 2rem;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0a1628;
}

.about-eyebrow {
    font-size: 1.21rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.about-lead {
    font-size: 1.05rem;
    color: #1f2933;
    margin-bottom: 1rem;
}

.about-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-list {
    margin-top: 1.25rem;
    padding-left: 1.1rem;
    list-style: none;
}

.about-list li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #374151;
}

.about-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #00d4ff;
    font-size: 1.1rem;
    line-height: 1;
}

/* Stats column */
.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
}

.about-stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 0.95rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.1rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #e3f2fd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: #0070f3;
}

.stat-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    color: #0f172a;
}

.about-stat-text {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 1.4rem;
}

/* Responsive About */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about {
        padding: 3.5rem 1.5rem;
    }
}

.years-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #0070f3;
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 112, 243, 0.3);
}

.years-badge .number {
    font-size: 2rem;
    font-weight: 800;
}

.years-badge .label {
    font-size: 0.9rem;
}

/* Services Section */
.services {
    background: #CBD5E1;
    padding: 5rem 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

#how-it-works .section-kicker {
    color: #fff;
}

#how-it-works .about-eyebrow {
    color: #fff;
}
.cta h2 {
    color: #0a1628;
}
#how-it-works .section-header h2 {
    color: #0a1628;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Reused icon block */
.service-icon {
    width: 50px;
    height: 50px;
    background: #e3f2fd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: #0070f3;
}

/* Industries */
.industries {
    padding: 70px 20px;
    background: #f8fafc;
}

.industries-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.industries-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.industries-subtitle {
    color: #475569;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 35px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.industry-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 22px;
    text-align: left;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.06);
    transition: 0.25s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
}

.industry-icon {
    font-size: 30px;
    background: #e0f0ff;
    color: #1e40af;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.industry-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: #0f172a;
}

.industry-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Trust Section */
.trust {
    background: #fff;
    padding: 5rem 2rem;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: #e3f2fd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 24px;
    height: 24px;
    color: #0070f3;
}

.trust-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.trust-text p {
    color: #555;
    line-height: 1.6;
}

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

/* Integrations Section */
.integrations {
    background: #e8e8e8;
    padding: 5rem 2rem;
}

.integrations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.integration-item {
    text-align: center;
}

.integration-icon {
    width: 80px;
    height: 80px;
    background: #666;
    border-radius: 12px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-item p {
    color: #666;
    font-weight: 600;
}

/* CTA Section */
.cta {
    background: #94A3B8;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* HOW IT WORKS */
.section {
    background: #94A3B8;
    padding: 5rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.75rem;
}

.section-kicker {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.section-intro {
    font-size: 0.98rem;
    color: #4b5563;
}

/* Steps row */
.steps-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 2rem;
}

/* Individual step card */
.step-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    padding: 1.4rem 1.3rem;
    font-size: 0.9rem;
}

.step-label {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    background: #f9fafb;
    color: #0f172a;
    font-weight: 600;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: #0f172a;
}

.step-card p {
    color: #4b5563;
    line-height: 1.6;
}

/* Bottom CTA band inside section */
.cta-band {
    margin-top: 2.75rem;
    background: #0a1628;
    color: #f9fafb;
    border-radius: 18px;
    padding: 1.6rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cta-band h3 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.cta-band p {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.9);
}

.cta-band a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    background: #00d4ff;
    color: #0a1628;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 212, 255, 0.35);
}

.cta-band a:hover {
    background: #00c0ea;
}

/* Responsive tweaks for HOW IT WORKS */
@media (max-width: 900px) {
    .steps-row {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3.5rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-band a {
        width: 100%;
        justify-content: center;
    }
}

/* Footer */
.footer {
        background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 3rem 0 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #0070f3;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

/*
    Copyright Section Start
*/
.copyright{
    padding: 50px 0px;
    background: rgba(255,255,255,0.05);
}
.footer-container .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-link-cp {
    color: #fff !important;
}
.custom-footer .copyright .cs-copyright-text-link {
      color: #fff !important; 
  }
  .custom-footer .copyright .cs-copyright-text-link:hover {
      text-decoration: underline !important;
  }  
  .by span {
   
    font-weight: 400;
    font-style: italic;
    opacity: 0.75;
    padding-top: 21px;
    color: #eee;
}
.footer-container .by {
     font-size: 12px;
     padding-top: 21px;
}
.copyright .copy-text{font-size: 14px; color: #fff; letter-spacing: 1px; padding-top: 10px;}
.copyright .copy-text a{color: #fff;}
.copyright .copy-text a:hover{text-decoration: underline;}
.copyright ul{text-align: right; margin: 0;}
.copyright ul li{display: inline-block; padding-left: 8px;}
.copyright ul li a{color: #fff; background: #242628; width: 40px; height: 40px; line-height: 40px; display: block; text-align: center;}
.copyright ul li a:hover{background: #fff;}
.custom-footer .copyright ul li {
  vertical-align: middle;
}
.custom-footer .copyright ul li:last-child a:hover {
  background: transparent !important;
}
.custom-footer .copyright {
  padding:40px 0;
}

.social-links ul {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links ul li a {
    width: 52px;
    height: 52px;
    background: #2a2d30;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all .25s ease;
    font-size: 24px;
    color: #fff;
    padding-top: 0;
    text-decoration: none;
}

.custom-footer .copyright ul li a {
     width: 70px !important;
     height: 70px !important;
     line-height: 70px !important;
     font-size: 40px !important;
}

.social-links ul li a:hover {
    background: #00d4ff;
    color: #fff;
    transform: translateY(-2px);
}

.ww-icon {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}


/*
    Copyright Section End
*/

/* Responsive: nav + hero */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* Top bar menu */
.menu-top-bar-wrapper .nav-top-bar {
    background-color: #000 !important;
    padding: 10px;
}

@media only screen and (max-width: 767px) {
    .nav-top-bar p a {
        font-size: 16px !important;
    }

    .menu-top-bar-wrapper .nav-top-bar {
        text-align: center;
    }

    #how-it-works .section-header h2 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    .trust-container h2 {
        font-size: 2.2rem;
        margin-bottom: 2.3rem;
        line-height: 1.4;
    }
    .footer {
        padding: 20px;
    }
    .footer-container .row {
        display: block;
    }
    .custom-footer .copyright {
        padding: 20px;
    }
    .social-links ul {
        margin-top: 20px;
        display: block;
        text-align: center;
    }
    .copyright-text,
    .copyright-text + .by {
        text-align: center !important;
    }
    .copyright .footer-container {
        margin-bottom: 0;
    }
    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
    }   
    .cta-badges .badge:nth-child(2){
        max-width: 130px;
    }
    .industries .section-title {
        line-height: 1.4;
    }
    .trust-icon {
        flex: 0 0 48px;
    }
    .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    .about-content h2 {
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    .about-content h3.about-eyebrow {
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }
    .service-icon {
        margin-bottom: 0;
    }
    .about-stat-text {
        padding-left: 0;
        margin-top: 15px;
    }
    .custom-footer .copyright ul li a {    
        width: 40px !important;
        height: 40px !important;
        line-height: 40px !important;
        font-size: 25px !important;
    }
}

.nav-top-bar-inner a {
    text-decoration: none;
    font-size: 18px !important;
    color: #fff !important;
}

.nav-top-bar-inner {
    margin: 0 auto;
}
.card {
    background: #111827;
    padding: 2rem 2.5rem;
    border-radius: 14px;
    max-width: 480px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.8);
}

/* Contact Page*/

/* ===========================
   CONTACT PAGE LAYOUT
   =========================== */

.contact-hero {
    padding: 60px 0;
    background: #ffffff;
}

.contact-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Two-column grid */
.contact-grid {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 24px;
    align-items: flex-start;
}

/* Mobile: stack columns */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* LEFT COLUMN */
.contact-info .page-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-info .page-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-description {
    margin-bottom: 1.5rem;
    max-width: 580px;
}

.contact-block {
    margin-bottom: 1.25rem;
}

.contact-block h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

/* RIGHT COLUMN – FORM CARD */
.contact-form-wrapper {
    width: 100%;
}

.form-card {
    background: #0a1725;              /* dark navy card */
    border-radius: 10px;
    padding: 24px 24px 28px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.form-card-landing {
    background: #94A3B8;     /* New lighter bg */
    border-radius: 10px;
    padding: 24px 24px 28px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    color: #0a1628;          /* Dark text for contrast */
}

.form-card-landing input,
.form-card-landing textarea {
    background: #64748B;     /* matching slate */
    border: 1px solid #475569;
    color: #ffffff;
}

.btn-submit-landing {
    background: #38BDF8;      /* Perfect match */
    color: #0a1628;
    font-weight: 700;
    border-radius: 999px;
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-submit-landing:hover {
    background: #0EA5E9;
}

.form-title {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.form-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Form fields */
.form-card .form-group {
    margin-bottom: 1rem;
}

.form-card label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.form-card input,
.form-card textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #1c2735;
    background: #172334;
    padding: 10px 12px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
}

.form-card input:focus,
.form-card textarea:focus {
    border-color: #00c4ff;
    box-shadow: 0 0 0 1px rgba(0, 196, 255, 0.55);
}

.form-card textarea {
    min-height: 110px;
    resize: vertical;
}

/* Button */
.btn-submit {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 10px 20px;
    border-radius: 999px;
    border: none;
    background: #00c4ff;
    color: #031019;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
}

.btn-submit:hover {
    background: #04aee0;
    box-shadow: 0 10px 20px rgba(0, 196, 255, 0.3);
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Keep your form background color */
.form-card {
    background: #94A3B8;
}

/* 2-column grid */
.uid-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 30px;
    margin-bottom: 20px;
}

/* Each column */
.uid-form-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Full-width fields */
.full-width {
    grid-column: 1 / -1;
}

/* Inputs + selects use your existing colors */
.form-card input,
.form-card select,
.form-card textarea {
    background: #64748B;
    border: 1px solid #475569;
    color: #ffffff;
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
}

/* Mobile: stack columns */
@media (max-width: 800px) {
    .uid-form-grid {
        grid-template-columns: 1fr;
    }
}


/* Map */
/* ===========================
   CONTACT PAGE - MAP SECTION
   =========================== */

.contact-map-section {
    padding: 50px 0 60px;
    background: #f4f7fb; /* light background so map pops */
}

.contact-map-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-map-title {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
    text-align: center;
}

.contact-map-text {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 1.8rem;
    font-size: 0.95rem;
    color: #444;
}

.contact-map-embed iframe {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.breadcrumb {
    margin: 20px 0 10px;
    font-size: 0.85rem;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
    color: #7a8895;
}

.breadcrumb a {
    color: #00c4ff;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb li::after {
    content: "›";
    margin-left: 6px;
    margin-right: 6px;
    color: #b4c0ca;
    font-size: 0.85rem;
}

.breadcrumb li:last-child {
    color: #031019;
    font-weight: 700;
}

.breadcrumb li:last-child::after {
    content: "";
}

/* Make this group left-aligned */
.consent-row {
    text-align: left !important;
}

/* Put checkbox + text next to each other */
.consent-inline {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
}

/* OVERRIDE the global .form-card input { width:100% } for checkboxes */
.form-card input[type="checkbox"] {
    width: auto !important;
    display: inline-block !important;
    background: transparent;
    box-shadow: none;
}

/* CARD CONTAINER */
.uid-contact-card {
    max-width: 1100px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
    padding: 30px 35px;
}

/* GRID (2 columns desktop) */
.uid-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
    margin-bottom: 20px;
}

.uid-form-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.full-width {
    margin-top: 18px;
}

/* FORM GROUP */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
}

.form-group label {
    font-weight: 500;
}

/* INPUT SHELL LIKE THE MODEL */
.input-shell {
    position: relative;
    display: flex;
    align-items: center;
    background: #f9fafb;
    border-radius: 12px;
    padding: 0 16px 0 54px;
    min-height: 60px;
    box-shadow: 0 8px 25px rgba(15, 183, 107, 0.05);
    transition: box-shadow 0.18s ease, background-color 0.18s ease, border 0.18s ease;
    border: 1px solid transparent;
}

.input-shell textarea {
    padding-top: 18px;
    padding-bottom: 18px;
}

/* ICON LEFT */
.input-icon {
    position: absolute;
    left: 16px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #e9f0fb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #515154;
    font-size: 14px;
}

/* INPUT / SELECT / TEXTAREA */
.input-shell input,
.input-shell select,
.input-shell textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #111827;
}

.input-shell select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* simple custom arrow */
.input-shell select::-ms-expand {
    display: none;
}

/* VALIDATION STATE CIRCLE RIGHT */
.validation-state {
    position: absolute;
    right: 18px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.18s ease;
}

/* valid */
.form-group.valid .input-shell {
    border-color: #00c853;
    background: #f5fffb;
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.15);
}

.form-group.valid .validation-state {
    opacity: 1;
    transform: scale(1);
    border-color: #00c853;
    background: #00c853;
    color: #ffffff;
}

.form-group.valid .validation-state::before {
    content: "\f00c"; /* fa-check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* invalid */
.form-group.invalid .input-shell {
    border-color: #ff5252;
    background: #fff6f6;
}

.form-group.invalid .validation-state {
    opacity: 1;
    transform: scale(1);
    border-color: #ff5252;
    background: #ff5252;
    color: #ffffff;
}

.form-group.invalid .validation-state::before {
    content: "\f00d"; /* fa-times */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* CONSENT */
.consent-row {
    margin-top: 18px;
}

.consent-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
}

.consent-inline input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.consent-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 2px solid #e5f7ec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.18s ease;
    background: #ffffff;
}

/* checked visual */
.consent-inline input:checked + span + span,
.consent-inline input:checked ~ .consent-icon {
    /* nothing – order is different, easier from JS if needed */
}

.consent-inline input:checked ~ .consent-icon {
    border-color: #e9f0fb;
    background: #e9f0fb;
    color: #515154;
}

.consent-inline a {
    color: #515154;
    text-decoration: none;
}

.consent-inline a:hover {
    text-decoration: underline;
}

/* BUTTON */
.btn-submit {
    margin-top: 22px;
    padding: 14px 32px;
    background: #e9f0fb;
    color: #515154;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 14px 35px rgba(0, 200, 83, 0.3);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.uid-contact-card .btn-submit {
    box-shadow: none !important;
}

.btn-submit:hover {
    background: #515154;
    color: #fff;
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.24);
}

/* MODAL */
.uid-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.uid-modal.show {
    display: flex;
}

.uid-modal-inner {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 28px 22px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35);
}

.uid-modal-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 12px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* success modal */
.uid-modal.success .uid-modal-icon {
    background: #e9f0fb;
    color: #515154;
}

/* danger modal */
.uid-modal.danger .uid-modal-icon {
    background: #e9f0fb;
    color: #515154;
}

#uidModalTitle {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

#uidModalMessage {
    margin: 0 0 16px;
    font-size: 14px;
    color: #4b5563;
}

/* modal button */
.uid-modal-btn {
    padding: 9px 24px;
    border-radius: 999px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background: #e9f0fb;
    color: #515154;
}

/* responsive */
@media (max-width: 768px) {
    .uid-form-grid {
        grid-template-columns: 1fr;
    }

    .uid-contact-card {
        padding: 22px 18px;
    }
}
.uid-form-grid .form-group label {
    color: #000 !important;
}
.uid-form-grid .form-group {
    margin-bottom: 0;
}

.uid-contact-card .form-group label {
    color: #000 !important;
}

.uid-contact-card .captcha-group label {
    margin-bottom: 15px;
}

.form-group .cf-flex {
    display: flex;
    position: relative;
}
.cf-flex .cf-term-text {
    color: #000 !important;
}
/* wrapper so we can position button relative to the field */
.captcha-group {
    position: relative;
}

/* container for code + input */
.captcha-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* green code box */
.captcha-code-box {
    background: #e9f0fb;
    color: #515154;
    font-weight: 600;
    font-size: 17px;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
}

/* input */
.captcha-container input {
    flex: 1;
    min-height: 54px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 15px;
    outline: none;
    background: #f9fafb !important;
    color: #000 !important;
    box-shadow: 0 8px 25px rgba(15, 183, 107, 0.05);
}

/* validation circle if you use the same pattern */
.captcha-container .validation-state {
    position: absolute;
    right: 10px;
    top: 15px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
}

/* separate refresh button – top-right of the captcha area */
.captcha-refresh-btn {
    top: -14px;   /* control vertical offset */
    left: 24px; /* control horizontal offset */
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    z-index: 1;
    position: absolute;
    background: #e9f0fb;
    color: #515154;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: background 0.18s ease, transform 0.18s ease;
}

.captcha-refresh-btn:hover {
    background: #e9f0fb;
    transform: translateY(-1px);
}

.captcha-refresh-btn:active {
    transform: translateY(0);
}

/* inline SVG icon */
.captcha-refresh-icon {
    width: 18px;
    height: 18px;
    display: block;
}
/* mark the input-shell that holds custom select */
.input-shell.uid-select-wrapper {
    position: relative;
}

/* hide original select but keep it for form + validation */
.uid-select-native-hidden {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

/* trigger sits where the select text usually is */
.uid-select-trigger {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 15px;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* label inside trigger */
.uid-select-label {
    flex: 1;
}

/* when a value is chosen, text becomes dark */
.uid-select-wrapper.uid-select-has-value .uid-select-label {
    color: #111827;
}

/* right arrow bubble */
.uid-select-arrow {
    margin-left: 12px;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #e9f0fb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #515154;
    font-size: 11px;
    transition: transform 0.18s ease;
}

.uid-select-wrapper.uid-select-open .uid-select-arrow {
    transform: rotate(180deg);
}

/* dropdown panel */
.uid-select-menu {
    position: absolute;
    left: 0;      /* lines up under text (because input-shell has left padding 54px) */
    right: 0;
    top: calc(100% + 8px);
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    max-height: 320px;
    overflow-y: auto;
    z-index: 30;
    display: none;
}

.uid-select-wrapper.uid-select-open .uid-select-menu {
    display: block;
}

/* each option row */
.uid-select-option {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    font-size: 14px;
    color: #111827;
    cursor: pointer;
}

/* left circular icon for each row */
.uid-select-option-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #e9f0fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #515154;
    font-size: 13px;
}

/* divider between rows */
.uid-select-option + .uid-select-option {
    border-top: 1px solid #f3f4f6;
}

/* hover / active state – main green background */
.uid-select-option:hover,
.uid-select-option.selected {
    background: #e9f0fb;
    color: #515154;
}

.uid-select-option:hover .uid-select-option-icon,
.uid-select-option.selected .uid-select-option-icon {
    background: #e9f0fb;
    color: #515154;
}

/* scrollbar */
.uid-select-menu::-webkit-scrollbar {
    width: 6px;
}
.uid-select-menu::-webkit-scrollbar-thumb {
    background: #e9f0fb;
    border-radius: 999px;
}
/* On mobile, make logo a bit smaller so it doesn’t dominate */
@media (max-width: 768px) {
    .hero-left-landing h1 {
        font-size: 1.5em;
    }
    .hero-content-landing {
        display: block;
    }
    .contact-grid {
        display: block !important;
    }
    .contact-hero {
        padding: 40px 0;
    }
}


.uid-hardware-section {
    padding: 4rem 0;
    background: #f7f9fc;
}

.uid-container {
    width: min(1120px, 100% - 2.5rem);
    margin-inline: auto;
}

.uid-hardware-header {
   /* max-width: 680px; */
    margin: 0 auto 2.5rem;
    text-align: center;
}

.uid-hardware-header h2 {
    font-size: clamp(1.9rem, 2.4vw, 2.3rem);
    margin-bottom: 0.75rem;
}

.uid-hardware-header p {
    font-size: 0.98rem;
    color: #555;
}

.uid-hardware-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.uid-hardware-item {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.uid-hardware-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

.uid-hardware-media {
    position: relative;
    overflow: hidden;
}

.uid-hardware-media img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 210px;
}

.uid-hardware-tag {
    position: absolute;
    left: 0.85rem;
    bottom: 0.9rem;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.84);
    color: #fff;
}

.uid-hardware-body {
    padding: 1.15rem 1.25rem 1.3rem;
}

.uid-hardware-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.uid-hardware-body p {
    font-size: 0.94rem;
    color: #555;
    line-height: 1.5;
}

.uid-hardware-footer {
    text-align: center;
    margin-top: 2rem;
}

.uid-hardware-link {
    display: inline-block;
    font-size: 0.95rem;
    text-decoration: none;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid currentColor;
}

.uid-hardware-desc {
    margin-bottom: 2rem; /* adjust value as needed */
}


/* PRIMARY CTA */
.btn.btn-miami-cta {
    background: #00d4ff;          /* same as homepage CTA */
    color: #0b1c2d;
    font-size: 0.95rem;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* SECONDARY CTA */
.btn.miami-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 0.95rem;
    padding: 11px 20px;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
a:active,
a:visited,
a:focus {
    text-decoration: none;
    outline: none;
}
.logo-text a,
.logo-text a:visited,
.logo-text a:hover,
.logo-text a:focus {
    text-decoration: none;
    outline: none;
    color: transparent;
    -webkit-tap-highlight-color: transparent;
}