/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-start: #020617; /* slate-950 */
    --bg-end: #030712;   /* near-black */
    --blue: #3b82f6;     /* blue-500 */
    --cyan: #06b6d4;     /* cyan-500 */
    --indigo: #6366f1;   /* indigo-500 */
    --card-bg-1: rgba(13, 18, 33, 0.9);
    --card-bg-2: rgba(10, 14, 25, 0.9);
    --card-shadow: rgba(2, 6, 23, 0.6);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(59, 130, 246, 0.18), rgba(59, 130, 246, 0) 60%),
        radial-gradient(900px 500px at 10% 110%, rgba(6, 182, 212, 0.12), rgba(6, 182, 212, 0) 60%),
        linear-gradient(180deg, var(--bg-start) 0%, var(--bg-end) 100%);
    background-attachment: scroll, scroll, scroll;
    background-size: cover;   /* Ensures it stays full-screen */
    background-repeat: no-repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: 1200px;
    background: rgba(0, 0, 0, 0.35) !important;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    z-index: 1000;
    height: 64.8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.nav-logo h2 {
    font-family: 'Figtree', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    font-style: italic;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: heroFade 0.8s ease-out forwards;
    animation-delay: 0.15s;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    letter-spacing: 0.09em;
}

.nav-menu a:hover {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: 0.1em;
    transform: translateY(-2px); /* 3D Lift effect */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow for lift effect */
    filter: drop-shadow(0 0 0 1px rgba(59, 130, 246, 0.8)) /* Text outline */
           drop-shadow(0 0 0 2px rgba(6, 182, 212, 0.6)) /* Second outline layer */
           drop-shadow(0 0 0 3px rgba(99, 102, 241, 0.4)); /* Third outline layer */
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    background-size: 200% 200%;
    color: #ffffff !important;
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease, background-position 0.4s ease;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.25);
}

.cta-button:hover {
    background-position: 100% 0;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -35% -10%;
    background: radial-gradient(45% 60% at 20% 30%, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0) 60%),
                radial-gradient(35% 50% at 80% 40%, rgba(6, 182, 212, 0.18) 0%, rgba(6, 182, 212, 0) 60%),
                radial-gradient(40% 55% at 50% 80%, rgba(99, 102, 241, 0.14) 0%, rgba(99, 102, 241, 0) 60%);
    filter: blur(30px);
    animation: heroGradient 6s ease-in-out infinite alternate;
    z-index: 0;
}

/* Particle canvas layer */
.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-container { position: relative; z-index: 1; }

.hero-container { position: relative; z-index: 1; }

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero-content {
    animation: none;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: #000000;
    color: #ffffff;
    padding: 0.2rem 1rem 0.2rem 0.1rem;
    margin-top: 2rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 0.5px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Figtree', sans-serif;
    position: relative;
    overflow: visible;
    width: fit-content;
    height: fit-content;
    opacity: 0;
    animation: heroFade 0.8s ease-out forwards;
    animation-delay: 0.05s;
}

.badge-inner {
    background: linear-gradient(135deg, #3b82f6, #06b6d4) !important;
    color: #ffffff !important;
    padding: 0.10rem 0.5rem !important;
    border-radius: 50px !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3) !important;
    margin-right: 0.7rem !important;
    margin-left: 0 !important;
    display: inline-block !important;
    height: fit-content;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.0em;
    text-align: center;
    font-family: 'Figtree', sans-serif;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    max-width: 30ch;
    text-wrap: balance;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: heroFade 0.9s ease-out forwards;
    animation-delay: 0.2s;
}

/* Keep first line together on desktop to encourage 2-line layout */
.hero-content h1 .headline-line {
    white-space: nowrap;
}
@media (max-width: 768px) {
    .hero-content h1 .headline-line {
        white-space: normal;
    }
}

/* Gradient text for DevelopSuite in hero headline */
.text-gradient {
    background: linear-gradient(135deg, #0ea5e9, #2563eb, #0b3b6e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

/* Ensure hero headline span reliably shows gradient */
.hero-content h1 .text-gradient {
    background: linear-gradient(135deg, #0ea5e9, #2563eb, #0b3b6e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-content p {
    font-size: 1rem;
    color: #888888;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.03em;
    max-width: 58ch;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: heroFade 0.9s ease-out forwards;
    animation-delay: 0.35s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: heroFade 0.9s ease-out forwards;
    animation-delay: 0.5s;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.80rem;
    letter-spacing: 0.02em;
    background-clip: padding-box;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    background-size: 200% 200%;
    color: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.45);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.25);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background-position: 100% 0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.35);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.08);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.2);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Dashboard Preview */
.dashboard-preview {
    background: linear-gradient(180deg, var(--card-bg-1), var(--card-bg-2));
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px var(--card-shadow);
    animation: fadeInRight 1s ease-out;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.18);
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333333;
}

.dashboard-header h3 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.6), rgba(2, 6, 23, 0.6));
    border-radius: 8px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.18);
}

