/* Custom Design System - CREA-BELIEVE */

:root {
    /* Color Palette */
    --color-bg: #070a13;
    --color-bg-card: rgba(15, 23, 42, 0.55);
    --color-bg-nav: rgba(7, 10, 19, 0.75);
    --color-text-main: #f8fafc;
    --color-text-muted: #94a3b8;
    
    /* Dual Accents */
    --color-teal: #00f2fe;
    --color-teal-dark: #0087a3;
    --color-teal-glow: rgba(0, 242, 254, 0.15);
    
    --color-purple: #9d4edd;
    --color-purple-light: #c77dff;
    --color-purple-glow: rgba(157, 78, 221, 0.15);

    --color-amber: #f59e0b;
    --color-amber-glow: rgba(245, 158, 11, 0.15);
    
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-active: rgba(255, 255, 255, 0.2);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(157, 78, 221, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 242, 254, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
}

/* Typography styling */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-teal);
    box-shadow: 0 0 10px var(--color-teal);
}

/* Global Layout & Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.align-center {
    align-items: center;
}

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

.text-right {
    text-align: right;
}

.text-gradient-teal {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
    background: linear-gradient(135deg, #c77dff, #7b2cbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: var(--color-bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 70px;
    background-color: rgba(5, 7, 13, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtext {
    font-size: 0.65rem;
    color: var(--color-teal);
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: -3px;
}

.tagline-desktop {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid var(--color-border);
    max-width: 400px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-teal);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta-btn {
    background: linear-gradient(135deg, #00f2fe, #0087a3);
    color: #070a13;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
    border: none;
    cursor: pointer;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.6);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Mobile Nav Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 10, 19, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 32px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
    transform: translateX(-100%);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--color-text-main);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-tagline {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.mobile-link:hover {
    color: var(--color-teal);
    padding-left: 8px;
}

.mobile-cta-btn {
    background: linear-gradient(135deg, #00f2fe, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 2px solid var(--color-teal);
    text-align: center;
    padding: 12px;
    border-radius: 30px;
    font-weight: 700;
    margin-top: 24px;
}

/* Section Templates */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.teal-tag {
    background: rgba(0, 242, 254, 0.08);
    color: var(--color-teal);
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.purple-tag {
    background: rgba(157, 78, 221, 0.08);
    color: var(--color-purple-light);
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.amber-tag {
    background: rgba(245, 158, 11, 0.08);
    color: var(--color-amber);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.grey-tag {
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-size: 1rem;
}

.btn-teal-glow {
    background: linear-gradient(135deg, #00f2fe, #0087a3);
    color: #070a13;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.25);
}

.btn-teal-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.6);
}

.btn-purple-glow {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    border: 1px solid var(--color-border);
}

.btn-purple-glow:hover {
    transform: translateY(-3px);
    background: rgba(157, 78, 221, 0.1);
    border-color: var(--color-purple-light);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.4);
}

/* Hero Section Style */
.hero-section {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 40%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-main);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glow-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, rgba(157, 78, 221, 0.1) 50%, transparent 100%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

/* Polygraph Service Styles */
.polygraph-bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle at 100% 0%, rgba(0, 242, 254, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.canvas-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.canvas-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.pulse-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-teal);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

#polygraph-canvas {
    background: rgba(5, 7, 13, 0.9);
    border-radius: 8px;
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.canvas-controls {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn-canvas-mode {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-canvas-mode:hover, .btn-canvas-mode.active {
    background: rgba(0, 242, 254, 0.1);
    color: var(--color-teal);
    border-color: rgba(0, 242, 254, 0.4);
}

.subsection-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.body-text {
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    gap: 20px;
}

.service-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(0, 242, 254, 0.06);
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal);
    font-size: 1.25rem;
}

.service-info h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.service-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.polygraph-image-banner {
    margin-top: 80px;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.4) 0%, rgba(157, 78, 221, 0.02) 100%);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
}

.rounded-img {
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.glow-border-teal {
    border: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.15);
}

.bullet-list {
    list-style: none;
    margin-top: 24px;
}

.bullet-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--color-text-muted);
}

.bullet-list li i {
    color: var(--color-teal);
}

/* AI Marketing Style */
.ai-bg-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle at 0% 0%, rgba(157, 78, 221, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.marketing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.marketing-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 24px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.marketing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 78, 221, 0.3);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.08);
}

.card-icon-purple {
    font-size: 1.5rem;
    color: var(--color-purple-light);
    margin-bottom: 16px;
}

.marketing-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.marketing-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.dashboard-mockup {
    background: rgba(10, 15, 30, 0.95);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    overflow: hidden;
}

.dash-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--color-border);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.dash-dots {
    display: flex;
    gap: 6px;
    position: absolute;
    left: 20px;
}

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f56;
}

