/* ========================================
   Dinamik Bilişim - Modern Design System
   Based on Next.js original design
   ======================================== */

/* ========== CSS Variables ========== */
:root {
    /* Colors */
    --background: #ffffff;
    --foreground: #020617;
    --primary: #0f172a;
    --primary-foreground: #f8fafc;
    --secondary: #f1f5f9;
    --secondary-foreground: #0f172a;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-foreground: #f8fafc;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --card: #ffffff;
    --card-foreground: #020617;
    --border: #e2e8f0;
    --footer-bg: #020617;
    --footer-border: #1e293b;

    /* Spacing */
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 200ms ease;
    --transition-slow: 300ms ease;
}

/* ========== Reset & Base ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== Typography ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--muted-foreground);
}

/* ========== Layout ========== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ========== Glassmorphism Header ========== */
.main-header {
    position: fixed;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 100;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glass);
    padding: 0.75rem 0;
    transition: all var(--transition-slow);
}

.main-header.header-hidden {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 768px) {
    .main-header {
        left: 2rem;
        right: 2rem;
    }
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 48px;
    width: auto;
    transition: transform var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

/* Desktop Navigation */
.main-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    padding: 0.375rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
}

.main-nav a {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--accent);
    background: var(--secondary);
}

.main-nav a.active {
    background: white;
    color: var(--accent);
    box-shadow: var(--shadow-md);
}

/* Header Actions */
.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
    }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    transition: color var(--transition);
}

.phone-link:hover {
    color: var(--accent);
}

.phone-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.phone-link:hover .phone-icon {
    background: var(--accent);
    color: white;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: var(--secondary);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition);
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle:hover {
    background: var(--accent);
    color: white;
}

.mobile-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Mobile Navigation */
.mobile-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 360px;
    background: white;
    z-index: 200;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    visibility: hidden;
}

.mobile-nav.open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
}

.mobile-nav-body a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.mobile-nav-body a:hover,
.mobile-nav-body a.active {
    background: var(--accent);
    color: white;
}

.mobile-nav-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--secondary);
}

.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
}

.mobile-backdrop.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0s;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn:hover {
    transform: scale(1.05);
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--muted);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ========== Hero Section ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 50%, var(--primary) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Blob Animation */
.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blob 7s infinite;
}

.blob-1 {
    background: rgba(37, 99, 235, 0.3);
    top: -100px;
    left: -100px;
}

.blob-2 {
    background: rgba(139, 92, 246, 0.3);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

@keyframes blob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ========== Sections ========== */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== Cards ========== */
.card {
    background: var(--card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-body {
    padding: 1.5rem;
}

.card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: var(--secondary);
}

/* Product Card */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card .card-body h3 {
    margin-bottom: 0.5rem;
}

.product-card .card-body p {
    flex: 1;
    margin-bottom: 1rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ========== Page Header ========== */
.page-header-section {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    text-align: center;
}

.page-header-section h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-header-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
}

/* ========== Modern Footer ========== */
.main-footer {
    background: var(--footer-bg);
    color: white;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.5), transparent);
}

.footer-content {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand img {
    height: 48px;
    width: auto;
}

@media (max-width: 768px) {
    .footer-brand img {
        margin: 0 auto;
    }
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }
}

.social-link,
.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--footer-border);
    border-radius: var(--radius-full);
    color: #94a3b8;
    transition: all var(--transition);
}

.social-link:hover,
.social-icon:hover {
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.5);
    background: rgba(96, 165, 250, 0.1);
}

.footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition);
}

.footer-links a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: #60a5fa;
    margin-right: 0;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-links a:hover::before {
    width: 0.5rem;
    margin-right: 0.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .footer-contact-item {
        justify-content: center;
    }
}

.footer-contact-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #60a5fa;
    flex-shrink: 0;
}

.footer-contact-item a:hover {
    color: #60a5fa;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--footer-border);
}

.footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

.footer-copyright {
    color: #64748b;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #64748b;
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: #60a5fa;
}

/* ========== Forms ========== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--background);
    transition: all var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ========== Alerts ========== */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ========== Utilities ========== */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--muted-foreground);
}

.badge {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    background: var(--secondary);
}

.badge-success {
    background: #dcfce7;
    color: #166534;
}

.badge-draft {
    background: #fef3c7;
    color: #92400e;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--muted-foreground);
}

/* Content wrapper for inner page spacing */
.page-content {
    padding: 4rem 0;
}