.task-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.task-status {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.task-status.waiting {
    background: #fff3cd;
    color: #856404;
}

.task-status.completed {
    background: #d4edda;
    color: #155724;
}

.task-status.cancelled {
    background: #f8d7da;
    color: #721c24;
}

.task-status.progress {
    background: #cce5ff;
    color: #004085;
}

.task-status.sent {
    background: #d1ecf1;
    color: #0c5460;
}

.task-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.task-content p {
    font-size: 0.75rem;
    color: #cccccc;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.25rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #111111;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.8), rgba(2, 6, 23, 0.8));
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(6, 182, 212, 0.16);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(6, 182, 212, 0.18));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.service-card h4 {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.service-card p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.service-stats {
    display: flex;
    gap: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature {
    background: #333333;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* AI Demo Section */
.ai-demo {
    padding: 100px 0;
    background: #000000;
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.chat-interface {
    background: #111111;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
    border: 1px solid #333333;
}

.chat-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.chat-header p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.chat-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.chat-action {
    background: #222222;
    border: 1px solid #333333;
    padding: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #ffffff;
}

.chat-action:hover {
    background: #000000;
    color: white;
    border-color: #000000;
    transform: translateY(-2px);
}

.demo-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.email-demo, .founders-demo {
    background: #111111;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
    border: 1px solid #333333;
}

.email-demo h4, .founders-demo h4 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.email-tabs {
    display: flex;
    gap: 1rem;
}

.tab {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.tab.active {
    background: #000000;
    color: white;
}

.tab:not(.active) {
    background: #333333;
    color: #cccccc;
}

.founder-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.founder-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: #222222;
    border-radius: 8px;
    border: 1px solid #333333;
}

.founder-info h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.founder-info p {
    font-size: 0.875rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.verified {
    background: #000000;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.founder-contact p {
    font-size: 0.875rem;
    color: #cccccc;
    margin-bottom: 0.25rem;
}

.founder-contact i {
    color: #ffffff;
    margin-right: 0.5rem;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: #111111;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 70px;
    height: 70px;
    background: #000000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.step h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.step p {
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.step-demo {
    background: #111111;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px dashed #333333;
}

.analysis-animation h4 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.analysis-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.analysis-items span {
    background: #222222;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #ffffff;
    border: 1px solid #333333;
}

.code-preview {
    background: #1e293b;
    border-radius: 10px;
    overflow: hidden;
}

.code-preview pre {
    margin: 0;
    padding: 1.5rem;
    color: #e2e8f0;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Case Study Section */
.case-study {
    padding: 100px 0;
    background: #000000;
    color: white;
    text-align: center;
}

.case-study h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.case-study p {
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: #000000;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: #000000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #111111;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e5e5;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #000000;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

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

.pricing-card {
    background: #222222;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #333333;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
    border-color: #000000;
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #cccccc;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
}

.period {
    font-size: 1rem;
    color: #cccccc;
}

.pricing-card p {
    text-align: center;
    color: #cccccc;
    margin-bottom: 2rem;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.features h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.features ul {
    list-style: none;
}

.features li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #000000;
}

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

.testimonial-card {
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2563eb;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    font-style: italic;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #cccccc;
    font-size: 0.875rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #111111;
}

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

.faq-item {
    background: #222222;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: #000000;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter {
    display: flex;
    gap: 0.5rem;
}

.newsletter input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    background: #334155;
    color: white;
}

.newsletter input::placeholder {
    color: #94a3b8;
}

.newsletter button {
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: #f0f0f0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #333333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    text-align: center;
    color: #999999;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Animations */
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes heroGradient {
    0% {
        transform: translate3d(-5%, -3%, 0) scale(1);
        opacity: 0.65;
    }
    25% {
        transform: translate3d(6%, -2%, 0) scale(1.05);
        opacity: 0.8;
    }
    50% {
        transform: translate3d(-4%, 5%, 0) scale(0.98);
        opacity: 0.6;
    }
    75% {
        transform: translate3d(3%, 2%, 0) scale(1.04);
        opacity: 0.75;
    }
    100% {
        transform: translate3d(5%, -4%, 0) scale(1.02);
        opacity: 0.7;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Smooth fade-in for hero headline */
@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(10px);
        filter: blur(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Navbar Scroll Effect */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.65) !important;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Disable heavy fixed backgrounds on mobile */
    body {
        background-attachment: scroll, scroll, scroll !important;
    }

    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        right: 0;
        top: 88px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.9);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        width: 280px;
        height: auto;
        text-align: left;
        transform: translate3d(100%, 0, 0);
        transition: transform 180ms ease, opacity 180ms ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
        padding: 1.5rem 1.25rem;
        border-radius: 16px 0 0 16px;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        border-left: 1px solid rgba(59, 130, 246, 0.25);
        border-top: 1px solid rgba(59, 130, 246, 0.18);
        border-bottom: 1px solid rgba(59, 130, 246, 0.18);
        will-change: transform, opacity;
    }
    
    .nav-menu.active {
        transform: translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0.6rem 0;
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: none;
    }
    
    /* remove stagger for instant open */
    
    .nav-menu a {
        display: block;
        padding: 0rem 1.2rem;
        border: none;
        background: none;
        font-size: 1rem;
        font-weight: 500;
        color: #e2e8f0;
        border-radius: 8px;
        transition: background-color 140ms ease, color 140ms ease;
        position: relative;
        overflow: visible;
        border: 1px solid transparent;
        z-index: 1;
    }
    
    .nav-menu a:hover {
        background: rgba(59, 130, 246, 0.06);
        color: #ffffff !important;
        border-color: rgba(59, 130, 246, 0.35);
        z-index: 2;
    }
    
    .nav-menu a span,
    .nav-menu a strong,
    .nav-menu a em {
        color: inherit !important;
        position: relative;
        z-index: 3;
    }
    
    .nav-menu .cta-button {
        margin: 1rem 0;
        text-align: center;
        background: linear-gradient(135deg, #3b82f6, #06b6d4);
        border: 1px solid rgba(59, 130, 246, 0.4);
        color: white !important;
        padding: 0.8rem 1.5rem;
        border-radius: 10px;
        font-weight: 600;
        font-size: 0.95rem;
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
        transition: all 0.3s ease;
    }
    
    .nav-menu .cta-button:hover {
        background: linear-gradient(135deg, #2563eb, #0891b2);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero-content { max-width: min(92vw, 640px); padding: 0 16px; }
    .hero-content h1 { font-size: 2.15rem; line-height: 1.2; max-width: 20ch; }
    .hero-content h1, .hero-content p { overflow-wrap: anywhere; word-break: normal; }

    /* Disable ticker side fades/mask on mobile */
    .ticker { mask-image: none; -webkit-mask-image: none; }
    .ticker::before, .ticker::after { content: none; width: 0; }
    
    .demo-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .chat-actions {
        grid-template-columns: 1fr;
    }
    
    .impact-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About page specific mobile styles */
.hero-content h1[style*="font-size: 4.5rem"] {
    font-size: 2.5rem !important;
    line-height: 1.2;
    max-width: 18ch;
}

/* About page scroll reveal animations */
.hero-content .badge {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(2px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.hero-content h1[style*="font-size: 4.5rem"] {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(2px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.hero-content p {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(2px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.trust-text[style*="margin-top: 2rem"] {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(2px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.ticker {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(2px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.services-intro {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(2px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.comparison-grid.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

    .trust-text[style*="margin-top: 4rem"] {
        margin-top: 2rem !important;
    }

    .services-intro {
        margin-top: 3rem;
        padding: 0 16px;
    }

    .section-headline {
        font-size: 1.6rem;
        max-width: 20ch;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.95rem;
        max-width: 36ch;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 560px;
        margin-top: 2rem;
        margin-left: auto;
        margin-right: auto;
        padding: 0 16px;
    }

    .hero-benefit-card {
        padding: 1.5rem 1.2rem;
    }

    .hero-benefit-card .icon-badge {
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
    }

    .hero-benefit-card .icon-badge i {
        font-size: 1.3rem;
    }

    .hero-benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .hero-benefit-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .ticker {
        margin-top: 1.5rem;
    }

    .ticker-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content { max-width: 94vw; padding: 0 14px; }
    .hero-content h1 { font-size: 1.7rem; line-height: 1.22; letter-spacing: -0.01em; max-width: 18ch; }
    .hero-content h1, .hero-content p { overflow-wrap: anywhere; word-break: normal; }
    .hero-content p { font-size: 0.9rem; max-width: 34ch; }

    /* Ensure no edge fades on very small screens */
    .ticker { mask-image: none; -webkit-mask-image: none; }
    .ticker::before, .ticker::after { content: none; width: 0; }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        margin-top: 2rem;
    }

    /* About page specific small mobile styles */
    .hero-content h1[style*="font-size: 4.5rem"] {
        font-size: 2rem !important;
        line-height: 1.25;
        max-width: 16ch;
    }

    .trust-text[style*="margin-top: 4rem"] {
        margin-top: 1.5rem !important;
    }

    .services-intro {
        margin-top: 2rem;
        padding: 0 14px;
    }

    .hero-container {
        padding: 0 16px;
    }

    .section-headline {
        font-size: 1.4rem;
        max-width: 18ch;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9rem;
        max-width: 32ch;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        margin-top: 1.5rem;
        margin-left: auto;
        margin-right: auto;
        padding: 0 14px;
    }

    .hero-benefit-card {
        padding: 1.2rem 1rem;
    }

    .hero-benefit-card .icon-badge {
        width: 40px;
        height: 40px;
        margin-bottom: 0.6rem;
    }

    .hero-benefit-card .icon-badge i {
        font-size: 1.2rem;
    }

    .hero-benefit-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .hero-benefit-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .ticker {
    margin-top: 1rem;
}

.ticker-item {
    font-size: 0.8rem;
}

/* About page ticker specific animation */
.about-ticker {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(2px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
    animation: tickerFadeIn 1s ease-out 0.8s forwards;
}

.about-ticker.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@keyframes tickerFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

    .badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.8rem 0.15rem 0.1rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .badge-inner {
        font-size: 0.6rem;
        padding: 0.08rem 0.4rem !important;
    }
}

.hero-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 3rem;
    color: #9ca3af;
    opacity: 0;
    animation: heroFade 0.9s ease-out forwards;
    animation-delay: 0.65s;
}

.hero-socials .sep {
    color: #666666;
    opacity: 0.6;
}

.hero-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: transparent;
    border: none;
    color: #cbd5e1;
    transition: all 0.25s ease;
    text-decoration: none;
}

.hero-socials a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-socials a i {
    font-size: 0.9rem;
    line-height: 1;
}

.trust-text {
    text-align: center;
    margin-top: 8rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: heroFade 0.9s ease-out forwards;
    animation-delay: 0.7s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 9999px;
    background: transparent;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.trust-text h3 {
    font-family: 'Figtree', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ticker {
    position: relative;
    margin-top: 2rem;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.ticker::before,
.ticker::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.ticker::before {
    left: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0,0,0,0));
}

.ticker::after {
    right: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0), rgba(0,0,0,0));
}

.ticker-track {
    display: inline-flex;
    gap: 1.25rem;
    white-space: nowrap;
    will-change: transform;
    animation: tickerScroll 26s linear infinite;
    color: #aeb4bc00;
}

.ticker-item {
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #cbd5e1;
    opacity: 0.85;
}

.ticker-sep {
    color: #3b82f6;
    opacity: 0.7;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* speed variants if needed */
.ticker.fast .ticker-track { animation-duration: 16s; }
.ticker.slow .ticker-track { animation-duration: 38s; }

/* Services intro under hero */
.services-intro {
    margin-top: 6rem;
    text-align: center;
    opacity: 0;
    animation: heroFade 0.9s ease-out forwards;
    animation-delay: 0.75s;
}

.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.7rem;
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 9999px;
    color: #e0e3e7;
    background: rgba(59, 131, 246, 0);
    font-family: 'Figtree', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-headline {
    margin-top: 0.9rem;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.18;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-wrap: balance;
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    margin-top: 0.6rem;
    color: #9ca3af;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.55;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .services-intro { margin-top: 2.5rem; }
    .section-headline { font-size: 2rem; max-width: 28ch; }
}

@media (max-width: 768px) {
    .services-intro { margin-top: 2rem; padding: 0 16px; }
    .section-pill { font-size: 0.7rem; padding: 0.22rem 0.6rem; }
    .section-headline { font-size: 1.8rem; max-width: 22ch; }
    .section-subtitle { font-size: 0.95rem; max-width: 40ch; }
}

@media (max-width: 480px) {
    .services-intro { margin-top: 1.8rem; padding: 0 14px; }
    .section-headline { font-size: 1.55rem; line-height: 1.22; max-width: 22ch; }
    .section-subtitle { font-size: 0.9rem; max-width: 34ch; }
}

/* Services grid under hero */
.services-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.service-tile {
    position: relative;
    padding: 1.6rem 1.5rem;
    border-radius: 12px;
    background: rgba(12, 18, 30, 0.14); /* more transparent */
    border: 1px solid rgba(59, 130, 246, 0.12); /* lighter outline */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(2, 6, 23, 0.22), inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, filter 0.35s ease, opacity 0.7s ease;
    transform: translateZ(0);
    opacity: 0; /* reveal on scroll */
    transform: translateY(24px);
    filter: blur(4px);
    overflow: visible;
    z-index: 0;
}

/* Premium hover effect - forward movement with blue accent glow */
.service-tile:hover {
    transform: translateY(-8px) translateZ(20px) scale(1.02);
    background: rgba(12, 18, 30, 0.22); /* slightly brighter on hover */
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.35),
        0 25px 70px rgba(0, 0, 0, 0.45),
        0 12px 32px rgba(59, 130, 246, 0.25),
        0 0 20px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.45);
}

.service-tile:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.service-tile:hover .tile-inner {
    transform: translateZ(15px);
}

/* Try now button styling - transparent with prominent border */
.tile-btn {
    margin-top: auto;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    color: #e2e8f0;
    font-family: 'Figtree', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(59, 130, 246, 0.45);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    opacity: 1;
    transform: translateY(0);
    align-self: center;
    text-decoration: none;
    display: inline-block;
}

.tile-btn:hover {
    background: rgba(59, 130, 246, 0.12);
    backdrop-filter: blur(12px);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(59, 130, 246, 0.15),
        0 0 8px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border-color: rgba(59, 130, 246, 0.6);
    color: #ffffff;
}

.service-tile h3 {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    color: #ffffff;
    margin-bottom: 0.8rem;
    transition: transform 0.35s ease, text-shadow 0.35s ease;
    text-align: center;
}

.service-tile p {
    color: #aeb4bc;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 0.92rem;
    line-height: 1.55;
    transition: transform 0.35s ease, text-shadow 0.35s ease, color 0.35s ease;
    margin-bottom: 1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-tile:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.12), 0 8px 24px rgba(2, 6, 23, 0.4);
    border-color: rgba(99, 102, 241, 0.38);
}

.service-tile:hover h3,
.service-tile:hover p {
    transform: translateZ(8px);
    text-shadow: 0 0 18px rgba(59, 130, 246, 0.25), 0 0 28px rgba(6, 182, 212, 0.18);
}

/* 3D interactive enhancements for service tiles */
.service-tile {
    perspective: 1000px;
    transform-style: preserve-3d;
    isolation: isolate;
    overflow: hidden;
}

.service-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    background: radial-gradient(120% 120% at 10% 0%, rgba(59,130,246,0.10), rgba(6,182,212,0.06) 40%, transparent 70%);
    opacity: 0.4; /* softer overlay */
    transition: opacity 0.35s ease;
}

/* Glare effect on hover - increased intensity */
.service-tile::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 20%, 
        rgba(255,255,255,0.05) 35%, 
        rgba(255,255,255,0.25) 50%, 
        rgba(255,255,255,0.05) 65%, 
        transparent 80%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    pointer-events: none;
    z-index: 2;
}

.service-tile::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59,130,246,0.55), rgba(6,182,212,0.45), rgba(96,165,250,0.45));
    opacity: 0;
    filter: blur(18px);
    z-index: -1;
    transition: opacity 0.35s ease, filter 0.35s ease;
}

.service-tile.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.service-tile:hover::after {
    opacity: 0.55;
    filter: blur(24px);
}

.service-tile .tile-inner {
    position: relative;
    z-index: 1;
    transform: translateZ(0);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.service-tile:hover .tile-inner {
    transform: rotateX(0) rotateY(0) translateZ(10px);
}

/* Neutral lift on hover, no glow */
.service-tile:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 6px 18px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Disable glow layer on hover */
.service-tile:hover::after {
    opacity: 0;
    filter: none;
}

/* Remove glowing text effects on hover; keep subtle motion only */
.service-tile:hover h3 {
    text-shadow: none;
    filter: none;
    background-position: initial;
    transform: translateY(-1px);
}

.service-tile:hover p {
    color: #aeb4bc;
    text-shadow: none;
}

/* Responsive layout */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
}

@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-tile { padding: 1.3rem 1.2rem; }
    .service-tile h3 { font-size: 1rem; }
    .service-tile p { font-size: 0.9rem; }
}

/* Case studies intro section styling */
.case-studies-intro {
    margin-top: 6rem;
    animation-delay: 1s;
}

/* Premium Showcase Section */
.showcase-container {
    margin-top: 4rem;
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 530px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    opacity: 0;
    /* removed load animation; use scroll reveal instead */
    transform: translateY(24px);
    filter: blur(4px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
    overflow: hidden;
    border: none;
    outline: none;
}

.showcase-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    user-select: none;
    width: 100%;
    will-change: transform;
}

.showcase-track:active,
.showcase-track.dragging {
    cursor: grabbing;
}

.showcase-track.dragging {
    transition: none;
}

.showcase-slide {
    min-width: 100%;
    width: 100%;
    background: rgba(12, 18, 30, 0);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0),
        inset 0 1px 0 rgba(255, 255, 255, 0);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 450px;
    margin: 0;
}

.showcase-slide:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0),
        inset 0 1px 0 rgba(255, 255, 255, 0);
}

.slide-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.showcase-slide:hover .slide-image img {
    transform: scale(1.05);
}

.slide-image::after {
    content: '';
    position: absolute;
    inset: 20px;
    background: linear-gradient(
        135deg,
        rgba(59, 131, 246, 0) 0%,
        rgba(6, 181, 212, 0) 50%,
        transparent 100%
    );
    pointer-events: none;
    border-radius: 12px;
}

.slide-content {
    width: 90%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    background: transparent;
    backdrop-filter: blur(10px);
    margin-left: 0;
}

.slide-content h3 {
    font-family: 'Figtree', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffffb6;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0ea5e9, #2563eb, #0b3b6e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1.3;
    text-align: left;
}

.slide-content p {
    color: #cbd5e1;
    font-family: 'Figtree', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    flex-grow: 1;
    text-align: left;
}

.impact-list {
    margin-bottom: 1rem;
    align-self: flex-start;
}

.impact-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-list li {
    color: #e2e8f0;
    font-family: 'Figtree', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0.3rem;
    padding-left: 1.2rem;
    position: relative;
}

.impact-list li::before {
    content: '•';
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

.slide-btn {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-family: 'Figtree', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    align-self: flex-start;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #0891b2);
}

/* Navigation Buttons */
/* showcase nav removed */
.showcase-nav { display: none !important; }
.nav-btn { display: none !important; }

.nav-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(0.9);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* Edge Blur Effects */


/* Dots Navigation */
.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #3b82f6;
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(59, 130, 246, 0.6);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .showcase-container {
        width: 900px;
        height: 480px;
        padding: 0 30px;
    }
    
    .showcase-slide {
        height: 400px;
        margin: 0 12px;
    }
    
    .slide-content {
        padding: 2rem;
    }
    
    .slide-content h3 {
        font-size: 1.3rem;
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    body, html {
        border: none;
        outline: none;
    }
    
    .showcase-container {
        width: 100%;
        height: auto;
        margin-top: 3rem;
        padding: 0;
        border: none;
        outline: none;
    }
    
    .showcase-slide {
        border-radius: 18px;
        grid-template-columns: 1fr;
        height: auto;
        margin: 0 auto;
        max-width: calc(100% - 16px);
        border: none;
        outline: none;
    }
    
    .slide-image {
        width: 100%;
        height: 220px;
        padding: 12px;
    }
    
    .slide-image img {
        border-radius: 8px;
    }
    
    .slide-image::after {
        inset: 15px;
        border-radius: 8px;
    }
    
    .slide-content {
        width: 100%;
        padding: 1.2rem;
        height: auto;
        align-items: flex-start;
        text-align: left;
    }
    
    .slide-content h3 {
        font-size: 1.2rem;
        text-align: left;
        align-self: flex-start;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        text-align: left;
        align-self: flex-start;
    }
    
    .impact-list {
        gap: 0.5rem;
        align-self: flex-start;
    }
    

    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .edge-blur {
        width: 50px;
    }
}

@media (max-width: 480px) {
    body, html {
        border: none;
        outline: none;
    }
    
    .showcase-container {
        width: 100%;
        height: auto;
        padding: 0;
        border: none;
        outline: none;
    }
    
    .showcase-slide {
        border-radius: 16px;
        grid-template-columns: 1fr;
        height: auto;
        margin: 0 auto;
        max-width: calc(100% - 10px);
        border: none;
        outline: none;
    }
    
    .slide-image {
        height: 180px;
        padding: 10px;
    }
    
    .slide-image img {
        border-radius: 6px;
    }
    
    .slide-image::after {
        inset: 12px;
        border-radius: 6px;
    }
    
    .slide-content {
        padding: 1rem;
        height: auto;
    }
    
    .slide-content h3 {
        font-size: 1.1rem;
    }
    
    .slide-content p {
        font-size: 0.85rem;
    }
    
    .impact-list li {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    

    
    .slide-btn {
        width: 100%;
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .showcase-nav {
        padding: 0 8px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .edge-blur {
        width: 30px;
    }
}

/* Hero Benefits grid under benefits intro */
.hero-benefits {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero-benefit-card {
    position: relative;
    padding: 1.3rem 1.3rem 1.4rem;
    border-radius: 12px;
    background: rgba(12, 18, 30, 0.14);
    border: 1px solid rgba(59, 130, 246, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(2, 6, 23, 0.22), inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, filter 0.35s ease, opacity 0.7s ease;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(3px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    overflow: hidden;
    text-align: center;
    transform-style: preserve-3d;
    will-change: transform;
}

/* service-card style overlays */
.hero-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    background: radial-gradient(120% 120% at 10% 0%, rgba(59,130,246,0.10), rgba(6,182,212,0.06) 40%, transparent 70%);
    opacity: 0.45;
    transition: opacity 0.35s ease;
}

.hero-benefit-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59,130,246,0.55), rgba(6,182,212,0.45), rgba(96,165,250,0.45));
    opacity: 0;
    filter: blur(18px);
    z-index: -1;
    transition: opacity 0.35s ease, filter 0.35s ease;
}

.hero-benefit-card:hover {
    /* keep neutral shadow/border on hover; JS controls transform */
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), 0 8px 20px rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.12);
	transform: translateY(-8px) translateZ(20px);
}

.hero-benefit-card:hover::after {
    opacity: 0;
    filter: none;
}

.hero-benefit-card .icon-badge {
    background: transparent;
    border: none;
	width: 50px;
	height: 50px;
	color: #ffffff;
    box-shadow: none;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	margin-bottom: 0.5rem;
}

.hero-benefit-card .icon-badge i { 
	font-size: 1.5rem; 
}

.hero-benefit-card:hover .icon-badge {
	background: transparent;
	border: none;
	transform: translateY(-2px);
	box-shadow: none;
	color: #ffffff;
}

.hero-benefit-card h3 {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 1.02rem;
    color: #ffffff;
    margin: 0.15rem 0 0.05rem;
}

.hero-benefit-card p {
    color: #aeb4bc;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

/* Reveal when observed */
.hero-benefit-card.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@media (max-width: 1024px) {
    .hero-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 900px; gap: 1rem; }
}

@media (max-width: 640px) {
    .hero-benefits { grid-template-columns: 1fr; gap: 0.9rem; max-width: 560px; }
}

/* Hero CTA card */
.hero-cta {
    margin-top: 7rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 2.25rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(3, 26, 63, 0.35) 0%, rgba(13, 13, 13, 0.295) 30%, rgba(13, 13, 13, 0.356) 75%, rgba(3, 26, 63, 0.35) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.hero-cta-title {
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.hero-cta-sub {
    margin-top: 0.6rem;
    color: #c0c6cf;
    font-size: 1rem;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.1rem;
    padding: 0.65rem 1.15rem;
    border-radius: 8px;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    background: rgba(59,130,246,0.08);
    border-color: rgba(59,130,246,0.75);
    box-shadow: 0 12px 32px rgba(2, 6, 23, 0.36);
}

@media (max-width: 768px) {
    .hero-cta { padding: 1.6rem 1.4rem; }
    .hero-cta-title { font-size: 1.5rem; }
}

/* Mobile nav text visibility override */
@media (max-width: 768px) {
    .navbar .nav-menu a,
    .nav-menu a {
        -webkit-text-fill-color: currentColor !important;
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;
        background: none !important;
        color: #e2e8f0 !important;
    }

    .navbar .nav-menu a:hover,
    .nav-menu a:hover {
        -webkit-text-fill-color: #ffffff !important;
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;
        background: rgba(59,130,246,0.05) !important;
        color: #ffffff !important;
    }
}

/* Revealed states for scroll animations */
.hero-cta.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.site-footer.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Comparison grid (About page) */
.comparison-grid {
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.comparison-card {
    position: relative;
    padding: 1.9rem 1.8rem;
    border-radius: 12px;
    background: rgba(12, 18, 30, 0.14);
    border: 1px solid rgba(59, 130, 246, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(2, 6, 23, 0.22), inset 0 1px 0 rgba(255,255,255,0.03);
}

.comparison-card h3 {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 1.28rem;
    color: #ffffff;
    margin-bottom: 1.1rem;
}

.comparison-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.comparison-list li { color: #aeb4bc; font-family: 'Figtree', sans-serif; font-weight: 500; font-size: 1rem; line-height: 1.6; padding-left: 1.5rem; position: relative; }
.comparison-list li::before { position: absolute; left: 0; top: 0.1rem; font-size: 1.05rem; }
.comparison-list li.good::before { content: "✓"; color: #10b981; }
.comparison-list li.bad::before { content: "✕"; color: #ef4444; }

.comparison-card.ours { border-color: rgba(59,130,246,0.32); box-shadow: 0 10px 28px rgba(59,130,246,0.12); }
.comparison-card.ours h3 { background: linear-gradient(135deg, #0ea5e9, #2563eb, #0b3b6e); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

@media (max-width: 1024px) {
    .comparison-grid { grid-template-columns: 1fr; max-width: 800px; padding: 0 16px; }
}

@media (max-width: 768px) {
    .comparison-grid { grid-template-columns: 1fr; gap: 1rem; max-width: 560px; padding: 0 16px; }
}

@media (max-width: 480px) {
    .comparison-grid { max-width: 420px; padding: 0 16px; }
    .comparison-card { padding: 1.5rem 1.3rem; }
    .comparison-list li { font-size: 0.95rem; }
}

/* New Footer */
.site-footer {
    background: #000000;
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

/* radial blue glow like spec, dark-blue themed */
.site-footer::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 46.6%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(8, 36, 80, 0.3) 0%, rgba(59,130,246,0) 60%);
    filter: blur(40px);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr; /* brand, pages, socials */
    gap: 3rem;
    column-gap: 15rem; /* extra space between left and right blocks */
    position: relative;
    z-index: 1;
}

.footer-left .footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 36px; height: 36px; object-fit: contain; }
.footer-left h3 { font-size: 1.25rem; font-weight: 800; }
.footer-tagline { color: #cbd5e1; margin: 0.6rem 0 1.2rem; line-height: 1.6;font-weight: 100 }

.footer-right { display: grid; grid-template-columns: 1fr 1fr; gap: 10rem; }
.footer-col h4 { margin-bottom: 1rem; font-size: 1rem; font-weight: 500; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: #cbd5e1; text-decoration: none; transition: color 0.25s ease; }
.footer-col a:hover { color: #60a5fa; }

.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.06); margin-top: 1rem; }
.footer-bottom-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; padding-top: 1.1rem; display: flex; justify-content: space-between; gap: 1rem; color: #9aa3b2; flex-wrap: wrap; }
.footer-small, .footer-crafted, .footer-rights { color: #cbd5e1; text-decoration:dotted; }

@media (max-width: 900px) {
    .footer-container { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
    .footer-right { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer-container { grid-template-columns: 1fr; column-gap: 1.5rem; }
    .footer-right { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
}

/* Contact Form Styles */
.contact-section {
    margin-top: 3rem;
    max-width: 1271px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

/* Contact form scroll animations */
.contact-methods-top {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(2px);
    transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.contact-form {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(2px);
    transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
    transition-delay: 0.2s;
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce animation complexity on mobile */
    .hero-benefit-card,
    .service-tile,
    .team-card,
    .comparison-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        will-change: transform;
    }
    
    /* Disable complex effects on mobile */
    .hero-benefit-card:hover,
    .service-tile:hover,
    .team-card:hover,
    .comparison-card:hover {
        transform: translateY(-4px);
        filter: none;
    }
    
    /* Optimize scroll animations for mobile */
    .badge,
    .hero-content h1,
    .hero-content p,
    .hero-buttons,
    .hero-socials,
    .trust-text,
    .ticker,
    .about-ticker,
    .services-intro,
    .section-pill,
    .section-headline,
    .section-subtitle,
    .service-tile,
    .showcase-container,
    .showcase-slide,
    .hero-benefit-card,
    .comparison-grid,
    .team-card,
    .team-intro,
    .hero-cta,
    .contact-methods-top,
    .contact-form {
        transition: opacity 0.4s ease, transform 0.4s ease;
        filter: none;
    }
    
    /* Reduce particle density on mobile */
    .hero-particles {
        opacity: 0.6;
    }
    
    /* Additional performance optimizations */
    .hero-container {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    /* Disable expensive backdrop filters on mobile */
    .navbar,
    .nav-menu,
    .hero-benefit-card,
    .service-tile,
    .team-card,
    .comparison-card,
    .hero-cta {
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        box-shadow: none;
    }
    
    /* Optimize transforms for mobile */
    .hero-benefit-card,
    .service-tile,
    .team-card {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}

/* Desktop performance optimizations */
@media (min-width: 769px) {
    /* Optimize scroll animations for desktop */
    .badge,
    .hero-content h1,
    .hero-content p,
    .hero-buttons,
    .hero-socials,
    .trust-text,
    .ticker,
    .about-ticker,
    .services-intro,
    .section-pill,
    .section-headline,
    .section-subtitle,
    .service-tile,
    .showcase-container,
    .showcase-slide,
    .hero-benefit-card,
    .comparison-grid,
    .team-card,
    .team-intro,
    .hero-cta,
    .contact-methods-top,
    .contact-form {
        transition: opacity 0.4s ease, transform 0.4s ease;
        will-change: opacity, transform;
    }
    
    /* Reduce backdrop filter intensity on desktop for better performance */
    .navbar,
    .nav-menu,
    .hero-benefit-card,
    .service-tile,
    .team-card,
    .comparison-card,
    .hero-cta {
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }
    
    /* Optimize particle rendering for desktop */
    .hero-particles {
        opacity: 0.6;
    }
    
    /* Hardware acceleration for smooth scrolling */
    .hero-container,
    .services-intro,
    .services-grid,
    .showcase-container,
    .hero-cta {
        transform: translateZ(0);
        backface-visibility: hidden;
        will-change: transform;
    }
    
    /* Optimize scroll performance for desktop */
    body {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Reduce box-shadow complexity for better performance */
    .hero-benefit-card,
    .service-tile,
    .team-card,
    .comparison-card {
        box-shadow: 0 4px 20px rgba(2, 6, 23, 0.15);
    }
    
    .hero-benefit-card:hover,
    .service-tile:hover,
    .team-card:hover,
    .comparison-card:hover {
        box-shadow: 0 8px 30px rgba(2, 6, 23, 0.25);
    }
    
    /* Additional desktop scroll optimizations */
    .hero-particles {
        will-change: transform;
        transform: translateZ(0);
    }
    
    /* Reduce transition delays for faster response */
    .contact-form {
        transition-delay: 0.1s;
    }
    
    .contact-methods-top {
        transition-delay: 0.05s;
    }
}

/* Reduce motion for users/devices that prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* Defer rendering of below-the-fold heavy sections */
.showcase-container,
.services-grid,
.team-grid,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 800px 600px;
}

/* Contact form feedback + button states */
.form-status {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #e5e7eb;
}
.form-status.success { color: #34d399; }
.form-status.error { color: #fca5a5; }

.submit-btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Email and Phone Contact Methods */
.contact-methods-top {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-method-card {
    width: 340px;
    height: 99.4px;
    background: linear-gradient(135deg, rgba(7, 26, 66, 0.13) 0%, rgba(16, 15, 68, 0.199) 50%, rgba(59, 131, 246, 0.144) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-method-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(7, 26, 66, 0.1) 100%);
    pointer-events: none;
}

.contact-method-card:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
}

.contact-method-card:hover::before {
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    transition: background 0.3s ease;
}

.contact-method-header {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.contact-method-header i {
    font-size: 25px;
    color: #ffffff;
    width: 25px;
    height: 25px;
}

.contact-method-header span {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
}

.contact-method-value {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    color: rgba(204, 204, 204, 0.8);
    line-height: 1.2;
    text-align: left;
}

/* Contact Form */
.contact-form {
    background: rgba(13, 13, 13, 0.185);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 10px;
    background: rgba(13, 13, 13, 0.253);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 4px;
    color: rgba(204, 204, 204, 0.8);
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    text-align: left;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(16, 15, 68, 0.5);
    background: rgba(13, 13, 13, 0.9);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(204, 204, 204, 0.6);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(7, 26, 66, 0.13) 0%, rgba(16, 15, 68, 0.199) 50%, rgba(59, 131, 246, 0.144) 100%);
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.submit-btn:hover {
    background: rgba(55, 67, 177, 0.8);
    transform: translateY(-1px);
}

/* Mobile responsive for contact form */
@media (max-width: 768px) {
    .contact-section {
        padding: 0 16px;
        max-width: calc(100% - 8px);
    }
    
    .contact-methods-top {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method-card {
        width: 100%;
        max-width: 340px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form {
        padding: 16px;
        max-width: calc(100% - 12px);
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 0 12px;
        max-width: calc(100% - 4px);
    }
    
    .contact-method-card {
        padding: 16px 20px;
        height: auto;
        min-height: 80px;
    }
    
    .contact-form {
        padding: 14px;
        max-width: calc(100% - 6px);
        width: 100%;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 8px;
        font-size: 14px;
    }
}

/* Light color effect for images */
.slide-image img.light-effect {
    filter: brightness(1.2) contrast(1.1) saturate(1.3);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.slide-image img.light-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(6, 182, 212, 0.1) 50%, 
        rgba(99, 102, 241, 0.1) 100%);
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

.slide-image img.light-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

/* Team grid (About page) */
.team-intro { margin-top: 4rem; text-align: center; opacity: 0; animation: heroFade 0.9s ease-out forwards; animation-delay: 0.2s; }
.team-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    display: block;
    position: relative;
    border-radius: 8px;
    background: rgba(13, 18, 33, 0.089);
    border: 1px solid rgba(10, 38, 85, 0.16);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(2, 6, 23, 0.062), inset 0 1px 0 rgba(255,255,255,0.03);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    opacity: 0;
    transform: translateY(24px) translateZ(0);
    filter: blur(4px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    transform-style: preserve-3d;
    isolation: isolate;
    will-change: transform;
}

.team-card:hover {
    border-color: rgba(7, 33, 77, 0);
    box-shadow:
        0 0 0 1px rgba(11, 37, 78, 0),
        0 25px 70px rgba(0, 0, 0, 0.45),
        0 12px 32px rgba(8, 31, 70, 0),
        0 0 20px rgba(10, 40, 87, 0.12);
    transform: translateY(-8px) translateZ(20px) scale(1.02);
}

/* Subtle radial overlay like other tiles */
.team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(120% 120% at 10% 0%, rgba(59,130,246,0.10), rgba(6,182,212,0.06) 40%, transparent 70%);
    opacity: 0.45;
    transition: opacity 0.35s ease;
}

.team-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(6, 31, 71, 0.45), rgba(8, 65, 75, 0.35), rgba(96,165,250,0.35));
    opacity: 0;
    filter: blur(18px);
    z-index: -1;
    transition: opacity 0.35s ease, filter 0.35s ease;
}

.team-card:hover::after {
    opacity: 0.5;
    filter: blur(22px);
}

.team-image { width: 100%; height: 320px; overflow: hidden; }
.team-image img { width: 100%; height: 110%; object-fit:fill; display: block; transition: transform 0.35s ease; }
.team-card:hover .team-image img { transform: scale(1.04); }

.team-info { padding: 0.9rem 1rem 1.2rem; }
.team-top { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.team-top h4 { font-family: 'Figtree', sans-serif; font-weight: 500; font-size: 1rem; color: #ffffff; margin: 0; }
.team-icon { color: #e2e8f0; opacity: 0.9; }
.team-role { color: #aeb4bc; font-size: 0.9rem; margin-top: 0.4rem; }

.team-card.revealed { opacity: 1; transform: translateY(0); filter: blur(0); }

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

@media (max-width: 768px) {
    .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 560px; padding: 0 16px; }
    .team-image { height: 260px; }
    .hero-cta { max-width: calc(100% - 32px); margin-left: auto; margin-right: auto; padding: 2rem 16px; }
    .team-role { text-align: left !important; }
}

@media (max-width: 480px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); max-width: 400px; padding: 0 14px; gap: 0.8rem; }
    .team-image { height: 200px; }
    .team-info { text-align: left; }
    .team-role { text-align: left !important; }
    .hero-cta { max-width: calc(100% - 32px); margin-left: auto; margin-right: auto; padding: 2.5rem 16px; }
}

/* Preloader (no gradients, monogram loop) */
#whatsapp-widget { position: fixed; right: 18px; bottom: 18px; z-index: 1100; }
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 8px; /* keeps tap target without visible circle */
    transition: transform 0.2s ease;
}
.whatsapp-button:hover { transform: translateY(-2px); }
.whatsapp-glyph { font-size: 36px; color: #22c55e; line-height: 1; }

@media (max-width: 768px) {
    #whatsapp-widget { right: 14px; bottom: 14px; }
    .whatsapp-button { padding: 10px; }
    .whatsapp-glyph { font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-button { transition: none; }
}

#preloader {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(59, 130, 246, 0.18), rgba(59, 130, 246, 0) 60%),
        radial-gradient(900px 500px at 10% 110%, rgba(6, 182, 212, 0.12), rgba(6, 182, 212, 0) 60%),
        linear-gradient(180deg, var(--bg-start) 0%, var(--bg-end) 100%);
    z-index: 9999;
    display: grid;
    place-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

#preloader.preloader-hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-ring {
    position: absolute;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-top-color: #3b82f6; /* brand blue */
    border-right-color: #06b6d4; /* cyan variant (solid, not gradient) */
    animation: preloaderSpin 1s linear infinite;
    display: none; /* switched to monogram-only */
}

.preloader-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.45);
    display: none; /* switched to monogram-only */
}

.preloader-mono {
    position: relative;
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.06em;
    color: #ffffff;
    font-size: 1.6rem;
    user-select: none;
    animation: none; /* replaced by SVG monogram icon */
}

@keyframes preloaderSpin {
    0% { transform: rotate(0turn); }
    100% { transform: rotate(1turn); }
}

/* SVG monogram icon (white base ring + rotating blue arc) */
.preloader-icon {
    width: 76px;
    height: 46px;
    display: inline-block;
    filter: drop-shadow(0 6px 16px rgba(59, 130, 246, 0.25));
}

.preloader-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.preloader-arc {
    transform-origin: 50% 50%;
    transform-box: fill-box;
    animation: none; /* keep motion minimal and premium */
}

@keyframes preloaderRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Infinity loop path animation */
.preloader-base { stroke: #ffffff; stroke-opacity: 0.7; stroke-width: 10; fill: none; }
.preloader-dash {
    stroke: #0f3879;
    stroke-width: 10;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 80 280;
    animation: preloaderDash 1.15s linear infinite;
   
}

@keyframes preloaderDash {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -370; }
}

@media (prefers-reduced-motion: reduce) {
    .preloader-dash { animation-duration: 1.8s; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .preloader-ring { animation-duration: 1.6s; }
}
