/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066CC;
    --primary-dark: #003D7A;
    --primary-light: #4D94FF;
    --secondary-color: #00D4AA;
    --secondary-dark: #00A685;
    --accent-color: #FF6B35;
    --dark-bg: #0A1929;
    --dark-surface: #132F4C;
    --light-bg: #F8FAFC;
    --white: #FFFFFF;
    --text-dark: #0F172A;
    --text-medium: #334155;
    --text-light: #64748B;
    --text-lighter: #94A3B8;
    --gradient-primary: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
    --gradient-secondary: linear-gradient(135deg, #00D4AA 0%, #00A685 100%);
    --gradient-hero: linear-gradient(135deg, #0A1929 0%, #0F2439 50%, #132F4C 100%);
    --gradient-accent: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar {
    padding: 24px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.ai-accent {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-base);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: var(--transition-base);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 12px 28px !important;
    background: var(--gradient-primary);
    color: var(--white) !important;
    border-radius: 10px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 160px 0 100px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(0, 212, 170, 0.15), transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.1), transparent 60%);
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0, 212, 170, 0.15);
    border: 1.5px solid rgba(0, 212, 170, 0.4);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    color: var(--secondary-color);
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 56px;
}

.btn {
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--dark-bg);
    box-shadow: 0 4px 14px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 212, 170, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
    display: flex;
    gap: 56px;
    padding-top: 16px;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating Cards */
.hero-image {
    position: relative;
    height: 550px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    display: flex;
    gap: 18px;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-1 {
    top: 50px;
    left: 0;
    animation-delay: 0s;
    max-width: 280px;
}

.card-2 {
    top: 220px;
    right: 0;
    animation-delay: 1s;
    max-width: 300px;
}

.card-3 {
    bottom: 60px;
    left: 40px;
    animation-delay: 2s;
    max-width: 320px;
}

.card-icon {
    font-size: 36px;
    min-width: 48px;
    text-align: center;
}

.card-text {
    color: var(--text-dark);
}

.card-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.card-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(1deg);
    }
}

/* Section Styling */
.section-header {
    margin-bottom: 72px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 102, 204, 0.08);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-description {
    font-size: 19px;
    color: var(--text-light);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF8F5 0%, #FFE8E0 100%);
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
}

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

.problem-stat {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 107, 53, 0.08);
}

.problem-stat:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 53, 0.15);
}

.problem-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.problem-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: grayscale(20%);
}

.problem-stat p {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.7;
}

/* Service Section */
.service-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 72px;
    position: relative;
}

.process-step {
    position: relative;
    padding: 0 20px;
}

.process-step:last-child .step-connector {
    display: none;
}

.step-badge {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
}

.step-content {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    padding: 40px 28px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid rgba(0, 102, 204, 0.08);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step:hover .step-content {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(0, 102, 204, 0.2);
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFF 100%);
}

.process-step:hover .step-badge {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.35);
}

.process-step:hover .step-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(0, 102, 204, 0.08));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.step-icon {
    font-size: 40px;
}

.process-step h3 {
    font-size: 19px;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.process-step p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    flex-grow: 1;
}

.step-connector {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--primary-light) 50%, 
        transparent 100%);
    z-index: 1;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-light);
    font-size: 24px;
    font-weight: bold;
    background: var(--white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.classification-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 120px;
}

.classification-card {
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.classification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: currentColor;
}

.classification-card.auto {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.04), rgba(0, 212, 170, 0.08));
    color: var(--secondary-color);
}

.classification-card.auto:hover {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(0, 212, 170, 0.12));
    box-shadow: 0 12px 28px rgba(0, 212, 170, 0.15);
}

.classification-card.junior {
    border-color: var(--primary-light);
    background: linear-gradient(135deg, rgba(77, 148, 255, 0.04), rgba(77, 148, 255, 0.08));
    color: var(--primary-light);
}

.classification-card.junior:hover {
    background: linear-gradient(135deg, rgba(77, 148, 255, 0.08), rgba(77, 148, 255, 0.12));
    box-shadow: 0 12px 28px rgba(77, 148, 255, 0.15);
}

.classification-card.senior {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.04), rgba(0, 102, 204, 0.08));
    color: var(--primary-color);
}

.classification-card.senior:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(0, 102, 204, 0.12));
    box-shadow: 0 12px 28px rgba(0, 102, 204, 0.15);
}

.classification-card:hover {
    transform: translateY(-6px);
}

.class-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.classification-card h4 {
    font-size: 21px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.classification-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
}

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

.benefit-card {
    background: var(--white);
    padding: 36px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid rgba(0, 102, 204, 0.08);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(0, 102, 204, 0.15);
}

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