.content-box {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.content-box h2 {
    margin-bottom: 1rem;
    color: var(--foreground);
}

.content-box h3 {
    margin: 2rem 0 0.75rem;
    color: var(--foreground);
}

.content-box p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-box ul {
    margin: 1rem 0 1rem 1.5rem;
}

.content-box li {
    margin-bottom: 0.5rem;
    color: var(--muted-foreground);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    font-size: 4rem;
}

.product-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    font-size: 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-meta {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.btn-link {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.btn-link:hover {
    text-decoration: underline;
    transform: none;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.contact-item a {
    color: var(--accent);
}

/* References */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
}

.reference-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.reference-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.reference-card img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    background: var(--card);
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--secondary);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform var(--transition);
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: white;
    color: #667eea;
}

.cta-section .btn-primary:hover {
    background: #f8fafc;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--muted-foreground);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ========== Special Hero Badge with Lines ========== */
.hero-badge-special {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-badge-special .badge-line {
    width: 2rem;
    height: 1px;
    background: rgba(59, 130, 246, 0.5);
}

.hero-badge-special span {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #60a5fa;
}

/* ========== Solutions Section ========== */
.solutions-section {
    position: relative;
    padding: 6rem 0;
    background: white;
    overflow: hidden;
}

.solutions-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background: linear-gradient(to left, rgba(239, 246, 255, 0.5), transparent);
    pointer-events: none;
}

.solutions-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.solutions-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #dbeafe;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.solutions-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.solutions-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

/* Solution Card */
.solution-card {
    position: relative;
    display: block;
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.5s ease;
}

.solution-card:hover {
    box-shadow: var(--shadow-xl), 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.solution-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.solution-card:hover .solution-overlay {
    opacity: 0.05;
}

.solution-blue .solution-overlay {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.solution-purple .solution-overlay {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.solution-orange .solution-overlay {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.solution-green .solution-overlay {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.solution-icon {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
}

.solution-blue .solution-icon {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.solution-purple .solution-icon {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.solution-orange .solution-icon {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.solution-green .solution-icon {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.solution-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}

.solution-card:hover h3 {
    color: var(--accent);
}

.solution-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.solution-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    opacity: 0;
    transform: translateX(1rem);
    transition: all var(--transition);
}

.solution-card:hover .solution-link {
    opacity: 1;
    transform: translateX(0);
}

.solutions-cta {
    text-align: center;
}

.btn-gradient {
    background: linear-gradient(to right, #2563eb, #3b82f6);
    color: white;
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.2);
}

.btn-gradient:hover {
    background: linear-gradient(to right, #3b82f6, #2563eb);
}

/* ========== CTA Gradient Section ========== */
.cta-gradient-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #581c87 100%);
}

.cta-blobs {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.cta-blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(48px);
    animation: blob 7s infinite;
}

.cta-blob-1 {
    top: 25%;
    left: 25%;
    background: #3b82f6;
}

.cta-blob-2 {
    top: 33%;
    right: 25%;
    background: #a855f7;
    animation-delay: 2s;
}

.cta-blob-3 {
    bottom: 25%;
    left: 50%;
    background: #ec4899;
    animation-delay: 4s;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.cta-badge-line {
    width: 2rem;
    height: 1px;
    background: rgba(250, 204, 21, 0.5);
}

.cta-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #facc15;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-gradient-text {
    background: linear-gradient(to right, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-white:hover {
    box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.2);
}

.btn-white svg {
    transition: transform var(--transition);
}

.btn-white:hover svg {
    transform: translateX(4px);
}

.btn-glass-dark {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.btn-glass-dark:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Footer link line animation */
.footer-links a {
    display: flex;
    align-items: center;
}

.footer-links .link-line {
    display: inline-block;
    width: 0;
    height: 1px;
    background: #60a5fa;
    margin-right: 0;
    transition: all var(--transition);
}

.footer-links a:hover .link-line {
    width: 0.5rem;
    margin-right: 0.5rem;
}

/* ========== Navigation Dropdown ========== */
.nav-item {
    position: relative;
}

.nav-item>a,
.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-item>a:hover,
.nav-dropdown-trigger:hover {
    color: var(--accent);
    background: var(--secondary);
}

.nav-item>a.active {
    background: white;
    color: var(--accent);
    box-shadow: var(--shadow-md);
}

.has-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(90deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    padding-top: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.5rem);
    transition: all var(--transition);
}

.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    background: white;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    white-space: nowrap;
    min-width: 220px;
}

.nav-dropdown {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem;
}

.nav-dropdown a:hover {
    background: var(--secondary);
    color: var(--accent);
}

.nav-dropdown a svg {
    opacity: 0;
    transform: translateX(-0.5rem);
    transition: all var(--transition);
    color: var(--accent);
}

.nav-dropdown a:hover svg {
    opacity: 1;
    transform: translateX(0);
}

/* ========== New Hero Section ========== */
.new-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    padding: 8rem 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 23, 42, 0.2) 50%, rgba(15, 23, 42, 0.8) 100%);
}

.new-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.new-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text-cyan {
    background: linear-gradient(to right, #60a5fa, #93c5fd, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.stat-dot-green {
    background: #4ade80;
}

.stat-dot-blue {
    background: #60a5fa;
    animation-delay: 0.5s;
}

.stat-dot-purple {
    background: #a78bfa;
    animation-delay: 1s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(0.5rem);
    }
}

/* ========== Chatbot Widget ========== */
.chatbot-trigger {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    z-index: 40;
    transition: all var(--transition);
}

.chatbot-trigger:hover {
    transform: scale(1.1);
}

.chatbot-trigger.hidden {
    opacity: 0;
    pointer-events: none;
}

.chatbot-widget {
    position: fixed;
    bottom: 0;
    left: 1rem;
    z-index: 50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chatbot-header {
    background: linear-gradient(to right, #1e293b, #0f172a);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatbot-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
}

.chatbot-header h3 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.chatbot-header p {
    color: #94a3b8;
    font-size: 0.75rem;
    margin: 0;
}

.chatbot-close {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background var(--transition);
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    height: 18rem;
    overflow-y: auto;
    padding: 1rem;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    gap: 0.5rem;
}

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-avatar {
    width: 1.75rem;
    height: 1.75rem;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2563eb;
}

.message-content {
    max-width: 75%;
    padding: 0.75rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    line-height: 1.5;
}

.bot-message .message-content {
    background: white;
    color: var(--foreground);
    border: 1px solid var(--border);
    border-bottom-left-radius: 0.25rem;
}

.user-message .message-content {
    background: var(--accent);
    color: white;
    border-bottom-right-radius: 0.25rem;
}

.message-time {
    display: block;
    font-size: 0.675rem;
    color: #94a3b8;
    margin-top: 0.25rem;
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.7);
}

.chatbot-input {
    padding: 1rem;
    background: white;
    border-top: 1px solid var(--border);
}

.chatbot-input form {
    display: flex;
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    padding: 0.625rem 1rem;
    background: #f1f5f9;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--foreground);
    outline: none;
    transition: all var(--transition);
}

.chatbot-input input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.chatbot-input button {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background var(--transition);
}

.chatbot-input button:hover {
    background: var(--accent-hover);
}

.chatbot-input button:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

/* ========== Global Chatbot Widget Styles ========== */
.chatbot-widget {
    position: fixed;
    bottom: 0;
    left: 1rem;
    z-index: 1000;
    font-family: inherit;
}

@media (min-width: 640px) {
    .chatbot-widget {
        left: 1.5rem;
    }
}

/* Toggle Button */
.chatbot-toggle-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.chatbot-toggle-btn.open {
    display: none;
}

.chatbot-toggle-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #1e293b, #0f172a);
    color: white;
    border-radius: 0.75rem 0.75rem 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.chatbot-toggle-inner:hover {
    background: linear-gradient(to right, #334155, #1e293b);
    box-shadow: 0 -4px 25px rgba(59, 130, 246, 0.3);
}

.chatbot-toggle-icon {
    color: #60a5fa;
}

.chatbot-toggle-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.chatbot-toggle-chevron {
    color: #94a3b8;
    transition: color 0.3s;
}

.chatbot-toggle-inner:hover .chatbot-toggle-chevron {
    color: white;
}

/* Chat Window */
.chatbot-window {
    width: 380px;
    max-width: calc(100vw - 2rem);
    background: white;
    border-radius: 1rem 1rem 0 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

.chatbot-window.hidden {
    display: none !important;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header */
.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatbot-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-avatar svg {
    color: white;
}

.chatbot-header h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.125rem;
}

.chatbot-status {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

.chatbot-status::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: #22c55e;
    border-radius: 50%;
}

.chatbot-header-actions {
    display: flex;
    gap: 0.5rem;
}

.chatbot-header-btn {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s;
}

.chatbot-header-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Messages */
.chatbot-messages {
    height: 320px;
    overflow-y: auto;
    padding: 1rem;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chatbot-message {
    display: flex;
    gap: 0.5rem;
    max-width: 85%;
}

.chatbot-message.user {
    flex-direction: row-reverse;
    margin-left: auto;
}

.chatbot-message-avatar {
    width: 1.75rem;
    height: 1.75rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chatbot-message-avatar svg {
    color: white;
}

.chatbot-message-text {
    padding: 0.625rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.chatbot-message.bot .chatbot-message-text {
    background: white;
    color: #334155;
    border: 1px solid #e2e8f0;
    border-radius: 0 1rem 1rem 1rem;
}

.chatbot-message.user .chatbot-message-text {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 1rem 0 1rem 1rem;
}

/* Typing Indicator */
.chatbot-typing-dots {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0 1rem 1rem 1rem;
}

.chatbot-typing-dots span {
    width: 0.5rem;
    height: 0.5rem;
    background: #94a3b8;
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
}

.chatbot-typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.chatbot-typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

/* Input */
.chatbot-input-container {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-top: 1px solid #e2e8f0;
}

#chatbot-input {
    flex: 1;
    padding: 0.625rem 1rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #0f172a;
    outline: none;
    transition: all 0.2s;
}

#chatbot-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.chatbot-send-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: #3b82f6;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.chatbot-send-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
}

.chatbot-send-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
}

/* ========== About Page Styles ========== */
.about-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.about-hero-blobs {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.about-blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(48px);
    animation: blob 7s infinite;
}

.about-blob-1 {
    top: 0;
    left: 25%;
    background: #3b82f6;
}

.about-blob-2 {
    top: 0;
    right: 25%;
    background: #a855f7;
    animation-delay: 2s;
}

.about-blob-3 {
    bottom: 0;
    left: 50%;
    background: #ec4899;
    animation-delay: 4s;
}

.about-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.about-badge svg {
    color: #facc15;
}

.about-badge span {
    font-size: 0.875rem;
    font-weight: 600;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(to right, white, #bfdbfe, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* About Stats */
.about-stats {
    padding: 1rem 0;
    background: linear-gradient(to bottom, #f8fafc, white, #f8fafc);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}

.stat-card:hover {
    background: #f8fafc;
}

.stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    transition: background var(--transition);
}

.stat-card:hover .stat-icon {
    background: #bfdbfe;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* About Story */
.about-story {
    padding: 6rem 0 3rem;
}

.story-header {
    text-align: center;
    margin-bottom: 4rem;
}

.story-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.story-line {
    width: 6rem;
    height: 0.25rem;
    background: var(--accent);
    border-radius: var(--radius-full);
    margin: 0 auto;
}

/* Timeline */
.timeline {
    max-width: 700px;
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 1.5rem;
    bottom: 0;
    width: 2px;
    background: #bfdbfe;
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-dot {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    margin-left: 1.5rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* About Values */
.about-values {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.values-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

.values-timeline {
    max-width: 600px;
    margin: 0 auto;
}

.value-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 2.5rem;
}

.value-item:last-child {
    padding-bottom: 0;
}

.value-line {
    position: absolute;
    left: 0;
    top: 1.5rem;
    bottom: 0;
    width: 2px;
    background: #bfdbfe;
}

.value-item:last-child .value-line {
    display: none;
}

.value-dot {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
}

.value-dot:hover {
    transform: scale(1.1);
}

.value-content {
    margin-left: 1.5rem;
}

.value-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.value-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* About Why */
.about-why {
    padding: 6rem 0;
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.why-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.why-dot {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.why-dot:hover {
    transform: scale(1.1);
}

.why-item span {
    font-weight: 600;
    color: var(--primary);
}

/* About CTA */
.about-cta {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.about-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #581c87 100%);
}

.about-cta-blobs {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.about-cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.about-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.about-cta-badge svg {
    color: #facc15;
}

.about-cta-badge span {
    font-size: 0.875rem;
    font-weight: 600;
}

.about-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.about-cta-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ========== Privacy Page Styles ========== */
.privacy-page {
    min-height: 100vh;
    padding: 10rem 0 5rem;
    background: white;
}

.privacy-page h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.privacy-content {
    max-width: 800px;
}

.privacy-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-content ol,
.privacy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-content li {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.privacy-content li strong {
    color: var(--primary);
}

.privacy-contact {
    padding: 1rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #1e40af;
}

.privacy-contact a {
    color: #1e40af;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Solutions Page Styles ========== */

/* Solutions Hero */
.solutions-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.solutions-hero-blobs {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.solutions-blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(48px);
    animation: blob 7s infinite;
}

.solutions-blob-1 {
    top: 0;
    left: 25%;
    background: #3b82f6;
}

.solutions-blob-2 {
    top: 0;
    right: 25%;
    background: #a855f7;
    animation-delay: 2s;
}

.solutions-blob-3 {
    bottom: 0;
    left: 50%;
    background: #ec4899;
    animation-delay: 4s;
}

.solutions-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.solutions-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.solutions-badge svg {
    color: #facc15;
}

.solutions-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.solutions-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(to right, white, #bfdbfe, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.solutions-hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Solutions Services Section */
.solutions-services {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Card */
.service-card {
    position: relative;
}

.service-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: 1.5rem;
    opacity: 0;
    filter: blur(4px);
    transition: opacity 0.5s;
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-card-inner {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    transition: all 0.5s;
    height: 100%;
}

.service-card:hover .service-card-inner {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.5s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.service-icon img,
.solution-icon-img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
}

.service-icon.icon-image-mode {
    background: transparent;
    box-shadow: none;
}

.service-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.service-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}

.service-desc {
    color: #64748b;
    margin: 1rem 0 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #334155;
    font-size: 0.875rem;
}

.feature-bullet {
    color: #3b82f6;
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
}

/* Service Detail Button */
.service-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.5rem 0;
    background: transparent;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.service-detail-btn:hover {
    color: #1d4ed8;
}

.service-detail-btn svg {
    transition: transform 0.3s;
}

.service-detail-btn:hover svg {
    transform: translateX(4px);
}

/* Subpages List - Simple Stacked Design */
.subpages-list {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e2e8f0;
    width: 100%;
}

.subpage-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.625rem 0.875rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.subpage-btn:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #2563eb;
    padding-left: 1rem;
}

.subpage-btn span {
    flex: 1;
}

.subpage-btn svg {
    color: #94a3b8;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.subpage-btn:hover svg {
    color: #2563eb;
    transform: translateX(2px);
}

.subpage-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Gradient Utilities for Icons/Backgrounds */
.service-icon.from-blue-500,
.service-card-glow.from-blue-500,
.feature-check.from-blue-500 {
    background: linear-gradient(135deg, #3b82f6, #4f46e5, #6366f1);
}

.service-icon.from-red-500,
.service-card-glow.from-red-500,
.feature-check.from-red-500 {
    background: linear-gradient(135deg, #ef4444, #e11d48, #ec4899);
}

.service-icon.from-purple-500,
.service-card-glow.from-purple-500,
.feature-check.from-purple-500 {
    background: linear-gradient(135deg, #a855f7, #7c3aed, #6366f1);
}

.service-icon.from-emerald-500,
.service-card-glow.from-emerald-500,
.feature-check.from-emerald-500 {
    background: linear-gradient(135deg, #10b981, #0d9488, #06b6d4);
}

/* Gradient Text Utilities for Subtitles */
.service-subtitle.from-blue-500 {
    background: linear-gradient(135deg, #3b82f6, #4f46e5, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-subtitle.from-red-500 {
    background: linear-gradient(135deg, #ef4444, #e11d48, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-subtitle.from-purple-500 {
    background: linear-gradient(135deg, #a855f7, #7c3aed, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-subtitle.from-emerald-500 {
    background: linear-gradient(135deg, #10b981, #0d9488, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Orange Gradient */
.service-icon.from-orange-500,
.service-card-glow.from-orange-500,
.feature-check.from-orange-500 {
    background: linear-gradient(135deg, #f97316, #d97706, #eab308);
}

.service-subtitle.from-orange-500 {
    background: linear-gradient(135deg, #f97316, #d97706, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cyan Gradient */
.service-icon.from-cyan-500,
.service-card-glow.from-cyan-500,
.feature-check.from-cyan-500 {
    background: linear-gradient(135deg, #06b6d4, #2563eb, #6366f1);
}

.service-subtitle.from-cyan-500 {
    background: linear-gradient(135deg, #06b6d4, #2563eb, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Solutions Products Section */
.solutions-products {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #f8fafc 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #bfdbfe;
}

.product-card-inner {
    padding: 1.5rem;
}

.product-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.product-card:hover .product-icon {
    transform: scale(1.1);
}

.product-icon svg {
    color: white;
}

.product-info {
    flex: 1;
    min-width: 0;
}

.product-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0.25rem;
}

.product-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    transition: color 0.3s;
}

.product-card:hover .product-info h3 {
    color: #2563eb;
}

.product-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.375rem;
}

.product-features svg {
    color: #22c55e;
    flex-shrink: 0;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2563eb;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb;
    transition: color 0.3s;
}

.product-card:hover .product-link {
    color: #1d4ed8;
}

.product-link svg {
    transition: transform 0.3s;
}

.product-card:hover .product-link svg {
    transform: translateX(4px);
}

/* Products Empty State */
.products-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1rem;
    border: 2px dashed #e2e8f0;
}

.empty-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.empty-icon svg {
    color: #3b82f6;
}

.products-empty h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.products-empty p {
    color: #64748b;
    margin: 0;
}

/* Solutions CTA */
.solutions-cta {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.solutions-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #581c87 100%);
}

.solutions-cta-blobs {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.solutions-cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.solutions-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.solutions-cta-content p {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-cta .solutions-badge span {
    color: white;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #0f172a;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all var(--transition);
}

.btn-cta-white:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.2);
}

.btn-cta-white svg {
    transition: transform 0.3s;
}

.btn-cta-white:hover svg {
    transform: translateX(4px);
}

/* ========== Blog Hero Section (Dark) ========== */
.blog-hero {
    position: relative;
    padding: 10rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.blog-hero-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.blog-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: blogBlobFloat 8s ease-in-out infinite;
}

.blog-blob-1 {
    top: -10%;
    right: -5%;
    width: 25rem;
    height: 25rem;
    background: linear-gradient(to right, #10b981, #14b8a6);
}

.blog-blob-2 {
    bottom: -15%;
    left: -5%;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(to right, #06b6d4, #0ea5e9);
    animation-delay: -4s;
}

@keyframes blogBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.blog-badge svg {
    color: #10b981;
}

.blog-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.blog-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.blog-hero-content p {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* ========== Blog Filters Section ========== */
.blog-filters-section {
    background: #f8fafc;
    padding: 2.5rem 0 1rem;
}

/* Search Bar */
.blog-search-bar {
    display: flex;
    align-items: center;
    gap: 0;
    background: white;
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    padding: 0.375rem;
    margin-bottom: 1.5rem;
    max-width: 750px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.blog-search-bar:focus-within {
    border-color: #94a3b8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Category Dropdown in Search */
.blog-search-cat-dropdown {
    position: relative;
    flex-shrink: 0;
}

.blog-cat-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.blog-cat-dropdown-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.blog-cat-dropdown-btn.open {
    background: #f1f5f9;
    border-color: #94a3b8;
}

.blog-cat-dropdown-btn svg:first-child {
    color: #64748b;
}

.blog-cat-dropdown-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.375rem;
    background: #e2e8f0;
    color: #64748b;
    border-radius: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 700;
}

.cat-dropdown-chevron {
    color: #94a3b8;
    transition: transform 0.2s;
}

.blog-cat-dropdown-btn.open .cat-dropdown-chevron {
    transform: rotate(180deg);
}

.blog-cat-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 220px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    padding: 0.375rem;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s ease;
}

.blog-cat-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.blog-cat-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.15s;
}

.blog-cat-dropdown-item:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.blog-cat-dropdown-item.active {
    background: #0f172a;
    color: white;
}

.blog-cat-dropdown-item.active .blog-cat-dd-count {
    background: rgba(255,255,255,0.2);
    color: white;
}

.blog-cat-dd-count {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.375rem;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 700;
}

/* Search Divider */
.blog-search-divider {
    width: 1px;
    height: 2rem;
    background: #e2e8f0;
    margin: 0 0.25rem;
    flex-shrink: 0;
}

.blog-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex: 1;
    padding: 0.625rem 0.875rem;
}

.blog-search-input-wrap svg {
    color: #94a3b8;
    flex-shrink: 0;
}

.blog-search-input-wrap input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 0.9375rem;
    color: #0f172a;
    background: transparent;
}

.blog-search-input-wrap input::placeholder {
    color: #94a3b8;
}

.blog-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border: none;
    padding: 0.6875rem 1.5rem;
    border-radius: 0.625rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.blog-search-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.blog-search-btn svg {
    flex-shrink: 0;
    opacity: 0.85;
    transition: transform 0.3s ease;
}

.blog-search-btn:hover {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.blog-search-btn:hover svg {
    transform: scale(1.1);
}

.blog-search-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.3);
}

/* Category Filter Buttons */
.blog-category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
}

.blog-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: white;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.blog-cat-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blog-cat-btn:hover {
    background: white;
    border-color: #0f172a;
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
    transform: translateY(-1px);
}

.blog-cat-btn:hover::before {
    opacity: 1;
}

.blog-cat-btn.active {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.blog-cat-btn.active .blog-cat-count {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.blog-cat-btn svg {
    flex-shrink: 0;
}

.blog-cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.375rem;
    height: 1.375rem;
    padding: 0 0.375rem;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Filters Row (categories + view toggle) */
.blog-filters-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

/* View Toggle Section */
.blog-view-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.375rem;
    flex-shrink: 0;
}

.blog-view-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-view-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0.25rem;
    flex-shrink: 0;
}

.blog-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border: none;
    background: transparent;
    border-radius: 0.625rem;
    color: #94a3b8;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.blog-view-btn:hover {
    color: #475569;
    background: #f8fafc;
}

.blog-view-btn.active {
    background: #0f172a;
    color: white;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
}

.blog-view-btn svg {
    flex-shrink: 0;
}

/* List View */
.blog-grid.blog-list-view {
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.blog-list-view .blog-card-link {
    flex-direction: row;
}

.blog-list-view .blog-card-image {
    width: 280px;
    min-width: 280px;
    height: auto;
    min-height: 200px;
}

.blog-list-view .blog-card-content {
    padding: 1.5rem 2rem;
}

.blog-list-view .blog-card-content h3 {
    font-size: 1.375rem;
    -webkit-line-clamp: 2;
}

.blog-list-view .blog-card-content p {
    -webkit-line-clamp: 2;
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .blog-list-view .blog-card-link {
        flex-direction: column;
    }

    .blog-list-view .blog-card-image {
        width: 100%;
        min-width: unset;
        height: 14rem;
        min-height: unset;
    }

    .blog-filters-row {
        flex-direction: column;
    }

    .blog-view-section {
        align-self: flex-end;
    }
}

/* Results Info */
.blog-results-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1152px;
    margin: 0 auto 2rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    font-size: 0.9375rem;
    color: #475569;
}

.blog-results-info p {
    margin: 0;
}

.blog-results-cat {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.blog-clear-filters {
    color: #ef4444;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.blog-clear-filters:hover {
    color: #dc2626;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
    .blog-search-bar {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .blog-search-cat-dropdown {
        width: 100%;
    }

    .blog-cat-dropdown-btn {
        width: 100%;
    }

    .blog-search-divider {
        display: none;
    }

    .blog-search-btn {
        width: 100%;
        justify-content: center;
    }

    .blog-category-filters {
        gap: 0.5rem;
    }

    .blog-cat-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    .blog-results-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .blog-view-btn span {
        display: none;
    }

    .blog-view-btn {
        padding: 0.5rem;
    }
}

/* ========== Blog Page Styles ========== */
.blog-page {
    background: #f8fafc;
    min-height: auto;
    padding: 4rem 0 5rem;
}

.blog-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.blog-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.125rem;
    color: #64748b;
}

/* Featured Post */
.blog-featured {
    max-width: 1152px;
    margin: 0 auto 4rem;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
}

.featured-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
}

.featured-image {
    height: 300px;
    background: #1e293b;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .featured-image {
        height: auto;
        min-height: 350px;
    }
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.featured-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.featured-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .featured-content {
        padding: 3rem;
    }
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.featured-category {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.featured-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.featured-card:hover .featured-content h2 {
    color: #2563eb;
}

.featured-content p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #0f172a;
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    width: fit-content;
    transition: background 0.3s;
}

.featured-card:hover .featured-link {
    background: #2563eb;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1152px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18), 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.blog-card-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image {
    height: 14rem;
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.blog-card-category {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.8125rem;
    transition: all 0.3s;
    margin-right: auto;
}

.blog-card:hover .blog-card-category {
    background: #dbeafe;
    color: #1d4ed8;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8125rem;
    color: #334155;
    font-weight: 600;
    transition: color 0.3s;
    margin-left: auto;
}

.blog-card:hover .blog-card-date {
    color: #0f172a;
}

.blog-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-content h3 {
    font-size: 1.3rem;
    color: #020617;
}

.blog-card-content p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s;
}

.blog-card:hover .blog-card-content p {
    color: #475569;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #64748b;
}

.blog-card-read {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb;
    transition: all 0.3s;
}

.blog-card:hover .blog-card-read {
    color: #1d4ed8;
    font-size: 0.9375rem;
}

.blog-card-read svg {
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-read svg {
    transform: translateX(4px);
}

/* Blog Empty State */
.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1rem;
    border: 2px dashed #e2e8f0;
    max-width: 500px;
    margin: 0 auto;
}

.blog-empty .empty-icon {
    width: 5rem;
    height: 5rem;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #64748b;
}

.blog-empty h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.blog-empty p {
    color: #64748b;
    margin: 0;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.blog-pagination ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination li {
    display: flex;
}

.blog-pagination li a,
.blog-pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    background: white;
    color: #475569;
}

.blog-pagination li a:hover {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    transform: translateY(-1px);
}

.blog-pagination li.active span,
.blog-pagination li .active,
.blog-pagination li span.current {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.blog-pagination li.disabled span,
.blog-pagination li span.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
    background: #f8fafc;
    border-color: #e2e8f0;
}

/* ========== Blog Detail Page Styles ========== */
.blog-detail-page {
    background: #f8fafc;
    min-height: 100vh;
    padding: 6rem 0 5rem;
}

.blog-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #64748b;
    text-decoration: none;
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
    transition: color 0.3s;
}

.blog-back-btn:hover {
    color: #2563eb;
}

.blog-article-container {
    max-width: none;
    margin: 0;
}

.blog-article-header {
    text-align: left;
    margin-bottom: 1.75rem;
}

.blog-article-header h1 {
    font-size: clamp(1.375rem, 3vw, 1.875rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.article-info-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #64748b;
    padding: 0.75rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.article-info-left {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.article-info-right {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #64748b;
}

.article-info-right svg {
    color: #94a3b8;
}

.article-reading-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #64748b;
    font-size: 0.75rem;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.author-avatar {
    width: 1.375rem;
    height: 1.375rem;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.author-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0f172a;
}

.author-role {
    font-size: 0.625rem;
    color: #64748b;
}

.author-role::before {
    content: ' · ';
    color: #cbd5e1;
}

/* Article Image */
.blog-article-image {
    aspect-ratio: 16 / 9;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #e2e8f0;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.75rem;
}

.blog-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article Content */
.blog-article-content {
    background: white;
    padding: 0;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #334155;
    overflow: hidden;
}

.blog-article-content a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
    transition: color 0.2s;
}

.blog-article-content a:hover {
    color: #1d4ed8;
}

.blog-article-content img,
.blog-inline-image {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
    display: block;
}

@media (min-width: 768px) {
    .blog-article-content {
        padding: 0;
    }
}

/* Share Bar */
.blog-article-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.share-label {
    font-weight: 600;
    font-size: 0.8125rem;
    color: #0f172a;
}

.share-buttons {
    display: flex;
    gap: 0.375rem;
}

.share-btn {
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: background 0.3s;
}

.share-btn:hover {
    background: #f1f5f9;
}

/* ========== Homepage Header Bar ========== */
.homepage-header-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 7.5rem;
    background: #0e172b;
    z-index: 90;
}

/* ========== Partners Strip ========== */
.partners-strip {
    padding: 4rem 0;
    background: linear-gradient(to right, #f8fafc, white, #f8fafc);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 2rem;
}

.partners-slider-container {
    position: relative;
    overflow: hidden;
}

.partners-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8rem;
    z-index: 10;
    pointer-events: none;
}

.partners-fade-left {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.partners-fade-right {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.partners-slider {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: partnersScroll 30s linear infinite;
}

@keyframes partnersScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

.partner-item {
    flex-shrink: 0;
    width: 10rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.partner-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 1rem;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Partners strip - faster on mobile */
@media (max-width: 768px) {
    .partners-slider {
        animation: partnersScroll 12s linear infinite;
    }
}

/* ========== References Page ========== */
.references-page {
    background: white;
    min-height: 100vh;
    padding: 8rem 0 5rem;
}

.references-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.references-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.references-header p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
}

.references-intro {
    max-width: 1000px;
    margin: 0 auto 5rem;
    text-align: center;
}

.references-intro p {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.8;
}

.references-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
    align-items: center;
    justify-items: center;
}

@media (max-width: 1024px) {
    .references-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .references-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.reference-logo-card {
    width: 100%;
    height: 8rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.3s;
}

.reference-logo-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.reference-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.reference-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.references-outro {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.references-outro p {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.8;
}

.references-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 2px dashed #e2e8f0;
    max-width: 500px;
    margin: 0 auto;
}

.references-empty h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.references-empty p {
    color: #64748b;
    margin: 0;
}

/* ========== FAQ Hero Section ========== */
.faq-hero {
    position: relative;
    padding: 10rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.faq-hero-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.faq-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: faqBlobFloat 8s ease-in-out infinite;
}

.faq-blob-1 {
    top: -10%;
    right: -5%;
    width: 25rem;
    height: 25rem;
    background: linear-gradient(to right, #f59e0b, #f97316);
}

.faq-blob-2 {
    bottom: -15%;
    left: -5%;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(to right, #ef4444, #f97316);
    animation-delay: -4s;
}

@keyframes faqBlobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

.faq-hero .container {
    position: relative;
    z-index: 1;
}

.faq-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.faq-badge svg {
    color: #f59e0b;
}

.faq-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.faq-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.faq-hero-content p {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* ========== FAQ Page Content ========== */
.faq-page {
    background: #f8fafc;
    padding: 4rem 0 5rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #64748b;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1rem 1.5rem 1rem;
    margin: 0;
    color: #64748b;
    line-height: 1.7;
    text-align: center;
}

.faq-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.faq-empty h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.faq-empty p {
    color: #64748b;
    margin: 0;
}

/* ========== Contact Hero Section ========== */
.contact-hero {
    position: relative;
    padding: 10rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.contact-hero-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.contact-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: contactBlobFloat 8s ease-in-out infinite;
}

.contact-blob-1 {
    top: -10%;
    right: -5%;
    width: 25rem;
    height: 25rem;
    background: linear-gradient(to right, #6366f1, #8b5cf6);
}

.contact-blob-2 {
    bottom: -15%;
    left: -5%;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(to right, #a855f7, #d946ef);
    animation-delay: -4s;
}

@keyframes contactBlobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.contact-badge svg {
    color: #8b5cf6;
}

.contact-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.contact-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* ========== Contact Page Content ========== */
.contact-page {
    background: #f8fafc;
    padding: 4rem 0 3rem;
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 0.75rem;
    color: white;
}

.contact-card-content h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.contact-card-content a,
.contact-card-content p {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.contact-card-content a:hover {
    color: #8b5cf6;
}

/* ========== Contact Map Section ========== */
.contact-map {
    background: #f8fafc;
    padding: 0 0 5rem;
}

.contact-map h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #8b5cf6;
    font-weight: 500;
    transition: all 0.3s;
}

.map-link:hover {
    color: #6366f1;
}

/* ========== Quote Hero Section ========== */
.quote-hero {
    position: relative;
    padding: 10rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.quote-hero-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.quote-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: quoteBlobFloat 8s ease-in-out infinite;
}

.quote-blob-1 {
    top: -10%;
    right: -5%;
    width: 25rem;
    height: 25rem;
    background: linear-gradient(to right, #f43f5e, #ec4899);
}

.quote-blob-2 {
    bottom: -15%;
    left: -5%;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(to right, #f97316, #f43f5e);
    animation-delay: -4s;
}

@keyframes quoteBlobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

.quote-hero .container {
    position: relative;
    z-index: 1;
}

.quote-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.quote-badge svg {
    color: #f43f5e;
}

.quote-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.quote-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.quote-hero-content p {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* ========== Quote Page Content ========== */
.quote-page {
    background: #f8fafc;
    padding: 4rem 0 5rem;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 968px) {
    .quote-grid {
        grid-template-columns: 1fr;
    }
}

.quote-form-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quote-form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.quote-form-header p {
    color: #64748b;
    margin-bottom: 2rem;
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .quote-form .form-row {
        grid-template-columns: 1fr;
    }
}

.quote-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.quote-submit:hover {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Quote Success */
.quote-success {
    text-align: center;
    padding: 3rem 1rem;
}

.quote-success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    border-radius: 50%;
    color: white;
}

.quote-success h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.quote-success p {
    color: #64748b;
    margin-bottom: 2rem;
}

/* Quote Info Section */
.quote-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-info-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quote-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 0.75rem;
    color: #f43f5e;
    margin-bottom: 1rem;
}

.quote-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.quote-info-card ul,
.quote-info-card ol {
    margin: 0;
    padding-left: 1.25rem;
}

.quote-info-card li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

/* Quote Contact Card */
.quote-contact-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.quote-contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.quote-contact-card p {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.quote-phone-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    font-weight: 700;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.quote-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* ========== References Hero Section ========== */
.references-hero {
    position: relative;
    padding: 10rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.references-hero-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.references-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: referencesBlobFloat 8s ease-in-out infinite;
}

.references-blob-1 {
    top: -10%;
    right: -5%;
    width: 25rem;
    height: 25rem;
    background: linear-gradient(to right, #eab308, #f59e0b);
}

.references-blob-2 {
    bottom: -15%;
    left: -5%;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(to right, #22c55e, #84cc16);
    animation-delay: -4s;
}

@keyframes referencesBlobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

.references-hero .container {
    position: relative;
    z-index: 1;
}

.references-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.references-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.references-badge svg {
    color: #eab308;
}

.references-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.references-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.references-hero-content p {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Update references page padding */
.references-page {
    background: #f8fafc;
    min-height: auto;
    padding: 4rem 0 5rem;
}

/* ========== Legal Pages Hero Section ========== */
.legal-hero {
    position: relative;
    padding: 10rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.legal-hero-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.legal-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: legalBlobFloat 8s ease-in-out infinite;
}

.legal-blob-1 {
    top: -10%;
    right: -5%;
    width: 25rem;
    height: 25rem;
    background: linear-gradient(to right, #475569, #64748b);
}

.legal-blob-2 {
    bottom: -15%;
    left: -5%;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(to right, #334155, #475569);
    animation-delay: -4s;
}

@keyframes legalBlobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

.legal-hero .container {
    position: relative;
    z-index: 1;
}

.legal-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.legal-badge svg {
    color: #94a3b8;
}

.legal-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.legal-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.legal-hero-content p {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* ========== Legal Page Content ========== */
.legal-page {
    background: #f8fafc;
    padding: 4rem 0 5rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 2rem 0 1rem;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ol,
.legal-content ul {
    color: #475569;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-content strong {
    color: #0f172a;
}

.legal-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f1f5f9;
    border-radius: 0.75rem;
    border-left: 4px solid #3b82f6;
}

.legal-contact a {
    color: #3b82f6;
    font-weight: 500;
}

.legal-contact a:hover {
    text-decoration: underline;
}