/* ===========================
   CSS Reset & Base Styles
   =========================== */

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

:root {
    --primary-blue: #1e5fa8;
    --secondary-blue: #2574cc;
    --dark-blue: #0d3a6b;
    --light-blue: #e8f1f9;
    --accent-blue: #3d8ed9;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --text-light: #777777;
    --white: #ffffff;
    --gray-bg: #f5f7fa;
    --border-gray: #e0e0e0;
    --success-green: #28a745;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Header & Navigation
   =========================== */

.header {
    background: transparent;
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.header .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
    transition: all 0.3s ease;
}

.header.scrolled .container {
    max-width: 1200px;
    padding: 0 20px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.header.scrolled .nav-menu a {
    color: var(--text-dark);
}

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

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

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .lang-btn {
    color: var(--text-dark);
    border-color: var(--border-gray);
}

.header.scrolled .lang-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.lang-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.header.scrolled .lang-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    margin-left: 1rem;
}

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

.header.scrolled .mobile-menu-toggle span {
    background: var(--text-dark);
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    background: var(--dark-blue);
    padding: 0;
}

.hero-bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideshow 15s infinite;
}

.hero-bg-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-bg-slide:nth-child(2) {
    animation-delay: 5s;
}

.hero-bg-slide:nth-child(3) {
    animation-delay: 10s;
}

@keyframes slideshow {
    0% { opacity: 0; }
    5% { opacity: 1; }
    30% { opacity: 1; }
    35% { opacity: 0; }
    100% { opacity: 0; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 95, 168, 0.7) 0%, rgba(13, 58, 107, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

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

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

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out both;
}

.hero-logo img {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeInGlitch 1s ease-out 0.3s both;
    position: relative;
}

.hero-subtitle::before {
    content: attr(data-i18n);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--primary-blue) 50%, transparent 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: scanLine 3s linear infinite;
    opacity: 0.3;
}

