:root {
    --bg-primary: #0f1115;
    --bg-secondary: #181b22;
    --bg-card: #1e222d;
    --bg-card-hover: #252a37;
    --border-color: #2a2e39;
    --border-subtle: #1e222d;
    --text-primary: #d1d4dc;
    --text-secondary: #787b86;
    --text-muted: #5d606b;
    --accent-green: #26a69a;
    --accent-green-light: #4db6ac;
    --accent-green-glow: rgba(38, 166, 154, 0.15);
    --accent-blue: #2962ff;
    --accent-blue-light: #5c7cfa;
    --accent-red: #ef5350;
    --gradient-green: linear-gradient(135deg, #26a69a 0%, #00897b 100%);
    --gradient-blue: linear-gradient(135deg, #2962ff 0%, #1e88e5 100%);
    --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Mono', monospace;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(38, 166, 154, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Selection */
::selection {
    background: var(--accent-green);
    color: var(--bg-primary);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 17, 21, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
    background: #fff;
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius-sm);
}

.logo-icon-img {
    height: 24px;
    width: auto;
}

.logo-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0f1115;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-green);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 18px;
    height: 18px;
    fill: white;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-green);
    border-radius: 2px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-green);
    color: white;
    box-shadow: 0 4px 16px rgba(38, 166, 154, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(38, 166, 154, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--text-muted);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
}

/* Sections */
.section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-green);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 64px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(38, 166, 154, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(41, 98, 255, 0.08), transparent);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(42, 46, 57, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 46, 57, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.value-props {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.value-prop {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding-left: 1rem;
}

.value-prop::before {
    content: '';
    position: absolute;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 50%;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat {
    text-align: left;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

/* Animated Mesh Background */
.mesh-background {
    position: absolute;
    inset: -50px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.mesh-grid {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.mesh-line {
    stroke: var(--border-color);
    stroke-width: 1;
    opacity: 0.5;
}

.mesh-dot {
    fill: var(--text-muted);
    animation: meshPulse 3s ease-in-out infinite;
}

.mesh-dot-accent {
    fill: var(--accent-green);
    animation: meshPulseAccent 2s ease-in-out infinite;
}

.mesh-path {
    fill: none;
    stroke: url(#lineGradient);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: meshDraw 3s ease-in-out infinite;
}

.mesh-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: meshGlow 8s ease-in-out infinite;
}

.mesh-glow-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-green);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.mesh-glow-2 {
    width: 250px;
    height: 250px;
    background: var(--accent-blue);
    bottom: 10%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes meshPulse {
    0%, 100% { opacity: 0.3; r: 3; }
    50% { opacity: 0.8; r: 4; }
}

@keyframes meshPulseAccent {
    0%, 100% { opacity: 0.5; r: 4; }
    50% { opacity: 1; r: 6; }
}

@keyframes meshDraw {
    0% { stroke-dashoffset: 200; opacity: 0; }
    20% { opacity: 1; }
    50% { stroke-dashoffset: 0; opacity: 1; }
    80% { opacity: 1; }
    100% { stroke-dashoffset: -200; opacity: 0; }
}

@keyframes meshGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(20px, -20px) scale(1.1); opacity: 0.5; }
}

.dashboard-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.dashboard-card-1 {
    top: 10%;
    left: 0;
    width: 280px;
    padding: 1.5rem;
    animation-delay: 0s;
}

.dashboard-card-2 {
    top: 35%;
    right: 0;
    width: 260px;
    padding: 1.25rem;
    animation-delay: 1s;
}

.dashboard-card-3 {
    bottom: 10%;
    left: 15%;
    width: 300px;
    padding: 1.5rem;
    animation-delay: 2s;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    background: var(--accent-green-glow);
    color: var(--accent-green);
    border-radius: var(--radius-sm);
}

.card-value {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.card-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-green);
    margin-top: 0.5rem;
}

.mini-chart {
    height: 40px;
    margin-top: 1rem;
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.mini-chart-bar {
    flex: 1;
    background: var(--accent-green);
    opacity: 0.6;
    border-radius: 2px;
    transition: var(--transition);
}

.mini-chart-bar:hover {
    opacity: 1;
}

.workflow-preview {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.workflow-node {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.workflow-connector {
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-blue) 100%);
    position: relative;
}

.workflow-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    border: 4px solid transparent;
    border-left-color: var(--accent-blue);
}

/* Problems Section */
.problems {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.problem-item:hover {
    border-color: var(--accent-red);
    transform: translateX(4px);
}

.problem-icon {
    width: 40px;
    height: 40px;
    background: rgba(239, 83, 80, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    flex-shrink: 0;
}

.problem-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

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

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

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent-green-glow);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.solution-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.solution-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.solution-tag {
    padding: 0.5rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-green);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-green-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

/* Why Us Section */
.why-us {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--accent-green);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(38, 166, 154, 0.2), transparent);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 320px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-brand .logo {
    width: fit-content;
}

.footer-links h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* About Page */
.about-hero {
    padding-top: 140px;
    padding-bottom: 4rem;
    text-align: center;
}

.mission-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.mission-card blockquote {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-primary);
}

/* Founder Section */
.founder-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    filter: grayscale(20%);
    transition: var(--transition);
}

.founder-image img:hover {
    filter: grayscale(0%);
    border-color: var(--accent-green);
}

.founder-image::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid var(--accent-green);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
}

