/* Premium Minimalist Design */

:root {
    --primary: #1a1a1a;
    --secondary: #4a4a4a;
    --text-primary: #1a1a1a;
    --text-secondary: #6b6b6b;
    --text-tertiary: #9b9b9b;
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f5f5f5;
    --border: #e8e8e8;
    --border-light: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.logo-icon {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.cta-button {
    background: var(--primary);
    color: var(--bg-primary);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
}

.cta-button:hover {
    background: var(--secondary);
}

/* Hero */
.hero {
    padding: 160px 0 96px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
}

.hero-background,
.hero-overlay {
    display: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}

.btn {
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--secondary);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 720px;
    margin: 0 auto 80px;
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Image Placeholders */
.image-placeholder {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all 0.2s;
    cursor: pointer;
}

.image-placeholder:hover {
    border-color: var(--border);
}

.image-placeholder span {
    display: none;
}

.image-placeholder p {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.image-placeholder.large {
    aspect-ratio: 3/2;
}

.image-placeholder.small {
    aspect-ratio: 16/9;
}

/* Sections */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-description {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* About */
.about {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    margin-bottom: 96px;
}

.about-text-block {
    margin-bottom: 40px;
}

.about-text-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-text-block p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.credential-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 4px;
}

.credential-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.credential-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.credential-text p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.visual-card {
    position: sticky;
    top: 96px;
}

.license-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

.office-showcase {
    text-align: center;
}

.office-showcase h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 48px;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.office-card {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

.office-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.office-card:hover img {
    transform: scale(1.05);
}

/* Programs */
.programs {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.program-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 40px;
    transition: all 0.2s;
}

.program-card:hover {
    border-color: var(--border);
}

.program-card.featured {
    border-color: var(--primary);
}

.program-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.program-icon {
    display: none;
}

.program-badge {
    background: var(--primary);
    color: var(--bg-primary);
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.program-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.program-tagline {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.program-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.program-features h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-list {
    display: grid;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-icon {
    width: 16px;
    height: 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.program-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.program-image-small {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

.program-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-image-small:hover img {
    transform: scale(1.05);
}

/* Why Us */
.why-us {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 96px;
}

.advantage-card {
    padding: 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    transition: all 0.2s;
}

.advantage-card:hover {
    border-color: var(--border);
}

.advantage-icon {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.advantage-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.advantage-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.team-section {
    text-align: center;
}

.team-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-section > p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.team-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.team-showcase img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

/* Compliance */
.compliance {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
}

.compliance-content {
    max-width: 800px;
    margin: 0 auto;
}

.compliance-text .lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.compliance-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.compliance-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 4px;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

.compliance-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.compliance-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.commitment-box {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 4px;
}

.commitment-box p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.commitment-box strong {
    color: var(--text-primary);
}

/* Contact */
.contact {
    background: var(--bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info-side h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 16px;
}

.method-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-primary);
}

.method-details strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.method-details p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.partnership-note {
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-left: 2px solid var(--primary);
    border-radius: 4px;
}

.partnership-note h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.partnership-note p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.form-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    padding: 40px;
    border-radius: 4px;
}

.form-container h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    background: var(--bg-primary);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full {
    width: 100%;
    cursor: pointer;
    border: none;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 64px 0;
    text-align: center;
}

.footer p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 4px 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .programs-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero {
        padding: 96px 0 64px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid,
    .office-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    section {
        padding: 80px 0;
    }
}