@keyframes fadeInGlitch {
    0% {
        opacity: 0;
        transform: translateX(-10px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes scanLine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* ===========================
   Buttons
   =========================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

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

/* ===========================
   Stats Section
   =========================== */

.stats-section {
    padding: 5rem 0;
    background: var(--gray-bg);
}

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

.section-header h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

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

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ===========================
   Problem Section
   =========================== */

.problem-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.problem-content h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.problem-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.problem-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

/* ===========================
   Services Section
   =========================== */

.services-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services-logo {
    position: absolute;
    top: 50%;
    left: -250px;
    transform: translateY(-50%);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

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

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

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

.service-card {
    background: var(--white);
    padding: 1.5rem 2.5rem 2.5rem 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

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

.service-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-logo img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.service-logo-patch {
    height: 120px !important;
    width: 200px !important;
}

.service-logo-patch img {
    width: 200px !important;
    height: auto !important;
    max-width: none !important;
}

.service-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card > p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* ===========================
   How It Works Section
   =========================== */

.how-it-works-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

.process-timeline {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(30, 95, 168, 0.3);
}

.process-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

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

.process-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* ===========================
   Benefits Section
   =========================== */

.benefits-section {
    padding: 5rem 0;
    background: var(--gray-bg);
    position: relative;
    overflow: hidden;
}

.benefits-logo {
    position: absolute;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

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

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

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-gray);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

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

.benefit-card h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* ===========================
   CTA Section
   =========================== */

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(30, 95, 168, 0.85) 0%, rgba(13, 58, 107, 0.85) 100%),
                url('../images/cta-bg.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 58, 107, 0.2);
    pointer-events: none;
}

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

.cta-content h2 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===========================
   Footer
   =========================== */

.footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0a2748 100%);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .roadmap-items {
        flex-wrap: wrap;
    }

    .roadmap-item {
        flex: 0 0 calc(50% - 1rem);
        margin-top: 3rem;
    }

    .roadmap-items::before {
        display: none;
    }

    .roadmap-item::before {
        top: -30px;
        width: 14px;
        height: 14px;
    }

    .roadmap-item:hover::before {
        transform: translateX(-50%) scale(1.15);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 6rem 0 5rem 0;
    }

    .hero-logo img {
        max-width: 300px;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        display: none;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-gray);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        margin-bottom: 0.5rem;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 1rem;
        color: var(--text-dark) !important;
    }

    .lang-switcher {
        margin-left: 1rem;
    }

    .stats-grid,
    .services-grid,
    .process-timeline,
    .benefits-grid,
    .credibility-grid,
    .philosophy-grid,
    .slo-grid,
    .communication-grid,
    .pricing-highlights,
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .roadmap-container {
        margin-top: 1.5rem;
    }

    .roadmap-items {
        flex-direction: column;
        gap: 1.5rem;
    }

    .roadmap-item {
        flex: 1 1 100%;
        margin-top: 2.5rem;
        padding: 1.5rem 1rem;
    }

    .roadmap-item::before {
        top: -25px;
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

    .roadmap-item:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .roadmap-item:hover::before {
        transform: translateX(-50%) scale(1.1);
        box-shadow: 0 0 0 5px rgba(20, 91, 187, 0.1);
    }

    .roadmap-quarter {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .roadmap-item h3 {
        font-size: 1.1rem;
    }

    .roadmap-item p {
        font-size: 0.85rem;
    }

    .roadmap-section {
        padding: 3rem 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ===========================
   Credibility Section
   =========================== */

.credibility-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.credibility-logo {
    position: absolute;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

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

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

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

.credibility-card {
    background: var(--gray-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.credibility-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.credibility-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.credibility-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

.credibility-text {
    text-align: center;
    max-width: 900px;
    margin: 2rem auto 0;
}

.credibility-text p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===========================
   Problem Grid
   =========================== */

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

.problem-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.problem-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* ===========================
   Philosophy Section
   =========================== */

.philosophy-section {
    padding: 5rem 0;
    background: var(--gray-bg);
}

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

.philosophy-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.philosophy-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.philosophy-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ===========================
   Service Badge
   =========================== */

.service-highlight {
    position: relative;
    border: 2px solid var(--success-green);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--success-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ===========================
   SLO Section
   =========================== */

.slo-section {
    padding: 5rem 0;
    background: var(--gray-bg);
}

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

.slo-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.slo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.slo-time {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.slo-card h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.slo-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.slo-options {
    margin-top: 3rem;
    text-align: center;
}

.slo-option {
    background: var(--gray-bg);
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.slo-option h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* ===========================
   Communication Section
   =========================== */

.communication-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.communication-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.communication-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.communication-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
}

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

.communication-card h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.communication-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   Pricing Section
   =========================== */

.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    position: relative;
    overflow-x: hidden;
}

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

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

.pricing-highlight {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.pricing-highlight:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    color: var(--primary-blue);
}

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

.pricing-highlight h3 {
    color: var(--primary-blue);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.pricing-highlight p {
    font-size: 0.95rem;
}

.pricing-table {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-top: 3rem;
}

.pricing-table h3 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-table-wrapper {
    overflow-x: auto;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-gray);
}

.pricing-table th {
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
}

.pricing-table tbody tr:hover {
    background: var(--light-blue);
}

.pricing-table td {
    color: var(--text-gray);
}

.pricing-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

/* ===========================
   Roadmap Section
   =========================== */

.roadmap-section {
    padding: 5rem 0;
    background: var(--white);
}

.roadmap-container {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.roadmap-container {
    position: relative;
    padding: 0;
    margin-top: 2rem;
}

.roadmap-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 2rem;
}

/* Timeline line */
.roadmap-items::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-blue));
    z-index: 0;
    transform-origin: left;
    animation: drawLine 1.5s ease-out forwards;
}

@keyframes drawLine {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.roadmap-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    z-index: 1;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpRoadmap 0.6s ease-out forwards;
}

.roadmap-item:nth-child(1) {
    animation-delay: 0.3s;
}

.roadmap-item:nth-child(2) {
    animation-delay: 0.5s;
}

.roadmap-item:nth-child(3) {
    animation-delay: 0.7s;
}

.roadmap-item:nth-child(4) {
    animation-delay: 0.9s;
}

@keyframes fadeInUpRoadmap {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline dot */
.roadmap-item::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    z-index: 2;
    animation: scaleDot 0.4s ease-out forwards;
}

.roadmap-item:nth-child(1)::before {
    animation-delay: 0.5s;
}

.roadmap-item:nth-child(2)::before {
    animation-delay: 0.7s;
}

.roadmap-item:nth-child(3)::before {
    animation-delay: 0.9s;
}

.roadmap-item:nth-child(4)::before {
    animation-delay: 1.1s;
}

@keyframes scaleDot {
    0% {
        transform: translateX(-50%) scale(0);
    }
    50% {
        transform: translateX(-50%) scale(1.3);
    }
    100% {
        transform: translateX(-50%) scale(1);
    }
}

.roadmap-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(20, 91, 187, 0.25);
    border-color: var(--primary-blue);
}

.roadmap-item:hover::before {
    background: var(--primary-blue);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 8px rgba(20, 91, 187, 0.15);
    transform: translateX(-50%) scale(1.2);
}

.roadmap-item:hover .roadmap-quarter {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.05);
}

.roadmap-quarter {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    background: rgba(20, 91, 187, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.roadmap-item h3 {
    color: var(--dark-blue);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    min-height: 2.5rem;
}

.roadmap-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-gray);
}

/* ===========================
   Animations
   =========================== */

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.section-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for anchor links */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ===========================
   Managed Service Section
   =========================== */
.managed-service-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.managed-service-content {
    margin-top: 3rem;
}

.managed-service-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.managed-reason {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.managed-reason:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.managed-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.managed-icon svg {
    width: 32px;
    height: 32px;
}

.managed-reason h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.managed-reason p {
    color: var(--text-gray);
    line-height: 1.7;
}

.managed-service-highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.highlight-content h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ===========================
   Partner Journey Section
   =========================== */
.partner-journey-section {
    padding: 5rem 0;
    background: var(--white);
}

.partner-journey-content {
    margin-top: 3rem;
}

.journey-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.journey-step {
    flex: 1;
    min-width: 200px;
    background: var(--light-gray);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.journey-step:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.journey-step h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.journey-arrow {
    font-size: 2rem;
    color: var(--accent-blue);
    font-weight: 300;
    flex-shrink: 0;
}

.partner-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-benefit-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-benefit-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
}

.partner-benefit-card h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

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

.partner-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.partner-cta h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.partner-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.partner-cta .btn {
    background: var(--white);
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.partner-cta .btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .journey-steps {
        flex-direction: column;
    }

    .journey-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .managed-service-highlight,
    .partner-cta {
        padding: 2rem 1.5rem;
    }

    .highlight-content h3,
    .partner-cta h3 {
        font-size: 1.5rem;
    }

    .highlight-content p,
    .partner-cta p {
        font-size: 1rem;
    }
}