.founder-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.founder-role {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.founder-bio {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founder-quote {
    padding: 1.5rem;
    background: var(--bg-card);
    border-left: 3px solid var(--accent-green);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .founder-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .founder-quote {
        text-align: left;
    }
}

/* Contact Section */
.contact-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-card a {
    color: var(--accent-green);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.team-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.expertise-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.expertise-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: var(--accent-green-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-size: 1.5rem;
}

.expertise-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.expertise-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Process Section */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 4rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
}

.process-step {
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 240px;
}

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-green);
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Use Cases Page */
.usecases-hero {
    padding-top: 140px;
    padding-bottom: 4rem;
    text-align: center;
}

.industry-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.industry-tab {
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.industry-tab:hover {
    border-color: var(--accent-green);
    color: var(--text-primary);
}

.industry-section {
    border-bottom: 1px solid var(--border-color);
}

.industry-section:nth-child(odd) {
    background: var(--bg-secondary);
}

/* Legal Page Styles */
.legal-hero {
    padding-top: 140px;
    padding-bottom: 4rem;
    text-align: center;
}

.legal-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.legal-tab {
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.legal-tab:hover {
    border-color: var(--accent-green);
    color: var(--text-primary);
}

.legal-section {
    border-bottom: 1px solid var(--border-color);
}

.legal-section:nth-child(odd) {
    background: var(--bg-secondary);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-green);
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--accent-green);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content em {
    color: var(--text-muted);
}

/* FAQ Page Styles */
.faq-hero {
    padding-top: 140px;
    padding-bottom: 4rem;
    text-align: center;
}

.faq-section {
    padding-top: 0;
}

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

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-green);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-green);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-green);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.faq-answer strong {
    color: var(--text-primary);
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

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

.usecase-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.usecase-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.usecase-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-green-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.usecase-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
}

.usecase-body {
    padding: 1.5rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.usecase-section {
    margin-bottom: 1.25rem;
}

.usecase-section:last-child {
    margin-bottom: 0;
    margin-top: auto;
}

.usecase-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

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

.usecase-results {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: var(--accent-green-glow);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-green);
}

.usecase-cta {
    padding: 1.5rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.usecase-cta .btn {
    width: 100%;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 999;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--bg-card);
    color: var(--text-primary);
}

.mobile-nav .btn {
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .solution-side {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
    
    .nav-cta .btn {
        white-space: nowrap;
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
    }
    
    .logo {
        gap: 0.4rem;
    }
    
    .logo-icon-img {
        height: 28px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .stat {
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-cta {
        display: none;
    }
}

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

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

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Booking Page Styles */
.booking-hero {
    min-height: 100vh;
    padding-top: 64px;
    position: relative;
    display: flex;
    align-items: center;
}

.booking-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(0, 212, 205, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(41, 98, 255, 0.08), transparent);
    pointer-events: none;
}

.booking-hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.booking-info {
    max-width: 100%;
}

.booking-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.booking-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.booking-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 3rem;
}

.booking-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.booking-feature .feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.booking-feature .feature-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.booking-feature .feature-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.booking-cta-box {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
}

.booking-cta-box .btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
}

.booking-cta-hint {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .booking-features {
        grid-template-columns: 1fr;
    }
}

/* Video Call Mockup */
.booking-visual {
    display: flex;
    justify-content: center;
}

.video-call-mockup {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
}

.mockup-dots span:first-child { background: #ef5350; }
.mockup-dots span:nth-child(2) { background: #ffb74d; }
.mockup-dots span:last-child { background: #66bb6a; }

.mockup-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.mockup-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.mockup-participant {
    aspect-ratio: 4/3;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 2px solid var(--border-color);
}

.mockup-participant.main {
    border-color: var(--accent-green);
}

.mockup-participant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mockup-participant .participant-name {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    font-size: 0.75rem;
    background: rgba(0,0,0,0.7);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    color: white;
}

.mockup-participant.you {
    display: flex;
    align-items: center;
    justify-content: center;
}

.you-placeholder {
    font-size: 3rem;
    opacity: 0.5;
}

.mockup-controls {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
}

.control-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.control-btn.end {
    background: #ef5350;
    border-color: #ef5350;
}

/* Booking Details */
.booking-details {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.details-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.details-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.details-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.detail-number {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-green);
    flex-shrink: 0;
}

.detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.detail-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Calendly Section */
.calendly-section {
    text-align: center;
}

.calendly-embed-container {
    max-width: 900px;
    margin: 0 auto;
}

.calendly-placeholder {
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
}

.calendly-placeholder-content .calendar-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.calendly-placeholder-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.calendly-placeholder-content > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.calendly-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

/* Trust Section */
.trust-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.trust-point span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.trust-point p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.alternative-contact {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.alternative-contact p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

@media (max-width: 968px) {
    .booking-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .booking-info {
        max-width: 100%;
    }
    
    .booking-features {
        text-align: left;
    }
    
    .booking-visual {
        order: -1;
    }
    
    .video-call-mockup {
        max-width: 350px;
    }
    
    .trust-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
