:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-card-hover: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-accent: #3b82f6;
    --accent-blue: #0c8ba9;
    --accent-green: #22c55e;
    --accent-purple: #a855f7;
    --accent-cyan: #06b6d4;
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    --gradient-secondary: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --gradient-card: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(34, 197, 94, 0.04) 100%);
    --glow-blue-glow: 0 0 30px rgba(59, 130, 246, 0.25);
    --green-glow: 0 0 30px rgba(34, 197, 94, 0.25);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-medium: rgba(0, 0, 0, 0.15);
    --border-strong: rgba(0, 0, 0, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", "Roboto", "Helvetica Neue", sans-serif;
    background: #f8fafc;
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-sm);
}
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: #fff;
    text-shadow:
        0 0 4px rgb(59 130 246 / 0.25),
        0 0 8px rgb(139 92 246 / 0.2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.sub-h1 {
    background: #0c8ba9;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    text-shadow: unset;
}
h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}
p {
    margin-bottom: var(--spacing-sm);
}
a {
    color: var(--text-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.industries {
    color: #fff;
    background: #132e6a;
}
.industries li {
    color: white !important;
}
a:hover {
    color: #2563eb;
}
ul {
    list-style-position: inside;
}
.mb {
    margin-bottom: var(--spacing-lg);
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}
@media (min-width: 1536px) {
    .container {
        max-width: 1400px;
    }
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #258ca817;
    border-bottom: 1px solid var(--border-medium);
    box-shadow: 0 4px 24px rgb(0 0 0 / 0.4);
    transition: all var(--transition-base);
}
.site-header.scrolled {
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--border-medium);
    background: #e6f0f6;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    gap: var(--spacing-lg);
}
.logo a {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    transition: transform var(--transition-fast);
}
.logo a:hover {
    transform: translateY(-2px);
}
.logo img {
    aspect-ratio: 512 / 180;
}
.main-nav ul {
    display: flex;
    gap: var(--spacing-xs);
    list-style: none;
    align-items: center;
}
.main-nav a {
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    color: #1e293b;
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition-base);
    white-space: nowrap;
}
.main-nav a::after {
    content: "";
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: #0c8ba9;
    border-radius: var(--radius-full);
    transition: transform var(--transition-base);
}
.main-nav a:hover,
.main-nav a.active {
    color: #0c8ba9;
}
.main-nav a:hover::after,
.main-nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #fff0;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    margin-right: 1rem;
}
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.2), transparent);
    transition: left var(--transition-slow);
}
.btn:hover::before {
    left: 100%;
}
.btn-primary {
    color: #fff;
    box-shadow: 0 4px 16px rgb(59 130 246 / 0.3);
    background: #0c8ba9;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(59 130 246 / 0.5);
    color: #fff;
    border-color: #0c8ba9;
    background: #fff0;
}
.btn-primary1:hover {
    color: #0c8ba9 !important;
}
.btn-secondary {
    border-color: #0c8ba9;
    color: #fff;
    background: #fff0;
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgb(59 130 246 / 0.12);
    border-color: #fff;
    color: #0c8ba9;
}
.btn-outline {
    background: #f8fafc;
    color: var(--text-primary);
}
.btn-outline:hover {
    background: #fff;
    border-color: #0c8ba9;
    color: #0c8ba9;
}
.hero {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
    background: #132e6a;
}
.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgb(59 130 246 / 0.12) 0%, transparent 70%);
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgb(34 197 94 / 0.08) 0%, transparent 70%);
    filter: blur(80px);
    animation: float 25s ease-in-out infinite reverse;
}
@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-content h1 {
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-ai-first {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.25rem;
    background: rgb(34 197 94 / 0.1);
    border: 1px solid #11cfe2;
    border-radius: var(--radius-full);
    color: #11cfe2;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-ai-first::before {
    content: "✨";
    font-size: 1.25rem;
}
.about-us {
    display: inline-block;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.25rem;
    background: #fff;
    border: 2px solid #0c8ba9;
    border-radius: 2rem;
    color: #0f172a;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.3s both;
    max-width: 40vw;
}
.about-us::before {
    content: "🎯";
    font-size: 1.25rem;
    padding-right: 10px;
}
.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-deo {
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: var(--spacing-sm);
    background: rgb(59 130 246 / 0.05);
    border-left: 3px solid #06b6d4;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: #1e293b;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    cursor: pointer;
    background: #fff;
}
.hero-deo strong {
    color: var(--text-accent);
    font-weight: 600;
}
.hero-visual {
    display: flex;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.6s both;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.hero-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-xl);
    max-width: 400px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
}
.hero-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity var(--transition-slow);
}
.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgb(59 130 246 / 0.3);
    border-color: var(--accent-blue);
}
.hero-card:hover::before {
    opacity: 1;
}
.hero-card > * {
    position: relative;
    z-index: 1;
}
.hero-card h3 {
    margin: var(--spacing-sm) 0;
    font-size: 1.5rem;
}
.hero-card ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0 0;
}
.hero-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-medium);
    color: #0f172a;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-fast);
}
.hero-card li:last-child {
    border-bottom: none;
}
.hero-card li::before {
    content: "→";
    color: #06b6d4;
    font-weight: 700;
}
.hero-card li:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    background: #11cfe236;
    color: #06b6d4;
    border: 1px solid #06b6d485;
}
.badge::before {
    content: "●";
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
.section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}
.section-alt {
    background: #132e6a;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
    line-height: 1.8;
}
.section-title1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
    text-align: center;
    color: #e2e8f3;
}
.section-subtitle1 {
    font-size: 1.125rem;
    color: rgb(241 245 249 / 61%);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
    line-height: 1.8;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}
