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

:root {
    --primary: #1f6d5c;
    --secondary: #8092aa;
    --orange: #e35619;
    --orange-glow: rgba(227, 86, 25, 0.15);
    --dark-bg: #22313c;
    --dark-green: #2a3d4d;
    --card-bg: #2a3d4d;
    --border: #3a4a57;
    --text-primary: #FFFFFF;
    --text-secondary: #8092aa;
    --accent: #1f6d5c;
    --light-orange: #e3e2df;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(34, 49, 60, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1.5rem 0;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    cursor: pointer;
    min-height: 44px;
    display: flex;
    align-items: center;
    touch-action: manipulation;
}

.nav-link:hover {
    color: var(--orange);
}

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(227, 86, 25, 0.1);
    color: var(--orange);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-button {
    background: linear-gradient(135deg, var(--orange), #f07042);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--orange);
    box-shadow: 0 4px 15px var(--orange-glow);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(227, 86, 25, 0.3);
}

/* Hero Section */
.hero {
    margin-top: 100px;
    padding: 6rem 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero h1,
.hero-subtitle,
.feature-badges {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
}

.feature-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-button-primary {
    background: var(--orange);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid var(--orange);
    box-shadow: 0 4px 20px var(--orange-glow);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button-primary::after {
    content: '↗';
    font-size: 1.2rem;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(227, 86, 25, 0.5);
    background: #f07042;
}

.cta-button-secondary {
    background: linear-gradient(135deg, var(--orange), #f07042);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid var(--orange);
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px var(--orange-glow);
}

.cta-button-secondary::after {
    content: '↘';
    font-size: 1.2rem;
}

.cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(227, 86, 25, 0.4);
}

.badge {
    background: var(--card-bg);
    border: 2px solid var(--orange);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge::before {
    content: '✓';
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--orange), #f07042);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Features Grid */
.section {
    padding: 3rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--orange);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 30px var(--orange-glow);
    transform: translateY(-5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange), #f07042);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 4px 15px var(--orange-glow);
}

.feature-icon-img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-images {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.feature-images img {
    width: 60px;
    height: 60px;
    opacity: 0.7;
    filter: brightness(1.2);
}

/* Benefits Section */
.benefits-section {
    background: var(--dark-bg);
    padding: 3rem 3rem;
    margin: 2rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: var(--dark-green);
    border: 2px solid var(--border);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--orange), #f07042);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--orange-glow);
}

.benefit-card:hover::before {
    transform: scaleY(1);
}

.benefit-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange), #f07042);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 20px var(--orange-glow);
}

.benefit-card-icon img {
    filter: brightness(0) invert(1);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Process Section */
.tech-flow-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 4rem;
    position: relative;
    padding: 3rem 0;
    flex-wrap: nowrap;
}

.flow-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-step[data-step="1"],
.flow-step[data-step="3"] {
    padding-top: 0;
}

.flow-step[data-step="2"] {
    padding-top: 0;
}

.flow-node {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    background: var(--card-bg);
    border: 2px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--orange-glow);
}

.node-icon {
    width: 96px;
    height: 96px;
    color: var(--orange);
    position: relative;
    z-index: 2;
}

.node-icon svg {
    width: 100%;
    height: 100%;
}

.node-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(346deg) brightness(118%) contrast(119%);
}

.node-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--orange);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.flow-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.flow-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tech-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--orange), #f07042);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.flow-connector {
    flex: 0 0 120px;
    height: 60px;
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.flow-connector svg {
    width: 100%;
    height: 100%;
}

.tech-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    padding: 2.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    justify-items: center;
}

.tech-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.stat-icon {
    font-size: 2rem;
}

.stat-icon img {
    filter: brightness(0) invert(1);
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1.2;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Why Choose Us Section */
.why-choose-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--orange);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0 auto;
}

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

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange), #f07042);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}


