:root {
    --green: #2EBD7E;
    --cyan: #4DC8E8;
    --gradient: linear-gradient(135deg, #2EBD7E, #4DC8E8);
    --gradient-text: linear-gradient(135deg, #2EBD7E, #4DC8E8);
    --dark: #1A1A1A;
    --charcoal: #2B2B2B;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --sky: #E8F8FF;
    --mint: #E6FAF4;
    --white: #FFFFFF;
    --footer-dark: #1A3A3A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ===== NEWS TICKER ===== */
.news-ticker {
    background: var(--gradient);
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
    font-size: 13px;
}

.ticker-inner {
    display: flex;
    gap: 60px;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

@keyframes ticker {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: none;
    transition: box-shadow 0.3s, top 0.3s;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

nav.scrolled {
    top: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    transition: color 0.2s;
    letter-spacing: 0.05em;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-links .cta-btn {
    background: var(--gradient);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
}

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

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

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1528360983277-13d401cdc186?w=1800&q=85') center/cover no-repeat;
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(46, 189, 126, 0.25) 0%, rgba(77, 200, 232, 0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
}

.hero h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 36px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(46, 189, 126, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(46, 189, 126, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: background 0.2s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* Wave divider */
.wave-divider {
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
    width: 100%;
}

/* ===== ABOUT/STATS ===== */
.about-section {
    padding: 80px 40px;
    background: var(--white);
    text-align: center;
}

.section-label {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.5;
}

.section-text {
    font-size: 15px;
    line-height: 2;
    color: var(--gray);
    max-width: 730px;
    margin: 0 auto 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: var(--mint);
    border-radius: 16px;
    padding: 36px 20px;
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

/* ===== SERVICES ===== */
.services-section {
    padding: 80px 40px;
    background: var(--sky);
}

.services-section .section-title {
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(46, 189, 126, 0.15);
}

.card-gradient-bar {
    height: 5px;
    background: var(--gradient);
}

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

.card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.card-body h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-body p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

.card-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.card-link::after {
    content: ' →';
}

/* ===== NEWS ===== */
.news-section {
    padding: 80px 40px;
    background: var(--white);
}

.news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto 40px;
}

.news-more {
    font-size: 13px;
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
}

.news-list {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: var(--dark);
    transition: background 0.2s;
}

.news-item:hover {
    background: var(--mint);
    margin: 0 -16px;
    padding: 20px 16px;
    border-radius: 8px;
}

.news-date {
    font-size: 13px;
    color: var(--gray);
    white-space: nowrap;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
}

.news-tag {
    background: var(--mint);
    color: var(--green);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 10px;
    white-space: nowrap;
    font-weight: 700;
}

.news-title {
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
}

/* ===== INSTAGRAM ===== */
.instagram-section {
    padding: 80px 40px;
    background: var(--mint);
    text-align: center;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    max-width: 900px;
    margin: 40px auto 0;
}

.insta-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #2EBD7E22, #4DC8E822);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--green);
    border: 1px dashed #2EBD7E55;
}

.instagram-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: var(--gradient);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 100px 40px;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1542051841857-5f90071e7989?w=1800&q=85') center/cover no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 189, 126, 0.85), rgba(77, 200, 232, 0.85));
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.cta-content h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-line {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #06C755;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(6, 199, 85, 0.3);
}

.cta-btn-line:hover {
    transform: translateY(-2px);
}

.cta-btn-tel {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: background 0.2s;
}

.cta-btn-tel:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* ===== COMPANY OVERVIEW ===== */
.company-section {
    padding: 80px 40px;
    background: var(--light-gray);
}

.company-section .section-title {
    margin-bottom: 40px;
}

.company-table {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    border-collapse: collapse;
}

.company-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.company-table th {
    text-align: left;
    padding: 18px 20px;
    font-size: 14px;
    color: var(--green);
    font-weight: 700;
    width: 200px;
    vertical-align: top;
}

.company-table td {
    padding: 18px 20px;
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.8;
}

/* PAGE HERO */
.page-hero {
    padding-top: 70px;
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1528360983277-13d401cdc186?w=1800&q=85') center/cover no-repeat;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(46, 189, 126, 0.75), rgba(77, 200, 232, 0.8));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.page-hero-content .en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 0.3em;
    margin-bottom: 12px;
    opacity: 0.9;
}

.page-hero-content h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

/* SECTION COMMONS */
.section-label {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.5;
}

.section-text {
    font-size: 15px;
    line-height: 2;
    color: var(--gray);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* SERVICE BLOCKS */
.service-block {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-block-inner.reverse {
    direction: rtl;
}

.service-block-inner.reverse>* {
    direction: ltr;
}

.service-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4/3;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.service-img:hover img {
    transform: scale(1.04);
}

.service-img-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient);
    color: #fff;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.service-text-wrap .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.service-text-wrap h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.service-text-wrap p {
    font-size: 15px;
    color: var(--gray);
    line-height: 2;
    margin-bottom: 16px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.tag {
    background: var(--mint);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 15px;
}

.btn-gradient {
    display: inline-block;
    margin-top: 28px;
    background: var(--gradient);
    color: #fff;
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(46, 189, 126, 0.35);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 189, 126, 0.45);
}

.service-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 0 40px;
}

/* FLOW */
.flow-section {
    padding: 80px 40px;
    background: var(--sky);
    text-align: center;
}

.flow-section .section-label,
.flow-section .section-title {
    display: block;
    text-align: center;
}

.flow-section .section-title {
    margin-bottom: 50px;
}

.flow-steps {
    display: flex;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.flow-step {
    flex: 1;
    min-width: 150px;
    position: relative;
    text-align: center;
    padding: 0 10px;
}

.flow-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -12px;
    top: 24px;
    color: var(--green);
    font-size: 1.5rem;
    font-weight: 700;
}

.flow-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.flow-step h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.7;
}

/* FEATURES */
.features-section {
    padding: 80px 40px;
    background: var(--white);
    text-align: center;
}

.features-section .section-title {
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.8;
}

/* CASE STUDIES */
.cases-section {
    padding: 80px 40px;
    background: var(--mint);
}

.cases-section .section-label,
.cases-section .section-title {
    text-align: center;
    display: block;
}

.cases-section .section-title {
    margin-bottom: 50px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.case-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.case-card-header {
    background: var(--gradient);
    padding: 20px 24px;
    color: #fff;
}

.case-card-header .case-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.7;
}

.case-card-header h3 {
    font-size: 15px;
    font-weight: 700;
}

.case-card-body {
    padding: 24px;
}

.case-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.case-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 2px solid #eee;
}

.case-col.after h4 {
    border-color: var(--green);
    color: var(--green);
}

.case-col li {
    font-size: 12px;
    color: var(--charcoal);
    line-height: 1.7;
    list-style: none;
    padding-left: 12px;
    position: relative;
}

.case-col li::before {
    content: '·';
    position: absolute;
    left: 0;
}

.case-col.after li::before {
    content: '✓';
    color: var(--green);
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 80px 40px;
    background: var(--white);
    text-align: center;
}

.testimonials-section .section-title {
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
}

.stars {
    color: #FFB800;
    font-size: 18px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.author-info .name {
    font-size: 14px;
    font-weight: 700;
}

.author-info .detail {
    font-size: 12px;
    color: var(--gray);
}

/* FAQ */
.faq-section {
    padding: 80px 40px;
    background: var(--sky);
}

.faq-section .section-label,
.faq-section .section-title {
    text-align: center;
    display: block;
}

.faq-section .section-title {
    margin-bottom: 50px;
}

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

.faq-item {
    border-bottom: 1px solid #ddeeff;
    cursor: pointer;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--charcoal);
}

.faq-q .q-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-right: 14px;
}

.faq-q .toggle {
    color: var(--green);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-q.open .toggle {
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 44px 22px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.9;
}

.faq-a.open {
    display: block;
}

/* ===== FOOTER ===== */
footer {
    background: var(--footer-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 40px 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.footer-brand img {
    height: 36px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    opacity: 0.7;
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.5;
}

.footer-reg {
    font-size: 12px;
    opacity: 0.5;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 5px;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .about-section,
    .services-section,
    .news-section,
    .instagram-section,
    .company-section {
        padding: 60px 20px;
    }

    .service-block {
        padding: 60px 20px;
    }

    .service-block-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-block-inner.reverse {
        direction: ltr;
    }

    .flow-section,
    .features-section,
    .cases-section,
    .testimonials-section,
    .faq-section {
        padding: 60px 20px;
    }

    .flow-steps {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 0px;
    }

    footer {
        padding: 50px 20px 30px;
    }

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

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}