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

:root {
    --primary-orange: #FF6B35;
    --primary-orange-dark: #E55A2B;
    --charcoal: #2D3436;
    --charcoal-dark: #1A1F21;
    --electric-cyan: #00D9FF;
    --electric-cyan-dark: #00B8D9;
    --concrete-gray: #636E72;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --error: #D63031;
    --success: #00B894;
    --shadow-brutalist: 4px 4px 0px var(--charcoal);
    --shadow-glass: 0 8px 32px rgba(45, 52, 54, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

strong, p, span, h1, h2, h3, h4, h5, h6 {
    color: inherit;
}

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

a:hover {
    color: var(--electric-cyan);
}

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(45, 52, 54, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary-orange);
    padding: 16px 0;
}

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

.logo {
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 4px;
    box-shadow: 2px 2px 0px var(--electric-cyan);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.nav-link:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.nav-link.active {
    background: var(--electric-cyan);
    color: var(--charcoal-dark);
}

.mobile-menu-btn {
    display: none;
    background: var(--primary-orange);
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: var(--transition-smooth);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(0, 217, 255, 0.08) 50%, transparent 60%), repeating-linear-gradient(-45deg, transparent 0px, transparent 20px, rgba(255, 107, 53, 0.03) 20px, rgba(255, 107, 53, 0.03) 40px);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    background: var(--electric-cyan);
    color: var(--charcoal-dark);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--primary-orange);
    display: block;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: var(--shadow-brutalist);
}

.btn-primary:hover {
    background: var(--primary-orange-dark);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--charcoal);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translate(-2px, -2px);
}

.btn-cyan {
    background: var(--electric-cyan);
    color: var(--charcoal-dark);
    box-shadow: var(--shadow-brutalist);
}

.btn-cyan:hover {
    background: var(--electric-cyan-dark);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--charcoal);
}

.section {
    padding: 100px 0;
    position: relative;
}

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

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

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

.section-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-dark .section-badge {
    background: var(--electric-cyan);
    color: var(--charcoal-dark);
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
}

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

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

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

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

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

.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-brutalist);
    border-color: var(--primary-orange);
}

.card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.card-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card-content {
    padding: 28px;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 3px 3px 0px var(--charcoal);
}

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

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

.card-text {
    font-size: 15px;
    color: var(--concrete-gray);
    line-height: 1.7;
}

.section-dark .card-text {
    color: rgba(255, 255, 255, 0.75);
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 3px solid var(--charcoal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-orange);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

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

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

.feature-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-orange);
    margin-bottom: 16px;
    line-height: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.feature-text {
    font-size: 15px;
    color: var(--concrete-gray);
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 2px solid var(--charcoal);
}

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

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 28px;
}

.service-price {
    display: inline-block;
    background: var(--charcoal);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}

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

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

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 3px solid var(--charcoal);
}

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

.team-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-content {
    padding: 24px;
    text-align: center;
}

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

.team-role {
    font-size: 14px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 14px;
    color: var(--concrete-gray);
    line-height: 1.6;
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--charcoal);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 80px;
    color: var(--primary-orange);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-text {
    font-size: 16px;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
}

.review-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
}

.review-company {
    font-size: 14px;
    color: var(--concrete-gray);
}

.stats-section {
    background: var(--charcoal);
    padding: 60px 0;
}

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

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 3px solid var(--charcoal);
    border-radius: 4px;
    background: var(--white);
    color: var(--charcoal);
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 4px 4px 0px rgba(255, 107, 53, 0.3);
}

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

.contact-info {
    background: var(--charcoal);
    padding: 40px;
    border-radius: 12px;
    color: var(--white);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 12px;
    color: var(--electric-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

.contact-value a {
    color: var(--white);
}

.contact-value a:hover {
    color: var(--electric-cyan);
}

.footer {
    background: var(--charcoal-dark);
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 4px solid var(--primary-orange);
}

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

.footer-brand {
    margin-bottom: 24px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 320px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--electric-cyan);
    padding-left: 8px;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 420px;
    background: var(--charcoal);
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-glass);
    z-index: 9999;
    border: 2px solid var(--primary-orange);
}

.cookie-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.cookie-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

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

.cookie-accept:hover {
    background: var(--primary-orange-dark);
}

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

.cookie-decline:hover {
    border-color: var(--white);
}

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

.faq-item {
    background: var(--white);
    border: 2px solid var(--charcoal);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 24px 28px;
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.05);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-orange);
    transition: var(--transition-smooth);
}

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

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-answer {
    padding: 0 28px 24px;
    max-height: 500px;
}

.faq-text {
    font-size: 16px;
    color: var(--concrete-gray);
    line-height: 1.8;
}

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

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--charcoal);
}

.portfolio-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 52, 54, 0.95) 0%, transparent 100%);
    padding: 32px 24px 24px;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

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

.portfolio-category {
    font-size: 14px;
    color: var(--electric-cyan);
    font-weight: 500;
}

.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
}

.breadcrumb a {
    color: var(--electric-cyan);
    font-size: 14px;
}

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

.page-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.content-block {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.policy-section:last-child {
    border-bottom: none;
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thank-you-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.thank-you-text {
    font-size: 18px;
    color: var(--concrete-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    gap: 24px;
    position: relative;
}

.process-step {
    flex: 1;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 3px solid var(--charcoal);
    position: relative;
    transition: var(--transition-smooth);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-brutalist);
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--primary-orange);
    clip-path: polygon(0 40%, 40% 40%, 40% 0, 60% 0, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0 60%);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 48px;
    height: 48px;
    background: var(--primary-orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    border-radius: 50%;
    margin-bottom: 20px;
}

.process-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.process-text {
    font-size: 15px;
    color: var(--concrete-gray);
    line-height: 1.7;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--charcoal);
}

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

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .process-steps {
        flex-direction: column;
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--charcoal);
        flex-direction: column;
        padding: 20px;
        gap: 8px;
    }

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

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

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

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

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

    .cookie-banner {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 12px 12px 0 0;
    }
}
