@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

:root {
    --canvas: #FFFFFF;
    --background: #FAFAFA;
    --surface: #F8F9FA;
    --tertiary: #Eef0f2;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-tertiary: #7A7A7A;
    --accent-primary: #5B9BD5;
    --accent-hover: #3D7AB8;
    --accent-subtle: #E3F2FD;
    --champagne: #D4AF37;
    --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --transition: 200ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.3;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 28px;
    font-weight: 500;
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

strong, b {
    color: inherit;
    font-weight: 600;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

section {
    padding: 120px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    min-height: 44px;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: #FFFFFF;
    transform: scale(1.02);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-primary);
    border: 1.5px solid var(--accent-primary);
}

.btn-secondary:hover {
    background-color: var(--accent-subtle);
    color: var(--accent-hover);
}

.btn-secondary:active {
    transform: scale(0.98);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background-color: transparent;
    z-index: 1000;
    transition: all 300ms ease;
}

header.scrolled {
    background-color: var(--canvas);
    border-bottom: 1px solid var(--tertiary);
    height: 64px;
}

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

.logo {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-primary);
    transition: width 200ms ease-out, left 200ms ease-out;
}

nav a:hover {
    color: var(--text-primary);
}

nav a:hover::after {
    width: 100%;
    left: 0;
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--canvas);
    box-shadow: var(--shadow-hover);
    z-index: 1001;
    transition: right 300ms ease;
    padding: 80px 32px 32px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 1000;
    opacity: 0;
    transition: opacity 300ms ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}

.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    position: relative;
    background: linear-gradient(135deg, rgba(250,250,250,0.95) 0%, rgba(248,249,250,0.8) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 600ms ease forwards 300ms;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-tertiary);
    margin-bottom: 32px;
    max-width: 540px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 500ms ease forwards 700ms;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeScale 400ms ease forwards 1000ms;
}

.hero .btn {
    opacity: 0;
    animation: fadeUp 400ms ease forwards 1000ms;
}

.hero .btn-secondary {
    opacity: 0;
    animation: fadeUp 400ms ease forwards 1100ms;
}

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

@keyframes fadeScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.page-hero {
    padding: 140px 0 80px;
    background-color: var(--surface);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 16px;
}

.breadcrumb {
    font-size: 14px;
    color: var(--text-tertiary);
}

.breadcrumb a {
    color: var(--text-tertiary);
}

.breadcrumb span {
    margin: 0 8px;
}

.breadcrumb current {
    color: var(--text-secondary);
}

.about-section {
    background-color: var(--canvas);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.about-content h2 {
    margin-bottom: 24px;
}

.about-lead {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 540px;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--tertiary);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.services-section {
    background-color: var(--surface);
}

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

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-tertiary);
}

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

.service-card {
    background-color: var(--canvas);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

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

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--accent-primary);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.service-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.service-link {
    font-size: 15px;
    color: var(--accent-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

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

.process-section {
    background-color: var(--canvas);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--tertiary);
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.step-marker {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    z-index: 1;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
}

.advantages-section {
    background-color: var(--surface);
}

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

.advantage-card {
    background-color: var(--canvas);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--tertiary);
    transition: all 250ms ease;
}

.advantage-card:hover {
    border-color: var(--accent-primary);
    background-color: var(--accent-subtle);
}

.advantage-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    color: var(--accent-primary);
}

.advantage-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--text-tertiary);
}

.numbers-section {
    background-color: var(--text-primary);
    color: #FFFFFF;
    text-align: center;
}

