:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #06b6d4;
    --background: #f8fafc;
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
}

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

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
    line-height: 1.3;
}

.text-accent {
    color: var(--accent) !important;
}

.btn-accent {
    background-color: var(--accent);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #0891b2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-accent:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.breadcrumb-nav .nav-separator {
    color: var(--muted);
    padding: 0 1rem;
    list-style: none;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(6, 182, 212, 0.7) 100%);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.typewriter {
    position: relative;
}

.typewriter-text {
    display: inline-block;
}

.typewriter-cursor {
    display: inline-block;
    animation: blink 1s step-end infinite;
}

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

.hero-subtitle,
.hero-cta {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 3s;
}

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

.feature-icon svg {
    display: block;
    margin: 0 auto;
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.angled-divider {
    height: 60px;
    background: linear-gradient(to bottom right, var(--secondary) 49%, var(--primary) 50%);
}

.angled-divider-reverse {
    height: 60px;
    background: linear-gradient(to bottom left, var(--primary) 49%, var(--secondary) 50%);
}

.alternating-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    margin-bottom: 4rem;
    position: relative;
}

.step-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon {
    background: var(--secondary);
    border-radius: 50%;
    padding: 1rem;
    border: 3px solid var(--accent);
}

.bg-gradient-custom {
    background: linear-gradient(135deg, var(--accent) 0%, #3b82f6 100%);
}

.page-hero {
    padding: 5rem 0;
}

.footer {
    margin-top: auto;
}

.footer-brand img {
    filter: brightness(0) invert(1);
}

.hover-accent:hover {
    color: var(--accent) !important;
}

.feature-item {
    display: flex;
    align-items: start;
}

.list-with-icons .list-item {
    display: flex;
    align-items: start;
}

.approach-card {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent);
    height: 100%;
}

.approach-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.industry-tag {
    background: var(--secondary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.industry-tag:hover {
    border-color: var(--accent);
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
}

.deliverable-card {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 0.5rem;
    height: 100%;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.contact-form-wrapper {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-control.error {
    border-color: #dc3545;
}

.map-container {
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.legal-content {
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content h2,
.legal-content h3 {
    margin-top: 2rem;
}

.legal-content ul {
    margin-left: 1.5rem;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    border-top: 2px solid var(--accent);
    padding: 1.5rem 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
    display: block;
}

[data-animate] {
    opacity: 1 !important;
    transform: none !important;
}

.service-features .feature-item {
    display: flex;
    align-items: start;
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .breadcrumb-nav .nav-separator {
        display: none;
    }
    
    .step-item {
        margin-bottom: 3rem;
    }
    
    .step-content {
        margin-top: 1.5rem;
    }
}

@media (min-width: 992px) {
    .step-content {
        padding: 2rem;
    }
}