.product-card {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-base);
    overflow: hidden;
    perspective: 1000px;
    width: 100%;
    height: 250px;
    border: none;
    transform-style: preserve-3d;
  isolation: isolate;
}
.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: #0c8ba9;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #0c8ba9;
    transition: opacity var(--transition-base);
    backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.product-card:hover {
    /*transform: translateY(-8px);*/
     margin-top: -8px;
    box-shadow: var(--shadow-lg);
    background: var(--bg-card-hover);
    padding: 0;
}
.product-card:hover::before {
    transform: scaleX(1);
}
.product-card h2,
.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.product-card p {
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
}
.tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgb(59 130 246 / 0.08);
    color: var(--accent-blue);
    border: 1px solid rgb(59 130 246 / 0.25);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-top: var(--spacing-xs);
}
.pill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}
.pill {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-medium);
    transition: all var(--transition-base);
}
.pill:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    padding: 0;
}
.pill h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}
.pill p {
    color: var(--text-primary);
    line-height: 1.7;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}
.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-medium);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}
.feature-card::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(59 130 246 / 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}
.feature-card:hover {
    border-color: #0c8ba9;
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgb(99 102 241 / 0.08), rgb(147 197 253 / 0.12));
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.15);
}
.feature-card:hover::after {
    opacity: 1;
}
.feature-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
    background: #0c8ba9;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.feature-card p {
    position: relative;
    z-index: 1;
    color: var(--text-primary);
    line-height: 1.7;
}
.no-style-about {
    box-shadow: 0 8px 20px rgb(59 130 246 / 0.25);
}
.no-style-about:hover {
    border-color: #0c8ba9;
    transform: translateY(-20px) scale(1) !important;
    box-shadow:
        0 12px 28px rgb(0 0 0 / 0.15),
        0 4px 12px rgb(59 130 246 / 0.15) !important;
    background: #fff;
    z-index: 999;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 5rem;
    margin-top: var(--spacing-xl);
}
.ai-first-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}
.ai-first-grid > div {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-medium);
}
.ai-first-grid h3 {
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}
.ai-first-grid ul {
    list-style: none;
    padding: 0;
}
.ai-first-grid li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-primary);
    line-height: 1.7;
    border-bottom: 1px dashed #0c8ba9;
}
.ai-first-grid li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0c8ba9;
    font-weight: 700;
}
.deo-prompt {
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgb(59 130 246 / 0.08);
    border: 1px solid rgb(59 130 246 / 0.2);
    border-left: 4px solid var(--accent-blue);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin-top: var(--spacing-md);
    transition: all var(--transition-base);
    cursor: pointer;
}
.deo-prompt:hover {
    background: rgb(59 130 246 / 0.12);
    border-color: var(--accent-blue);
}
.deo-prompt strong {
    color: var(--text-accent);
    font-weight: 600;
    display: block;
    margin-top: 0.25rem;
}
.stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}
.stat {
    text-align: center;
    min-width: 200px;
}
.stat-value {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: var(--spacing-xs);
}
.stat-label {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}
.contact-form {
    max-width: 600px;
    margin: var(--spacing-xl) auto;
}
.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9375rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgb(59 130 246 / 0.1);
}
.contact-form textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}
.site-footer {
    padding: var(--spacing-2xl) 0 var(--spacing-md);
    border-top: 1px solid var(--border-medium);
    background: #dfe2e5;
    backdrop-filter: blur(10px);
}
.about-panel {
    background: #132e6a;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}
.footer-grid h4,
.footer-grid h5 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-size: 1.125rem;
}
.footer-grid p {
    color: var(--text-primary);
    line-height: 1.7;
}
.footer-grid ul {
    list-style: none;
}
.footer-grid li {
    margin-bottom: 0.5rem;
}
.footer-grid a {
    color: var(--text-primary);
    transition: color var(--transition-fast);
    display: inline-block;
}
.footer-grid a:hover {
    color: var(--text-accent);
    transform: translateX(4px);
}
.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-medium);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--text-primary);
}
.footer-bottom a {
    color: var(--text-primary);
}
.footer-bottom a:hover {
    color: var(--text-accent);
}
.centered {
    text-align: center;
    margin-top: var(--spacing-xl);
}
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    .hero-visual {
        justify-content: center;
    }
    .ai-first-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    .main-nav {
        display: none;
    }
    .header-cta {
        display: none;
    }
    .hero {
        padding: var(--spacing-xl) 0;
    }
    .hero-subtitle {
        font-size: 1.125rem;
    }
    .hero-cta {
        flex-direction: column;
    }
    .hero-cta .btn {
        width: 100%;
    }
    .product-grid,
    .pill-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }
    .contact-flex {
        display: block !important;
    }
    .about-us {
        max-width: 90% !important;
    }
    .about-card {
        max-width: 90% !important;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
    .hero-card {
        padding: var(--spacing-md);
    }
    .modal-box {
        padding: 22px;
    }
    .modal-box h2 {
        font-size: 20px;
    }
}
@media print {
    .site-header,
    .hero-cta,
    .footer-grid,
    .btn {
        display: none;
    }
    body {
        background: #fff;
        color: #000;
    }
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
@media (prefers-contrast: high) {
    :root {
        --bg-primary: #000;
        --text-primary: #fff;
        --border-subtle: #fff;
    }
}
.loading {
    opacity: 0.6;
    pointer-events: none;
}
.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    border-top-color: #fff0;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.llm-popup {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
.llm-popup.hidden {
    display: none;
}
.llm-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-primary);
    width: 300px;
    position: relative;
}
.llm-box h3 {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
}
.llm-choice {
    display: block;
    width: 100%;
    margin: 8px 0;
    padding: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    background: #0c8ba9;
    color: #fff;
    transition: all 0.25s ease;
}
.llm-choice:hover {
    border: 1px solid #0c8ba9;
    transform: translateX(-3px);
    background: #fff0;
    color: #0c8ba9;
    transform: translateX(-3px);
}
#closeLLM {
    position: absolute;
    right: 12px;
    top: 10px;
    cursor: pointer;
    font-size: 18px;
}
.ai-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.product-card:hover .flip-inner {
    transform: rotateY(180deg);
}
.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
     transform-style: preserve-3d;
}
.flip-front {
    z-index: 2;
}
.flip-back {
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8fafc;
}
.flip-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pill {
    perspective: 1200px;
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}
.pill .flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.pill:hover .flip-inner {
    transform: rotateY(180deg);
}
.pill .flip-front,
.pill .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}
.pill .flip-back {
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8fafc;
}
.pill .flip-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.pill:hover .flip-back img {
    transform: scale(1.05);
}
.case-grid-section {
    padding: 60px 0;
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: auto;
}
.case-item {
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.case-gradient-box {
    width: 100%;
    height: 200px;
    border-radius: 14px;
    background-image: url(../img/Proctorly_cta.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 16 / 9;
}
.bg-brahma {
    background-image: url(../img/BrahmaGPT_cta.jpg);
}
.bg-tender {
    background-image: url(../img/tenders_cta.jpg);
}
.case-gradient-text {
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}
.case-title {
    margin-top: 18px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}
.case-desc {
    margin: 12px 0 18px;
    color: var(--text-primary);
    font-size: 15px;
    flex-grow: 1;
}
.case-read {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    margin-top: auto;
}
@media (max-width: 900px) {
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}
.about-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-xl);
    max-width: 40vw;
    margin-top: 7rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
}
.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity var(--transition-slow);
}
.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgb(59 130 246 / 0.3);
    border-color: var(--accent-blue);
}
.about-card:hover::before {
    opacity: 1;
}
.values {
    width: 100%;
    background: #fff;
    color: #334155;
    border: 2px solid var(--border-medium);
    border-collapse: collapse;
}
.values th {
    background: #f1f5f9;
    color: #1e293b;
    font-weight: 600;
    padding: 12px;
    border-bottom: 2px solid var(--border-medium);
    text-align: left;
}
.values td {
    padding: 12px;
    border-bottom: 2px solid var(--border-medium);
    line-height: 1.5;
    color: #1e293b;
}
.values tr:hover {
    background: #f8fafc;
}
.about-subtitle {
    font-style: italic;
    position: relative;
    margin-top: 1rem;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    text-align: center;
    padding-right: 2rem;
    color: #fff;
}
.about-subtitle::before {
    content: "“";
    font-size: 26px;
    position: absolute;
    left: 5rem;
    top: -5px;
}
.about-subtitle::after {
    content: "”";
}
.product-brochure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}
.modal {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 0.85);
    backdrop-filter: blur(10px) saturate(140%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes popUp {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.modal-content {
    width: 380px;
    background: #dfe2e5;
    border-radius: 14px;
    padding: 32px 28px;
    color: var(--text-primary);
    border: 1px solid #dfe2e5;
    box-shadow:
        0 0 30px rgb(0 0 0 / 0.15),
        0 0 0 1px rgb(255 255 255 / 0.05) inset;
    animation: slideUp 0.35s ease-out;
}
@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.modal-content input {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    background: #f1f5f9;
    border: 1px solid #97999b;
    border-radius: 10px;
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.25s ease;
    box-shadow: 0 0 0 #fff0;
}
.modal-content input:hover {
    border-color: rgb(0 0 0 / 0.1);
}
.modal-content input:focus {
    border-color: #086e7f;
    box-shadow: 0 0 12px rgb(0 0 0 / 0.15);
    outline: none;
}
.btn-submit {
    width: 100%;
    padding: 14px;
    margin-top: 5px;
    background: #0c8ba9;
    border-radius: 10px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.btn-submit:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.15);
}
.btn-submit:active {
    transform: scale(0.98);
}
.modal-content .close {
    float: right;
    font-size: 28px;
    cursor: pointer;
    color: #0f172a;
    transition: 0.25s ease;
}
.modal-content .close:hover {
    color: var(--text-primary);
    transform: scale(1.2);
}
.modal-content h3 {
    margin: 0 0 20px 0;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
}
.industry-first-grid {
    display: grid;
    margin-top: var(--spacing-md);
}
.industry-first-grid > div {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    border: 1px solid var(--border-medium);
}
.industry-first-grid h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    margin-top: var(--spacing-sm);
}
.industry-first-grid ul {
    list-style: none;
    padding: 0;
}
.industry-first-grid li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-primary);
    line-height: 1.7;
}
.industry-first-grid li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0c8ba9;
    font-weight: 700;
}
.contact-page-dark .contact-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 25px;
    background: #f1f5f9;
    border-radius: 12px;
    box-shadow: 0 0 20px #dfe2e5;
    color: #0f172a;
    border: 1px solid #7c8789;
}
.contact-page-dark .contact-form label {
    display: block;
    margin: 12px 0 5px;
    font-weight: 600;
    color: #0f172a;
}
.contact-page-dark .contact-form input,
.contact-page-dark .contact-form textarea,
.contact-page-dark .contact-form select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    background: #f8fafc;
    color: #000;
    border: 1px solid #8d929d;
    outline: none;
    margin-bottom: 0;
}
.contact-page-dark .contact-form input:focus,
.contact-page-dark .contact-form textarea:focus,
.contact-page-dark .contact-form select:focus {
    box-shadow: unset;
    background: #fff;
}
.contact-page-dark .contact-form textarea {
    resize: vertical;
}
.contact-page-dark .contact-form button.btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    background: #0c8ba9;
    color: #fff;
    border: none;
    border-radius: 8px;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.25s;
    border: 1px solid #0c8ba9;
}
.contact-page-dark .contact-form button.btn-primary:hover {
    background: #fff;
    border: 1px solid #0c8ba9;
    color: #0c8ba9;
    box-shadow: unset;
}
.contact-page-dark .contact-form table td {
    padding-right: 10px;
}
.contact-page-dark #captchaBox {
    width: 120px !important;
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
}
.contact-page-dark button[onclick="generateCaptcha()"] {
    width: auto;
    margin-left: 10px;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 8px;
    background: #3258a8;
    border: none;
    color: #fff;
}
.contact-page-dark button[onclick="generateCaptcha()"]:hover {
    background: #2a4b8c;
}
.contact-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.contact-flex div {
    flex: 1;
}
.form-flex {
    flex: 1;
    max-width: 500px;
}
.req {
    color: #ff4d4d;
}
.error {
    color: #ff4d4d;
    font-size: 14px;
}
.contact-panel {
    margin-bottom: 2rem;
}
.countryCode {
    width: 100px !important;
}
.phoneInput {
    width: 100%;
}
.contact-panel .phone-col {
    width: 100%;
}
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 0.75);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.35s ease;
}
.modal-box {
    width: 420px;
    max-width: 92%;
    background: #f1f5f9;
    border: 1px solid rgb(255 255 255 / 0.08);
    padding: 30px;
    border-radius: 14px;
    color: #0f172a;
    box-shadow: 0 0 25px rgb(0 0 0 / 0.1);
    animation: popUp 0.35s ease;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    cursor: pointer;
    color: #0f172a;
    transition: 0.2s;
}
.modal-box h2 {
    margin-bottom: 20px;
    font-size: 23px;
    font-weight: 600;
    color: #0f172a;
}
.modal-box input,
.modal-box textarea {
    width: 100%;
    padding: 12px;
    margin: 6px 0 16px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #fff;
    color: #0f172a;
    font-size: 15px;
    transition: 0.2s;
}
.modal-box input:focus {
    border-color: #0c8ba9;
    box-shadow: 0 0 6px rgb(61 139 255 / 0.4);
    outline: none;
}
.slot-box input[type="radio"] {
    display: none;
}
.slot-card {
    display: inline-block;
    padding: 12px 16px;
    margin: 8px 6px 0 0;
    background: #dfe2e5;
    color: #0f172a;
    border-radius: 12px;
    border: 1px solid #333;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    min-width: 110px;
    transition: all 0.25s ease;
    vertical-align: top;
}
.slot-card:hover {
    border-color: #0c8ba9;
    color: #0f172a;
    background: #fff;
    transform: translateY(-2px);
}
.slot-box input[type="radio"]:checked + .slot-card {
    background: #0c8ba9;
    color: #0f172a;
    border-color: #0c8ba9;
    box-shadow: 0 4px 15px rgb(61 139 255 / 0.35);
    transform: translateY(-2px);
}
.slot-card .slot-date {
    display: block;
    font-size: 13px;
    color: #0f172a;
    margin-bottom: 4px;
}
.slot-card .slot-time {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}
@media (max-width: 480px) {
    .slot-card {
        min-width: 90px;
        padding: 10px 12px;
        font-size: 13px;
    }
    .slot-card .slot-date {
        font-size: 12px;
    }
    .slot-card .slot-time {
        font-size: 14px;
    }
}
#customTimeBox {
    padding: 12px;
    background: #dfe2e5;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    margin-top: 10px;
}
.submit-btn {
    width: 100%;
    background: #0c8ba9;
    padding: 12px;
    margin-top: 12px;
    border-radius: 8px;
    border: 1px solid #0c8ba9;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}
.submit-btn:hover {
    background: #fff;
    color: #0c8ba9;
}
.no-tick::before {
    visibility: hidden;
}
.captcha-panel label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}
.captcha-panel .req {
    color: red;
}
.captcha-panel > div:first-of-type,
.captcha-panel .captcha-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
#captchaBox {
    width: 110px;
    height: 42px;
    border: 1px solid #9ca3af;
    border-radius: 8px;
    background: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    color: #000;
    cursor: default;
    margin: 0;
}
.captcha-panel button {
    height: 32px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: 16px;
    background: #3b4cca;
    color: #fff;
    cursor: pointer;
}
.captcha-panel button:hover {
    background: #2f3fae;
}
#captchaInput {
    width: 100%;
    margin-top: 14px;
    padding: 10px 12px;
    border: 1px solid #9ca3af;
    border-radius: 10px;
    font-size: 14px;
}
#captchaInput::placeholder {
    color: #6b7280;
}
.error {
    margin-top: 4px;
    font-size: 12px;
    color: red;
}
#brochureModal .modal-content input {
    margin-bottom: 0px !important;
    margin-top: 1rem;
}
