:root {
    --bg-white: #ffffff;
    --bg-gray: #f6f5ee;
    --bg-flagship: #e8f3ef;
    --bg-cta: #116853;
    --bg-cta-card: #1f7863;
    --text-main: #141414;
    --text-muted: #666666;
    --accent: #097564;
    --border-color: #e5e5e5;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.5;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.bg-gray {
    background-color: var(--bg-gray);
}

/* Typography */
h1 {
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

h2 {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-title-large {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.margin-bottom {
    margin-bottom: 40px;
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border: none;
}

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

.btn-outline:hover {
    border-color: var(--text-main);
    background-color: var(--text-main);
    color: var(--bg-white);
}

.btn-white {
    background: var(--bg-white);
    color: var(--text-main);
    border: none;
}

.btn-outline-white {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Header */
.header {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
}

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

.nav-links .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.label-with-dot {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 800px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Stats Section */
.stats {
    display: flex;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 80px;
}

.stat-item {
    flex: 1;
    border-right: 1px solid var(--border-color);
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-main);
}

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

.service-flagship {
    background-color: var(--bg-flagship);
    border-radius: var(--border-radius-lg);
    padding: 64px;
    margin-bottom: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-flagship:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.flagship-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.badge {
    background-color: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-number {
    font-family: monospace;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.flagship-content {
    display: flex;
    gap: 48px;
}

.flagship-left {
    flex: 1;
}

.flagship-left p {
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
}

.flagship-right {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
}

.info-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 8px;
}

.info-value {
    font-weight: 600;
    font-size: 1rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: var(--bg-gray);
    color: var(--text-main);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card .service-number {
    margin-bottom: 24px;
}

.service-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-bottom {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    font-size: 0.9rem;
    text-align: center;
}

/* Process Section */
.process {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.process-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    display: flex;
    gap: 32px;
    transition: box-shadow 0.3s ease;
}

.process-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.03);
}

.process-card.full-width {
    grid-column: 1 / -1;
}

.process-number {
    font-size: 3rem;
    font-weight: 300;
    color: #e0e0e0;
    line-height: 1;
    transition: color 0.3s ease;
}

.process-card:hover .process-number, .process-card:nth-child(3) .process-number {
    color: var(--accent);
}

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.process-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

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

.testimonial-card {
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-color);
    padding-left: 24px;
}

.quote-icon {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    font-family: serif;
}

.testimonial-text {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 32px;
    flex-grow: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Team Section */
.team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-avatar {
    width: 80px;
    height: 80px;
    background-color: var(--bg-flagship);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 24px;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-role {
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 4px;
    font-weight: 500;
}

.team-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.team-desc {
    font-size: 0.9rem;
}

/* Calendar Section */
.calendar-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.calendar-container {
    height: 700px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Section */
.cta {
    background-color: var(--bg-cta);
    color: var(--bg-white);
    padding: 80px 0;
}

.cta-container {
    display: flex;
    gap: 80px;
}

.cta-left {
    flex: 1;
}

.cta-label {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.cta-desc {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.contact-info {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-right {
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-card {
    background-color: var(--bg-cta-card);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    gap: 16px;
}

.step-number {
    width: 24px;
    height: 24px;
    background-color: var(--bg-white);
    color: var(--bg-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border-color);
}

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

.copyright {
    font-size: 0.85rem;
    color: var(--text-main);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 500;
}

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

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
    
    h1 { font-size: 4rem; }
    h2 { font-size: 2.5rem; }

    .service-grid, .testimonial-grid {
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .flagship-content, .cta-container, .process-grid {
        flex-direction: column;
    }
    
    .flagship-right, .cta-right {
        width: 100%;
    }

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

    .process-card {
        padding: 32px;
    }

    .stats {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 50%;
        border-bottom: 1px solid var(--border-color);
        padding: 24px;
    }

    .stat-item:nth-child(2), .stat-item:nth-child(4) {
        border-right: none;
    }
}

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

    h1 { font-size: 2.25rem; margin-bottom: 24px; }
    h2 { font-size: 1.75rem; }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .hero-desc {
        font-size: 1.05rem;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .service-grid, .testimonial-grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-card.full-width {
        grid-column: 1;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .stat-item {
        flex: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 24px 0;
    }

    .flagship-top {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .service-flagship {
        padding: 32px;
    }
    
    .testimonial-card {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 24px;
    }
    
    .cta-container {
        gap: 48px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

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

    .contact-info {
        flex-direction: column;
        gap: 24px;
    }

    .footer-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .calendar-container {
        height: 500px;
    }
}
