:root {
    --bg: #f1f6ff;
    --blue: #2563eb;
    --green: #10b981;
    --accent-light: rgba(37, 99, 235, 0.08);
    --text: #0f172a;
    --muted: #607d94;
    --card: #ffffff;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    --border: rgba(15, 23, 42, 0.08);
}

.text-white {
    color: #ffffff !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 2.5s ease-out forwards;
    opacity: 0;
}

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

body {
    font-family: 'Manrope', 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, #f7f9ff 0%, #f1f6ff 45%, #f9fbff 100%);
    color: var(--text);
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 32px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(241, 246, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.site-header.transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
    box-shadow: none;
}

.site-header.transparent .logo span {
    color: #fff;
}

.site-header.transparent .main-nav {
    color: rgba(255, 255, 255, 0.85);
}

.site-header.transparent .main-nav a:hover,
.site-header.transparent .main-nav a.active {
    color: #fff;
}

/* Transparent header specific: strict active targeting */
.site-header.transparent .main-nav a.active::after {
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    content: '' !important;
    display: block !important;
}

/* Ensure non-active links in transparent header NEVER have an underline */
.site-header.transparent .main-nav a:not(.active)::after {
    content: none !important;
    display: none !important;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--blue);
    font-weight: 700;
}

.logo img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

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

.logo strong,
.logo-text strong {
    display: block;
}

.logo small,
.logo-text small {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--muted);
}

.main-nav {
    display: flex;
    gap: 28px;
    font-weight: 500;
    color: var(--muted);
}

/* Ensure no underline by default */
.main-nav a {
    color: inherit;
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    border: none !important;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--blue);
}

/* Clear any accidental pseudo-elements on non-active links */
.main-nav a::after {
    content: none !important;
    display: none !important;
}

/* Only show underline on active links */
.main-nav a.active::after {
    content: '' !important;
    display: block !important;
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--blue), #22d3ee);
    transform: translateX(-50%);
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.95rem;
}

.primary-cta {
    background: linear-gradient(120deg, var(--blue), #3b82f6);
    color: white;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.ghost-cta {
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 600;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.8);
}

main {
    overflow: hidden;
}

.will-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.7rem, 4vw, 4.4rem);
    line-height: 1.1;
    margin: 16px 0;
}

.hero-copy h1 span {
    color: var(--green);
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--blue);
    background: rgba(37, 99, 235, 0.1);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
}

.tag {
    color: var(--blue);
    font-weight: 600;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
}

.lead {
    margin: 24px 0 32px;
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}

.hero-ctas .primary-cta {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
}

.hero-meta {
    display: flex;
    gap: 24px;
    align-items: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.partners {
    display: flex;
    gap: 18px;
    color: var(--muted);
    letter-spacing: 0.1em;
    font-weight: 600;
}

.hero-media {
    position: relative;
}

.media-frame {
    border-radius: 36px;
    box-shadow: 0 35px 60px rgba(15, 23, 42, 0.18);
    padding: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(209, 233, 255, 0.85));
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
}

.media-frame img {
    width: 100%;
    border-radius: 28px;
    display: block;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.hero-image-hidden {
    opacity: 0;
}

.hero-video {
    position: absolute;
    inset: 12px;
    border-radius: 28px;
    overflow: hidden;
}

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

.hero-video.hidden {
    display: none;
}

.media-chip {
    position: absolute;
    background: #fff;
    border-radius: 18px;
    padding: 16px 22px;
    box-shadow: var(--shadow);
    display: inline-flex;
    flex-direction: column;
    min-width: 140px;
}

.media-chip strong {
    font-size: 1.5rem;
    color: var(--blue);
}

.media-chip span {
    font-size: 0.85rem;
    color: var(--muted);
}

.chip-top {
    top: -16px;
    right: 12px;
    background: rgba(16, 185, 129, 0.95);
    color: #fff;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.chip-top strong {
    color: #fff;
}

.chip-top span {
    color: rgba(255, 255, 255, 0.85);
}

.chip-bottom {
    left: -20px;
    bottom: 10px;
}

.solutions {
    padding: 80px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-head h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 12px 0;
}

.section-head p {
    color: var(--muted);
}

.solution-card {
    background: var(--card);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.solution-card ul {
    list-style: none;
    margin: 20px 0;
    color: var(--muted);
}

.solution-card li {
    padding-left: 18px;
    margin-bottom: 12px;
    position: relative;
}

.solution-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.accent-blue li::before {
    background: var(--blue);
}

.accent-green li::before {
    background: var(--green);
}

.solution-card a {
    color: var(--blue);
    font-weight: 600;
}

.stats-grid {
    display: grid;
    gap: 24px;
    margin-top: 48px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-card .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
}

.instrument {
    padding: 100px 0;
}

.instrument-card {
    background: linear-gradient(135deg, rgba(238, 244, 255, 0.8), rgba(225, 239, 254, 0.9));
    border-radius: 36px;
    padding: clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.12);
}

.instrument-text h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    margin: 12px 0 16px;
}

