:root {
    --primary: #1a1f3c;
    --secondary: #3d5a80;
    --accent: #ee6c4d;
    --light: #f8f9fa;
    --dark: #0d1117;
    --text: #2d3748;
    --text-light: #718096;
    --border: #e2e8f0;
    --success: #48bb78;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--light);
}

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

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.ad-disclosure {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    text-align: center;
    padding: 6px 12px;
    letter-spacing: 0.5px;
}

.header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

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

.logo span {
    color: var(--accent);
}

.nav-desktop {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-desktop a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 8px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    background: var(--accent);
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    background: #d35b3e;
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: transform 0.3s ease;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 999;
    flex-direction: column;
    padding: 80px 24px 24px;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

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

.close-nav {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--dark);
}

.hero-magazine {
    display: flex;
    min-height: 85vh;
    background: var(--primary);
    overflow: hidden;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    color: #fff;
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 18px;
    opacity: 0.9;
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: #d35b3e;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.hero-visual {
    flex: 1;
    position: relative;
    background-color: var(--secondary);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.hero-stat {
    display: flex;
    gap: 48px;
}

.hero-stat-item {
    color: #fff;
}

.hero-stat-num {
    font-size: 36px;
    font-weight: 700;
}

.hero-stat-label {
    font-size: 13px;
    opacity: 0.8;
}

.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--primary);
    color: #fff;
}

.section-alt {
    background: #fff;
}

.section-accent {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-dark .section-title {
    color: #fff;
}

.section-accent .section-title {
    color: #fff;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle,
.section-accent .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.magazine-grid {
    display: flex;
    gap: 40px;
}

.magazine-main {
    flex: 2;
}

.magazine-sidebar {
    flex: 1;
}

.article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.article-card-img {
    height: 280px;
    background-color: var(--secondary);
    overflow: hidden;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-card-img img {
    transform: scale(1.05);
}

.article-card-body {
    padding: 32px;
}

.article-card-tag {
    display: inline-block;
    background: rgba(238,108,77,0.1);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.article-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-card-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.article-card-link {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-card-link:hover {
    gap: 12px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.service-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.service-mini:last-child {
    border-bottom: none;
}

.service-mini-name {
    font-weight: 500;
    color: var(--text);
}

.service-mini-price {
    font-weight: 700;
    color: var(--accent);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), #f5a623);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.service-note {
    font-size: 13px;
    color: var(--text-light);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 20px;
}

.service-link:hover {
    gap: 12px;
}

.two-col-section {
    display: flex;
    gap: 80px;
    align-items: center;
}

.two-col-section.reverse {
    flex-direction: row-reverse;
}

.two-col-content {
    flex: 1;
}

.two-col-visual {
    flex: 1;
    position: relative;
}

.two-col-visual-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--secondary);
}

.two-col-visual-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.two-col-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: #fff;
    padding: 20px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.two-col-badge-num {
    font-size: 36px;
    font-weight: 800;
}

.two-col-badge-label {
    font-size: 14px;
}

.content-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.25;
}

.section-dark .content-title {
    color: #fff;
}

.content-text {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.section-dark .content-text {
    color: rgba(255,255,255,0.8);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

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

.feature-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-check svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

.feature-text {
    font-weight: 500;
    color: var(--text);
}

.section-dark .feature-text {
    color: #fff;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-quote {
    font-size: 48px;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary);
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, #f5a623 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-btn {
    background: #fff;
    color: var(--accent);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-section {
    background: var(--light);
    padding: 100px 0;
}

.form-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-wrapper {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(238,108,77,0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--accent);
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--accent);
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.form-submit:hover {
    background: #d35b3e;
    transform: translateY(-2px);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(238,108,77,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
}

.contact-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 600;
    color: var(--text);
}

.footer {
    background: var(--dark);
    color: #fff;
    padding: 80px 0 24px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1.5;
    min-width: 280px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 300px;
}

.footer-col {
    flex: 1;
    min-width: 160px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

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

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

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

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-accept {
    background: var(--accent);
    color: #fff;
}

.cookie-accept:hover {
    background: #d35b3e;
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    border-color: #fff;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.page-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
    background: #fff;
}

.prose {
    max-width: 800px;
    margin: 0 auto;
}

.prose h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 48px 0 20px;
}

.prose h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin: 32px 0 16px;
}

.prose p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.prose ul,
.prose ol {
    margin: 20px 0;
    padding-left: 24px;
    color: var(--text);
}

.prose li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.prose a {
    color: var(--accent);
}

.prose a:hover {
    text-decoration: underline;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light) 0%, #e8f4f8 100%);
    padding: 60px 24px;
}

.thanks-card {
    background: #fff;
    border-radius: 20px;
    padding: 60px 48px;
    text-align: center;
    max-width: 560px;
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.thanks-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.thanks-text {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.thanks-service {
    background: var(--light);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 32px;
}

.thanks-service-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.thanks-service-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.references-section {
    background: var(--light);
    padding: 60px 0;
}

.references-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.references-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reference-item {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.reference-num {
    color: var(--accent);
    font-weight: 600;
    min-width: 24px;
}

.reference-link {
    color: var(--accent);
    word-break: break-all;
}

.reference-link:hover {
    text-decoration: underline;
}

.disclaimer-section {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 24px 32px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
}

.disclaimer-title {
    font-weight: 700;
    color: #92400e;
    margin-bottom: 8px;
}

.disclaimer-text {
    color: #78350f;
    font-size: 14px;
    line-height: 1.7;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.section-dark .stat-num {
    color: #fff;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.section-dark .stat-label {
    color: rgba(255,255,255,0.7);
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card {
    flex: 0 1 280px;
    text-align: center;
}

.team-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--secondary);
    margin: 0 auto 24px;
    overflow: hidden;
}

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

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-role {
    color: var(--text-light);
    font-size: 15px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-main {
    flex: 2;
    min-width: 300px;
}

.contact-sidebar {
    flex: 1;
    min-width: 280px;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.working-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.working-row:last-child {
    border-bottom: none;
}

.working-day {
    font-weight: 500;
    color: var(--text);
}

.working-time {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .magazine-grid {
        flex-direction: column;
    }

    .two-col-section {
        flex-direction: column;
        gap: 48px;
    }

    .two-col-section.reverse {
        flex-direction: column;
    }

    .form-container {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-magazine {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 24px;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-stat {
        gap: 24px;
    }

    .section {
        padding: 60px 0;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .footer-grid {
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .stats-row {
        gap: 40px;
    }

    .form-wrapper {
        padding: 32px 24px;
    }
}