.benefit-feature-card {
    background: var(--card-bg);
    border: 2px solid var(--orange);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--orange-glow);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--card-bg);
    border: 2px solid var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-icon img {
    filter: brightness(0) invert(1);
}

.benefit-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Clients Section */
.clients-section {
    text-align: center;
    padding: 3rem 3rem;
    background: var(--dark-green);
}

.clients-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--orange);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.clients-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.clients-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 1rem 0 3rem 0;
}

.marquee-content {
    display: flex;
    gap: 1rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 4));
    }
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.client-logo-item {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-logo-item img {
    max-width: 600px;
    max-height: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.client-logo-item img.blink-logo {
    mix-blend-mode: multiply;
    filter: contrast(1.2);
}

.client-logo-item:hover {
    opacity: 1;
}

.process-arrow {
    font-size: 2rem;
    color: var(--border);
}

/* Blog Section */
.blog-section {
    background: var(--dark-bg);
    padding: 3rem 3rem;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.blog-card {
    background: var(--dark-green);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 8px 30px var(--orange-glow);
}

.blog-card-locked {
    cursor: not-allowed;
    pointer-events: none;
    position: relative;
}

.blog-card-locked:hover {
    transform: translateY(-5px);
    border-color: var(--border);
    box-shadow: 0 8px 30px var(--orange-glow);
}

.blog-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(227, 86, 25, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(227, 86, 25, 0.4);
}

.coming-soon-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-read-more-disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.blog-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, rgba(227, 86, 25, 0.2) 0%, rgba(240, 112, 66, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.blog-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 48%, rgba(227, 86, 25, 0.1) 49%, rgba(227, 86, 25, 0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(227, 86, 25, 0.1) 49%, rgba(227, 86, 25, 0.1) 51%, transparent 52%);
    background-size: 20px 20px;
}

.blog-image-placeholder {
    font-size: 3rem;
    color: var(--orange);
    z-index: 1;
    opacity: 0.6;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.blog-category {
    background: var(--orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--orange);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 1rem;
}

.blog-read-more::after {
    content: '→';
}

/* Use Cases */
.use-cases {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.use-case-tab {
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    touch-action: manipulation;
}

.use-case-tab-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    shape-rendering: geometricPrecision;
    min-width: 32px;
    min-height: 32px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.use-case-tab.active .use-case-tab-icon {
    opacity: 1;
}

.use-case-tab:hover .use-case-tab-icon {
    opacity: 1;
}

.use-case-tab.active {
    background: linear-gradient(135deg, var(--orange), #f07042);
    border-color: var(--orange);
    box-shadow: 0 4px 15px var(--orange-glow);
}

.use-case-content {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 16px;
    position: relative;
}

.use-case-item {
    display: none;
}

.use-case-item.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.use-case-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.use-case-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.use-case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.use-case-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    opacity: 0.9;
}

.collateral-icon-container {
    text-align: center;
    margin: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 3rem;
}

.collateral-icon {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 2 / 1;
    border-radius: 0;
    border: 4px solid var(--orange);
    padding: 2rem;
    background: var(--card-bg);
    box-shadow: 0 4px 15px var(--orange-glow);
    object-fit: contain;
}

/* FAQ Section */
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 20px var(--orange-glow);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background: var(--dark-bg);
    padding: 3rem 3rem;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.notion-form-container {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
    min-height: 600px;
}

.notion-form-container iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 8px;
}

.contact-info {
    margin-top: 3rem;
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-methods {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange), #f07042);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-method-icon img {
    filter: brightness(0) invert(1);
}

/* CTA Section */
.cta-section {
    background: var(--dark-green);
    border: 1px solid var(--orange);
    padding: 3rem 3rem;
    text-align: center;
    border-radius: 24px;
    margin: 3rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-section h2,
.cta-section p {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button-large {
    background: linear-gradient(135deg, var(--orange), #f07042);
    color: white;
    padding: 1rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px var(--orange-glow);
    min-height: 44px;
    touch-action: manipulation;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(227, 86, 25, 0.4);
}

/* Flags Section */
.flags-container {
    padding: 2rem 0;
}

.flags-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: center;
    margin-bottom: 2rem;
}

.tether-item-mobile {
    display: none;
}

.tether-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
}

.flags-grid .flag-item:nth-child(6) {
    display: none;
}

@media (max-width: 1024px) {
    .flags-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 180px;
    height: 160px;
    min-width: 180px;
    min-height: 160px;
    max-width: 180px;
    max-height: 160px;
    box-sizing: border-box;
}

.flag-item:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 8px 25px var(--orange-glow);
}

.flag-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 60px;
    margin: 0 auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.flag-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    shape-rendering: geometricPrecision;
}

.flag-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 60px;
    margin: 0 auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.flag-logo img {
    width: 80px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.flag-label {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    text-align: center;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 4rem 3rem 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.footer-links {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--orange);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 0.75rem 0;
        min-height: 60px;
        height: auto;
    }
    
    nav {
        padding: 0 1rem;
        min-height: 60px;
        display: flex;
        align-items: center;
    }
    
    .hero {
        padding: 3rem 1.5rem 3rem 1.5rem;
        margin-top: 120px;
        padding-top: 3.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero h1 {
        margin-top: 0;
        padding-top: 0;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-badges {
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 1rem;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-flow-container {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
        align-items: center;
    }

    .flow-step {
        max-width: 100%;
        padding: 0 1rem !important;
    }

    .flow-step[data-step="2"] {
        padding-top: 0 !important;
    }

    .flow-node {
        width: 100px;
        height: 100px;
    }

    .node-icon {
        width: 40px;
        height: 40px;
    }

    .flow-connector {
        display: none;
    }

    .tech-stats-bar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-choose-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-stat {
        justify-content: flex-start;
    }

    .flags-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
        margin-bottom: 0;
        padding: 0 0.5rem;
    }
    
    .flags-grid .flag-item:nth-child(5),
    .flags-grid .flag-item:nth-child(6) {
        display: flex;
    }
    
    .tether-container {
        display: none;
    }
    
    .tether-item-mobile {
        display: flex;
    }
    
    .flags-container {
        padding: 1rem 0.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .flag-item {
        width: 100%;
        height: 140px;
        min-width: 0;
        min-height: 140px;
        max-width: 100%;
        max-height: 140px;
        padding: 1rem;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }

    .flag-image {
        width: 60px;
        height: 45px;
    }

    .flag-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .flag-logo {
        width: 60px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .flag-logo img {
        width: 60px;
        height: 45px;
        object-fit: contain;
    }

    .flag-label {
        font-size: 0.75rem;
        text-align: center;
        width: 100%;
        line-height: 1.2;
        display: flex;
        align-items: center;
        justify-content: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        margin: 0;
        padding: 0;
    }



    .clients-title {
        font-size: 2.5rem;
    }

    .clients-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .client-logo-item {
        font-size: 1.5rem;
        min-width: 120px;
        flex-shrink: 0;
    }
    
    .client-logo-item img {
        max-width: 200px;
        max-height: 80px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .marquee-content {
        gap: 1.5rem;
    }

    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .use-case-image {
        order: -1;
    }
    
    .use-case-image img {
        width: 120%;
        max-width: 120%;
        margin-left: -10%;
        margin-right: -10%;
    }

    .use-cases {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 1.5rem 1rem 2.5rem;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 2.5rem;
        gap: 0.75rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        position: relative;
        mask-image: linear-gradient(
            to right,
            black 0%,
            black 25%,
            black 75%,
            transparent 100%
        );
        -webkit-mask-image: linear-gradient(
            to right,
            black 0%,
            black 25%,
            black 75%,
            transparent 100%
        );
    }
    
    .use-cases::before,
    .use-cases::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 40px;
        pointer-events: none;
        z-index: 2;
    }
    
    .use-cases::before {
        left: 0;
        background: linear-gradient(
            to right,
            var(--dark-bg) 0%,
            rgba(34, 49, 60, 0.6) 40%,
            transparent 100%
        );
        width: 50px;
    }
    
    .use-cases::after {
        right: 0;
        background: linear-gradient(
            to left,
            var(--dark-bg) 0%,
            rgba(34, 49, 60, 0.8) 50%,
            transparent 100%
        );
    }
    
    .use-cases::-webkit-scrollbar {
        height: 4px;
    }
    
    .use-cases::-webkit-scrollbar-track {
        background: var(--card-bg);
        border-radius: 2px;
    }
    
    .use-cases::-webkit-scrollbar-thumb {
        background: var(--orange);
        border-radius: 2px;
    }
    
    .use-cases::-webkit-scrollbar-thumb:hover {
        background: #f07042;
    }

    .use-case-tab {
        flex-shrink: 0;
        min-width: 100px;
        padding: 0.5rem 0.75rem;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    
    .use-case-tab span {
        font-size: 0.85rem;
    }
    
    .use-case-tab-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
    }

    header {
        padding: 1rem 0;
        height: auto;
        min-height: 70px;
    }

    nav {
        padding: 0 1.5rem;
        flex-wrap: wrap;
        gap: 1rem;
        position: relative;
        width: 100%;
        box-sizing: border-box;
        justify-content: space-between;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 1.5rem;
        margin-top: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0 0 1rem;
        min-width: auto;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .section {
        padding: 4rem 1.5rem;
        width: 100%;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .cta-section {
        margin: 3rem 1.5rem;
        padding: 2rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-button-large {
        width: 100%;
        padding: 1rem 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .flow-step h3 {
        font-size: 1.1rem;
    }

    .flow-step p {
        font-size: 0.9rem;
    }

    .notion-form-container {
        padding: 1.5rem;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .benefit-card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }
}

/* Blog Post Page Styles */
.blog-post-page {
    margin-top: 100px;
    background: #FFFFFF;
    color: #1a1a1a;
    min-height: calc(100vh - 100px);
}

.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.blog-post-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.blog-post-header {
    margin-bottom: 3rem;
}

.blog-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.blog-post-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.blog-post-author-section {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.blog-post-author,
.blog-post-reviewed {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.author-label,
.reviewed-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
}

.author-qualification {
    font-size: 0.9rem;
    color: #666;
}

.reviewed-placeholder {
    padding: 0.75rem 1rem;
    background: #f5f5f5;
    border-radius: 8px;
    color: #999;
    font-size: 0.9rem;
    min-width: 200px;
}

.blog-post-hero {
    position: relative;
    width: 100%;
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.blog-post-hero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.blog-post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.blog-post-hero-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.3;
    max-width: 800px;
}

.blog-post-key-points {
    background: #f9f9f9;
    border-left: 4px solid var(--orange);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.key-points-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.key-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-points-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.key-points-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.blog-post-content {
    margin-top: 4rem;
}

.blog-post-section {
    margin-bottom: 3rem;
}

.blog-post-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-post-section p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.blog-post-image-wrapper {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.blog-post-content-image {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.blog-back-link {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-back-link:hover {
    color: #f07042;
}

/* Blog Post Mobile Styles */
@media (max-width: 768px) {
    .blog-post-container {
        padding: 2rem 1rem;
    }

    .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-subtitle {
        font-size: 1.1rem;
    }

    .blog-post-hero-overlay h2 {
        font-size: 1.75rem;
    }

    .blog-post-author-section {
        flex-direction: column;
        gap: 2rem;
    }

    .blog-post-section-title {
        font-size: 1.5rem;
    }

    .blog-post-section p {
        font-size: 1rem;
    }

    .key-points-title {
        font-size: 1.25rem;
    }
}