.instrument-text h2 span {
    color: var(--blue);
}

.section-label {
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.instrument-desc {
    color: var(--muted);
    margin-bottom: 28px;
}

.instrument-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.instrument-feature {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    gap: 12px;
    box-shadow: 0 15px 25px rgba(15, 23, 42, 0.08);
}

.instrument-feature h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.instrument-feature p {
    color: var(--muted);
    font-size: 0.9rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.instrument-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.deep-btn {
    background: #0b1b3a;
    color: #fff;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 20px 40px rgba(11, 27, 58, 0.4);
}

.instrument-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.instrument-frame {
    position: relative;
    padding: 14px;
    border-radius: 32px;
    background: linear-gradient(145deg, #ffffff, #dbeafe);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
    width: 100%;
}

.instrument-frame img {
    border-radius: 24px;
    width: 100%;
    display: block;
}

.visual-badge {
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.visual-badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.7);
}

.products {
    padding: 80px 0 120px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    background: #edf2ff;
}

.product-card .info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-card .category {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--blue);
}

.product-card h3 {
    margin: 0;
}

.product-card p {
    color: var(--muted);
}

.product-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
}

.product-specs li {
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-spec-row .spec-label {
    color: var(--muted);
}

.product-spec-row .spec-value {
    margin-left: auto;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.product-card a {
    color: var(--green);
    font-weight: 600;
}

.page-hero {
    padding: 120px 0 40px;
}

.page-hero .lead {
    max-width: 720px;
    color: var(--muted);
}

.page-section {
    padding: 40px 0;
}

.page-section.muted {
    background: rgba(255, 255, 255, 0.7);
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: start;
}

.page-section.muted .split {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 48px;
    justify-items: center;
    text-align: center;
}

.page-section.muted .split>div {
    width: 100%;
    max-width: 460px;
}

.page-section.muted .timeline {
    text-align: left;
}

.pill-list {
    display: grid;
    gap: 16px;
}

.pill-card {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline {
    list-style: none;
    display: grid;
    gap: 16px;
}

.timeline span {
    font-weight: 600;
    color: var(--blue);
    margin-right: 12px;
}

.bullet-list {
    list-style: disc inside;
    color: var(--muted);
    display: grid;
    gap: 10px;
}

.stacked-list {
    list-style: none;
    display: grid;
    gap: 18px;
}

.stacked-list li {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.stacked-list h3 {
    margin-bottom: 8px;
}

.mission-card {
    margin-top: 24px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(37, 99, 235, 0.08);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.mission-card.compact {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-stack {
    display: grid;
    gap: 20px;
}

.news-card,
.career-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.news-card header,
.career-card header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.news-card time {
    font-size: 0.85rem;
    color: var(--muted);
}

.career-card header span {
    color: var(--blue);
    font-weight: 600;
}

.text-link {
    color: var(--blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.text-link::after {
    content: '→';
    font-size: 0.85em;
}

.legal-copy {
    display: grid;
    gap: 24px;
    color: var(--muted);
}

.site-footer {
    position: relative;
    background: #050c1d;
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 40px;
    margin-top: 0;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/home/poster-temp.jpg');
    background-size: cover;
    background-position: center bottom;
    opacity: 0.15;
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-mark {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.footer-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.site-footer h4 {
    margin-bottom: 16px;
    color: #fff;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.site-footer ul {
    list-style: none;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer li {
    margin-bottom: 10px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-list .contact-icon {
    flex-shrink: 0;
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    color: var(--blue);
}

.contact-list .contact-icon svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.floating-orbs {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.floating-orbs span {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 70%);
    animation: float 12s linear infinite;
}

.floating-orbs span:nth-child(2) {
    top: 40%;
    left: 70%;
    animation-duration: 16s;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25), transparent 70%);
}

.floating-orbs span:nth-child(3) {
    top: 70%;
    left: 10%;
    animation-duration: 18s;
}

@keyframes float {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(30px, -30px, 0) scale(1.1);
    }

    to {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@media (max-width: 768px) {
    .site-header .container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .main-nav {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding-top: 90px;
    }

    .hero-layout {
        gap: 32px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Unified Service Cards for Solutions Page */
.service-card-unified {
    padding: 20px 16px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card-unified:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-card-unified.bg-alt {
    background-color: #f8fafc;
}

.service-card-unified.bg-white {
    background-color: #ffffff;
}

.service-card-unified .card-num {
    font-size: 1.5rem;
    color: #cbd5e1;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.service-card-unified .card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}



/* =========================================
   Ultra Clean Product Design (Minimalist/Apple Style)
   ========================================= */

.product-card-premium {
    background: #ffffff;
    border-radius: 24px;
    /* Slightly tighter radius */
    /* No shadow by default, just border */
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 0;
    /* Keep gap managed by container */
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-center .container {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.product-center {
    padding-bottom: 80px;
}

@media (min-width: 1200px) {
    .product-center .container {
        gap: 96px;
    }
}

@media (min-width: 900px) {
    .product-card-premium {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* 50/50 Split */
        align-items: center;
        /* Center vertically */
        min-height: auto;
        /* Let content dictate height */
        border: none;
        /* Remove border in split view for cleaner look */
        gap: 60px;
        /* Large gap between image and text */
        background: transparent;
        /* Remove card bg */
        overflow: visible;
        /* Allow image to escape if needed */
    }

    /* Alternating Layout */
    .product-card-premium:nth-child(even) {
        direction: rtl;
        /* Flip visual order */
    }

    .product-card-premium:nth-child(even) .product-content {
        direction: ltr;
        /* Reset text direction */
        padding-left: 0;
        padding-right: 20px;
    }

    .product-card-premium:nth-child(even) .product-visual {
        justify-content: flex-start;
        /* Align image towards center */
    }
}

/* Visual Side */
.product-visual {
    position: relative;
    /* Soft solid background instead of gradient */
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    /* Taller visual area */
    box-shadow: inset 0 0 0 1px #f1f5f9;
    /* Subtle inner border */
}

/* Remove pattern for cleaner look */
.product-visual::before {
    display: none;
}

.product-index {
    display: none;
    /* Remove index number for cleaner look */
}

.product-img {
    width: 100%;
    max-width: 360px;
    /* Larger max width */
    object-fit: contain;
    filter: none;
    /* Clearer image */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-premium:hover .product-img {
    transform: scale(1.05) translateY(-5px);
}

/* Right Side: Content */
.product-content {
    padding: 30px 0;
    /* Vertical padding only */
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 900px) {
    .product-content {
        padding: 0;
        /* Reset */
    }
}

.product-category {
    font-size: 0.75rem;
    /* Smaller */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    /* Muted color */
    margin-bottom: 12px;
    background: transparent;
    /* No pill bg */
    padding: 0;
    /* Remove padding */
    display: block;
}

.product-category::before {
    display: none;
    /* Remove dot */
}

.product-title {
    font-size: 1.5rem;
    /* Reduced font size */
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.product-desc {
    font-size: 1rem;
    /* Reduced from 1.15rem */
    line-height: 1.6;
    color: #475569;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Highlights - Minimal List */
.highlights-container {
    margin-bottom: 24px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.highlights-label {
    display: none;
    /* Hide label, let content speak */
}

.highlights-grid {
    display: flex;
    flex-direction: column;
    /* Stack vertically for clarity */
    gap: 8px;
}

.highlight-item {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 0.9rem;
    /* Smaller text */
    color: #334155;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-item:hover {
    background: transparent;
}

.highlight-icon {
    width: 20px;
    /* Smaller icon container */
    height: 20px;
    background: transparent;
    color: #2563eb;
    border-radius: 0;
    display: flex;
    /* Keep icon */
}

.highlight-icon svg {
    width: 16px;
    /* Smaller icon */
    height: 16px;
    stroke-width: 2.5px;
}

/* Minimal Button - Black Style */
.btn-specs-premium {
    background: #000000;
    color: #ffffff;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 99px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-specs-premium:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.btn-specs-premium span {
    font-size: 1.1em;
    line-height: 1;
}

@media (max-width: 768px) {
    .product-title {
        font-size: 1.6rem;
    }

    .product-card-premium {
        border: 1px solid #e2e8f0;
        /* Keep border on mobile */
        border-radius: 20px;
    }
}


/* =========================================
           Premium Contact Page Design
           ========================================= */
.contact-page-wrapper {
    background: #f8fafc;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 80px;
}

.contact-hero-premium {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.contact-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
}

.contact-card-premium {
    background: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 800px) {
    .contact-card-premium {
        /* flex-direction: row;  Removed as we only have one column now */
        min-height: auto;
    }
}

/* Left: Info Side */
.contact-info-side {
    background: #0f172a;
    color: #fff;
    padding: 60px;
    flex: 2;
    background-image: radial-gradient(circle at top left, #1e293b, #0f172a);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.info-header p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 1rem;
}

.info-points {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 24px;
    height: 24px;
    color: #38bdf8;
    /* Light blue accent */
    flex-shrink: 0;
}

.info-text strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #e2e8f0;
}

.info-text span {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Right: Form Side */
.contact-form-side {
    flex: 3;
    padding: 60px;
    background: #fff;
}

.form-group-premium {
    margin-bottom: 28px;
}

.form-label-premium {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 10px;
}

.form-input-premium {
    width: 100%;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: #0f172a;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input-premium:focus {
    outline: none;
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-textarea-premium {
    min-height: 140px;
    resize: vertical;
}

.btn-submit-premium {
    width: 100%;
    background: #000000;
    color: #ffffff;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-premium:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.15);
}

/* Mobile adjustments */
@media (max-width: 600px) {

    .contact-info-side,
    .contact-form-side {
        padding: 40px 24px;
    }
}

/* Product Specs Modal */
.btn-view-specs {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #64748b;
    padding: 10px 24px;
    border-radius: 99px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.btn-view-specs:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

.modal-backdrop.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.modal-specs-table {
    display: grid;
    gap: 0;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 24px;
}

.modal-spec-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    border-bottom: 1px solid #e2e8f0;
}

.modal-spec-row:last-child {
    border-bottom: none;
}

.modal-spec-row span {
    padding: 16px 24px;
    font-size: 0.95rem;
}

.modal-spec-row span:first-child {
    font-weight: 500;
    color: #64748b;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
}

.modal-spec-row span:last-child {
    font-weight: 600;
    color: #0f172a;
}

/* =========================================
           Toast Notification
           ========================================= */
.toast-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.toast-premium {
    background: rgba(15, 23, 42, 0.95);
    padding: 12px 24px 12px 18px;
    border-radius: 99px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: auto;
    backdrop-filter: blur(8px);
}

.toast-premium.active {
    opacity: 1;
    transform: translateY(0);
}

.toast-premium.success {
    border-color: rgba(16, 185, 129, 0.3);
}

.toast-premium.error {
    border-color: rgba(239, 68, 68, 0.3);
}

.toast-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-premium.success .toast-icon {
    background: #10b981;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.toast-premium.error .toast-icon {
    background: #ef4444;
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.toast-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 3;
}

.toast-message {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
}

/* Footer Center Navigation */
.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =========================================
   Main Business Section
   ========================================= */
.business-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    text-align: center;
    /* Center text */
    background: transparent;
    border-radius: 24px;
    overflow: visible;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    text-decoration: none;
    padding: 20px;
    border: none;
    position: relative;
    group: business-card;
}

.business-card:hover {
    transform: translateY(-8px);
}

.business-image-wrapper {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-bottom: 32px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    background: #f1f5f9;
}

.business-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 0;
}

.business-card:hover .business-image-wrapper img {
    transform: scale(1.08);
}

.business-content {
    /* Removed padding as we pad the parent now */
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.business-type {
    font-size: 0.85rem;
    color: var(--blue);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.business-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.business-desc {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 1.05rem;
    max-width: 320px;
    /* Limit width for better readability */
}

.business-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: #0f172a;
    padding: 12px 28px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.business-card:hover .business-link {
    gap: 8px;
    /* Reset header gap effect */
    background: var(--blue);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
}