:root {
    --primary: #1a365d;
    --secondary: #2d3748;
    --accent: #e53e3e;
    --light: #f7fafc;
    --dark: #1a202c;
    --gray: #718096;
    --white: #ffffff;
    --border: #e2e8f0;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    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: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.nav-desktop a {
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

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

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

.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    padding: 80px 24px 24px;
}

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

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

.nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    cursor: pointer;
}

.hero-magazine {
    display: flex;
    flex-wrap: wrap;
    min-height: 85vh;
    background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
    position: relative;
    overflow: hidden;
}

.hero-magazine::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ffffff10" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23ffffff08" stroke-width="0.5"/></svg>');
    background-size: 200px;
    opacity: 0.3;
}

.hero-content {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    width: fit-content;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-visual {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.hero-image-box {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #4a5568 0%, #2d3748 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.hero-image-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect x="20" y="30" width="160" height="10" rx="2" fill="%23718096"/><rect x="20" y="50" width="120" height="6" rx="2" fill="%234a5568"/><rect x="20" y="65" width="140" height="6" rx="2" fill="%234a5568"/><rect x="20" y="90" width="70" height="50" rx="4" fill="%23e53e3e"/><rect x="100" y="90" width="80" height="50" rx="4" fill="%232d3748"/><rect x="20" y="150" width="160" height="6" rx="2" fill="%234a5568"/><rect x="20" y="165" width="100" height="6" rx="2" fill="%234a5568"/></svg>');
    background-size: cover;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

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

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

.btn-secondary:hover {
    background: var(--light);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

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

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--light);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

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

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

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

.section-subtitle {
    color: var(--gray);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.magazine-main {
    flex: 2 1 600px;
}

.magazine-sidebar {
    flex: 1 1 300px;
}

.article-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.article-image {
    height: 240px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.article-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 240"><rect x="30" y="30" width="120" height="80" rx="8" fill="%23ffffff20"/><rect x="170" y="30" width="200" height="40" rx="4" fill="%23ffffff15"/><rect x="170" y="80" width="160" height="30" rx="4" fill="%23ffffff10"/><circle cx="320" cy="180" r="40" fill="%23ffffff08"/></svg>');
}

.article-content {
    padding: 28px;
}

.article-category {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.article-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-excerpt {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--gray);
}

.sidebar-widget {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.sidebar-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

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

.sidebar-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    color: var(--secondary);
    font-size: 0.95rem;
}

.sidebar-list a:hover {
    color: var(--accent);
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    padding: 60px 0;
    background: var(--primary);
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

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

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

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

.service-desc {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-price-note {
    font-size: 0.85rem;
    color: var(--gray);
}

.two-col {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

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

.two-col-visual {
    flex: 1 1 400px;
}

.two-col-visual-box {
    background: linear-gradient(145deg, #edf2f7 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

.two-col-visual-box::after {
    content: '';
    position: absolute;
    inset: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 200"><rect x="10" y="10" width="280" height="180" rx="8" fill="%23ffffff"/><rect x="25" y="25" width="80" height="60" rx="4" fill="%23e53e3e20"/><rect x="115" y="25" width="160" height="8" rx="2" fill="%231a365d20"/><rect x="115" y="45" width="120" height="6" rx="2" fill="%2371809640"/><rect x="115" y="60" width="140" height="6" rx="2" fill="%2371809640"/><rect x="25" y="100" width="250" height="1" fill="%23e2e8f0"/><rect x="25" y="120" width="100" height="50" rx="4" fill="%231a365d10"/><rect x="140" y="120" width="100" height="50" rx="4" fill="%231a365d10"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.content-list {
    list-style: none;
    margin-top: 24px;
}

.content-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--secondary);
}

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

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 350px;
    max-width: 400px;
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.1;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--secondary);
    line-height: 1.8;
    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: linear-gradient(135deg, var(--primary) 0%, #4a5568 100%);
}

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

.testimonial-role {
    font-size: 0.85rem;
    color: var(--gray);
}

.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, #c53030 100%);
    padding: 80px 40px;
    text-align: center;
    border-radius: 24px;
    margin: 40px auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff10"/></svg>');
    background-size: 30px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

.cta-banner-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.cta-banner-text {
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    font-size: 1.1rem;
    position: relative;
}

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

.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.form-info {
    flex: 1 1 350px;
}

.form-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.form-info p {
    color: var(--gray);
    margin-bottom: 32px;
}

.form-box {
    flex: 1 1 450px;
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.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: 120px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: #c53030;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

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

.footer-col {
    flex: 1 1 200px;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta .btn {
    box-shadow: 0 8px 32px rgba(229, 62, 62, 0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1 1 500px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

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

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

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

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.page-content h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin: 40px 0 20px;
}

.page-content h3 {
    font-size: 1.35rem;
    color: var(--secondary);
    margin: 32px 0 16px;
}

.page-content p {
    margin-bottom: 16px;
    color: var(--secondary);
}

.page-content ul {
    margin: 16px 0 24px 24px;
}

.page-content li {
    margin-bottom: 8px;
    color: var(--secondary);
}

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

.contact-info {
    flex: 1 1 350px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
}

.contact-map {
    flex: 1 1 500px;
    background: var(--light);
    border-radius: 16px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.contact-map::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23e2e8f0" width="400" height="300"/><path d="M0 150 Q100 100 200 150 T400 150" fill="none" stroke="%23cbd5e0" stroke-width="2"/><path d="M0 200 Q100 150 200 200 T400 200" fill="none" stroke="%23cbd5e0" stroke-width="2"/><circle cx="200" cy="150" r="12" fill="%23e53e3e"/><circle cx="200" cy="150" r="6" fill="%23ffffff"/></svg>');
    background-size: cover;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--white);
}

.thanks-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.thanks-text {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 32px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.feature-item {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, #c53030 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

.feature-desc {
    font-size: 0.9rem;
    color: var(--gray);
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 4px;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--accent);
}

.timeline-year {
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

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

.team-card {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.team-photo {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary) 0%, #4a5568 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.team-photo::after {
    content: '';
    position: absolute;
    inset: 20%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

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

.team-role {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.team-bio {
    color: var(--gray);
    font-size: 0.9rem;
}

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

    .hamburger {
        display: flex;
    }

    .hero-content {
        flex: 1 1 100%;
        padding: 60px 24px;
        text-align: center;
    }

    .hero-visual {
        flex: 1 1 100%;
        padding: 20px 24px 60px;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

    .magazine-main,
    .magazine-sidebar {
        flex: 1 1 100%;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 60px 0;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .footer-col {
        flex: 1 1 100%;
    }

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

    .stat-item {
        flex: 1 1 100%;
    }
}