.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #27c93f; }

.dash-title {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 600;
}

.dash-body {
    padding: 24px;
}

.dash-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.dash-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.progress-bar-container {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-purple), var(--color-teal));
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dash-stat-val {
    font-size: 0.8rem;
    font-weight: 500;
}

.dash-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
}

.chart-container {
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 10px 10px 20px 10px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 24px;
}

.chart-bar-y {
    width: 15%;
    height: var(--height);
    background: rgba(157, 78, 221, 0.15);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 1s ease;
}

.chart-bar-y:hover, .chart-bar-y:nth-child(5) {
    background: linear-gradient(180deg, var(--color-purple-light), rgba(157, 78, 221, 0.3));
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

.chart-bar-y span {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-purple {
    background: linear-gradient(135deg, var(--color-purple), #7b2cbf);
    color: #ffffff;
    border: none;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.6);
}

.glow-border-purple {
    border: 1px solid rgba(157, 78, 221, 0.2);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.15);
}

/* Blog Section Style */
.blog-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-text-main);
    color: var(--color-bg);
    border-color: var(--color-text-main);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-active);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(7, 10, 19, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}

.blog-meta i {
    margin-right: 4px;
}

.blog-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.35;
}

.blog-card-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.blog-read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-teal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-read-more:hover {
    gap: 12px;
}

/* About Us Section Style */
.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
}

.glow-border-amber {
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.15);
}

.established-tag {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #f59e0b;
    color: #070a13;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.established-tag span {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.established-tag strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.font-large {
    font-size: 2.8rem;
    line-height: 1.15;
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--color-text-main);
    font-weight: 500;
}

/* Timeline */
.timeline-container {
    position: relative;
    padding-left: 32px;
    margin-top: 40px;
}

.timeline-track {
    position: absolute;
    top: 0;
    left: 7px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-teal) 0%, var(--color-amber) 50%, var(--color-purple) 100%);
}

.timeline-point {
    position: relative;
    margin-bottom: 36px;
}

.timeline-point:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-bg);
    border: 3px solid var(--color-teal);
    z-index: 2;
    transition: var(--transition-fast);
}

.timeline-point:nth-child(2) .timeline-dot {
    border-color: var(--color-amber);
}

.timeline-point:nth-child(3) .timeline-dot {
    border-color: var(--color-purple-light);
}

.timeline-point:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 10px inherit;
}

.timeline-year {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-teal);
    display: block;
    margin-bottom: 4px;
}

.timeline-point:nth-child(2) .timeline-year {
    color: var(--color-amber);
}

.timeline-point:nth-child(3) .timeline-year {
    color: var(--color-purple-light);
}

.timeline-content h5 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Contact Section Style */
.contact-section {
    background: radial-gradient(circle at 50% 100%, rgba(0, 242, 254, 0.03) 0%, transparent 60%);
    border-top: 1px solid var(--color-border);
}

.contact-desc {
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-item i {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-item h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.method-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.contact-form-panel {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    padding: 14px;
    border-radius: 8px;
    color: var(--color-text-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
    background: rgba(0, 242, 254, 0.02);
}

.form-group select option {
    background: var(--color-bg);
    color: var(--color-text-main);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #00f2fe, #7b2cbf);
    color: #ffffff;
    border: none;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.3);
}

.form-status {
    margin-top: 20px;
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(39, 201, 63, 0.1);
    border: 1px solid rgba(39, 201, 63, 0.3);
    color: #27c93f;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-status.active {
    display: flex;
}

/* Footer Section Style */
.main-footer {
    background: #04060c;
    border-top: 1px solid var(--color-border);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, var(--color-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.social-icons a:hover {
    color: var(--color-teal);
    border-color: var(--color-teal);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-teal);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Glassmorphic Blog Modal */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.blog-modal.open {
    display: flex;
}

.blog-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 13, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.blog-modal-content {
    position: relative;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--color-border-active);
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 3002;
    padding: 48px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-body h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    margin-top: 10px;
}

.modal-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.modal-article-img {
    border-radius: 12px;
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.modal-body p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.modal-body h4 {
    font-size: 1.35rem;
    color: var(--color-text-main);
    margin: 32px 0 16px 0;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 242, 254, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); }
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    h1.hero-title {
        font-size: 3rem;
    }
    
    .grid-2 {
        gap: 32px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    section {
        padding: 60px 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .tagline-desktop {
        display: none;
    }

    .navbar {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        padding-top: calc(var(--header-height) + 30px);
        min-height: auto;
    }

    h1.hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-stats {
        gap: 20px;
    }

    .marketing-cards {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-modal-content {
        padding: 30px 20px;
    }

    .modal-body h2 {
        font-size: 1.6rem;
    }
}