.numbers-section h2 {
    color: #FFFFFF;
    margin-bottom: 48px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

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

.number-item .stat-number {
    font-size: 72px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 8px;
}

.number-item .stat-label {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
}

.numbers-mission {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

.team-section {
    background-color: var(--canvas);
}

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

.team-card {
    text-align: center;
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 24px;
    overflow: hidden;
    border: 3px solid var(--tertiary);
    transition: all var(--transition);
}

.team-card:hover .team-photo {
    transform: scale(1.02);
    border-color: var(--accent-primary);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter var(--transition);
}

.team-card:hover .team-photo img {
    filter: grayscale(0%);
}

.team-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.team-exp {
    font-size: 14px;
    color: var(--accent-primary);
}

.faq-section {
    background-color: var(--surface);
}

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

.faq-item {
    border-bottom: 1px solid var(--tertiary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--text-tertiary);
    transition: transform 300ms ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease, padding 300ms ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
}

.reviews-section {
    background-color: var(--canvas);
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 400ms ease-in-out;
}

.review-card {
    flex: 0 0 calc(33.333% - 21px);
    margin-right: 32px;
    background-color: var(--canvas);
    border: 1px solid var(--tertiary);
    border-radius: var(--radius-md);
    padding: 32px;
    position: relative;
}

.review-quote {
    font-size: 48px;
    color: var(--tertiary);
    line-height: 1;
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: serif;
}

.review-card p {
    font-size: 15px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.review-author {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-primary);
}

.review-date {
    font-size: 14px;
    color: var(--text-tertiary);
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--tertiary);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.review-dot.active {
    background-color: var(--accent-primary);
}

.review-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--tertiary);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: all var(--transition);
}

.review-arrow:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.contact-section {
    background-color: var(--surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.contact-item p {
    font-size: 15px;
    color: var(--text-secondary);
}

.contact-map {
    margin-top: 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form h3 {
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid var(--tertiary);
    font-family: inherit;
    font-size: 16px;
    color: var(--text-primary);
    background: none;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

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

.contact-form .btn {
    width: 100%;
}

.form-success {
    display: none;
    text-align: center;
    padding: 48px;
    background-color: var(--accent-subtle);
    border-radius: var(--radius-md);
}

.form-success.show {
    display: block;
}

.form-success p {
    font-size: 18px;
    color: var(--accent-primary);
}

footer {
    background-color: var(--background);
    border-top: 1px solid var(--tertiary);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.social-link:hover {
    background-color: var(--accent-primary);
    color: #FFFFFF;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

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

.footer-column a {
    font-size: 14px;
    color: var(--text-secondary);
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--tertiary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-tertiary);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 400px;
    background-color: var(--canvas);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-hover);
    z-index: 2000;
    display: none;
}

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

.cookie-banner h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.cookie-banner p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

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

.cookie-buttons .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 14px;
}

.blog-section {
    background-color: var(--surface);
}

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

.blog-card {
    background-color: var(--canvas);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

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

.blog-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.blog-content {
    padding: 24px;
}

.blog-date {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.blog-link {
    font-size: 14px;
    color: var(--accent-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.legal-section {
    background-color: var(--canvas);
    padding: 80px 0;
}

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

.legal-content h1 {
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 24px;
    margin: 32px 0 16px;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface);
    padding-top: 72px;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    padding: 48px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: var(--accent-primary);
    font-size: 40px;
}

.thank-you-content h1 {
    font-size: 40px;
    margin-bottom: 16px;
}

.thank-you-content p {
    font-size: 18px;
    margin-bottom: 32px;
}

.detail-service-section {
    background-color: var(--canvas);
}

.detail-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.detail-service-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.detail-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-service-content h1 {
    font-size: 40px;
    margin-bottom: 16px;
}

.detail-service-content .service-price {
    font-size: 24px;
    margin-bottom: 24px;
}

.detail-service-content p {
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 32px;
}

.service-features h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 600;
}

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

    section {
        padding: 80px 0;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .header-inner {
        padding: 0 32px;
    }

    nav ul {
        display: none;
    }

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

    .mobile-menu {
        display: block;
    }

    .about-grid,
    .contact-grid,
    .detail-service-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

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

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

    .review-card {
        flex: 0 0 calc(50% - 16px);
    }
}

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

    section {
        padding: 64px 0;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    .header-inner {
        padding: 0 24px;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

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

    .hero .btn,
    .hero .btn-secondary {
        width: 100%;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }

    .services-grid,
    .advantages-grid,
    .numbers-grid,
    .team-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .review-card {
        flex: 0 0 100%;
    }

    .cookie-banner {
        left: 50%;
        transform: translateX(-50%);
        max-width: calc(100% - 48px);
    }

    .numbers-section .stat-number {
        font-size: 48px;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 32px;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}