.benefit-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.benefit-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.benefit-detail {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.benefit-detail span {
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.before {
    background: linear-gradient(135deg, #FFF5F2 0%, #FFE8E0 100%);
    color: var(--accent-color);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.after {
    background: linear-gradient(135deg, #E0F7F4 0%, #C7F0EA 100%);
    color: var(--secondary-dark);
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.benefit-tag {
    display: inline-block;
    padding: 8px 14px;
    background: linear-gradient(135deg, #F0F7FF 0%, #E6F0FF 100%);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 16px;
    border: 1px solid rgba(0, 102, 204, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tech Section */
.tech-section {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.tech-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(0, 212, 170, 0.08), transparent 70%);
}

.tech-section .section-tag {
    background: rgba(0, 212, 170, 0.15);
    color: var(--secondary-color);
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.tech-section .section-title {
    color: var(--white);
}

.tech-section .section-description {
    color: rgba(255, 255, 255, 0.75);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.tech-card {
    background: linear-gradient(135deg, rgba(19, 47, 76, 0.8) 0%, rgba(19, 47, 76, 0.6) 100%);
    padding: 36px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.tech-card:hover {
    border-color: rgba(0, 212, 170, 0.4);
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(19, 47, 76, 0.9) 0%, rgba(19, 47, 76, 0.7) 100%);
    box-shadow: 0 12px 32px rgba(0, 212, 170, 0.15);
}

.tech-logo {
    font-size: 52px;
    margin-bottom: 20px;
}

.tech-card h4 {
    font-size: 19px;
    margin-bottom: 14px;
    color: var(--secondary-color);
    font-weight: 700;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.7;
}

/* Azure Benefits Section */
.azure-benefits {
    margin: 72px 0 56px;
    padding: 56px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(0, 102, 204, 0.06) 100%);
    border-radius: 28px;
    border: 1px solid rgba(0, 212, 170, 0.2);
    position: relative;
    z-index: 1;
}

.why-azure h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

.azure-reason {
    background: linear-gradient(135deg, rgba(19, 47, 76, 0.8) 0%, rgba(19, 47, 76, 0.6) 100%);
    padding: 36px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 170, 0.25);
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.azure-reason:hover {
    border-color: rgba(0, 212, 170, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 212, 170, 0.2);
    background: linear-gradient(135deg, rgba(19, 47, 76, 0.9) 0%, rgba(19, 47, 76, 0.7) 100%);
}

.reason-icon {
    font-size: 44px;
    margin-bottom: 20px;
}

.azure-reason h4 {
    font-size: 19px;
    margin-bottom: 14px;
    color: var(--secondary-color);
    font-weight: 700;
}

.azure-reason p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.badge {
    padding: 12px 24px;
    background: rgba(0, 212, 170, 0.12);
    border: 1.5px solid rgba(0, 212, 170, 0.4);
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    color: var(--secondary-color);
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.badge:hover {
    background: rgba(0, 212, 170, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.2);
}

/* Risk Section */
.risk-section {
    padding: 100px 0;
    background: var(--white);
}

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

.risk-item {
    padding: 36px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.risk-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-lg);
    border-left-width: 6px;
}

.risk-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.risk-item h4 {
    font-size: 19px;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-weight: 700;
}

.risk-item p {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.7;
}

.risk-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Roadmap Section */
.roadmap-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F0F7FF 0%, #E0EFFF 100%);
}

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

.timeline-item {
    position: relative;
}

.timeline-marker {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    margin: 0 auto 28px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg);
}

.timeline-marker.mvp {
    background: linear-gradient(135deg, #00D4AA, #00BF98);
}

.timeline-marker.scalable {
    background: linear-gradient(135deg, #4D94FF, #0066CC);
}

.timeline-marker.enterprise {
    background: linear-gradient(135deg, #0066CC, #003D7A);
}

.timeline-content {
    background: var(--white);
    padding: 36px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid rgba(0, 102, 204, 0.08);
}

.timeline-content:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.timeline-content h4 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 14px;
    font-weight: 800;
}

.timeline-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.6;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(0, 212, 170, 0.12), transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.cta-content > p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 56px;
    line-height: 1.8;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-form input,
.contact-form textarea {
    padding: 18px 20px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.1);
}

.contact-form textarea {
    width: 100%;
    margin-bottom: 28px;
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn-primary {
    width: 100%;
    font-size: 18px;
    cursor: pointer;
    padding: 18px 36px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    margin-top: 20px;
    line-height: 1.7;
    font-size: 15px;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-column li {
    margin-bottom: 14px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-base);
    display: inline-block;
}

.footer-column a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .tech-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .step-connector {
        display: none;
    }
    
    .hero-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: -0.5px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 17px;
    }
    
    .problem-grid,
    .classification-types,
    .tech-grid,
    .benefits-grid,
    .risk-grid,
    .roadmap-timeline,
    .azure-reasons,
    .process-flow {
        grid-template-columns: 1fr;
    }
    
    .step-connector {
        display: none;
    }
    
    .process-step {
        padding: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .azure-benefits {
        padding: 32px 24px;
    }
    
    .why-azure h3 {
        font-size: 28px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--secondary-color);
    color: var(--dark-bg);
}

::-moz-selection {
    background: var(--secondary-color);
    color: var(--dark-bg);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
