:root {
    --green: #2d7a4f;
    --green-light: #3d9963;
    --green-lighter: #e8f5e9;
    --green-pale: #f1f8f3;
    --teal: #5a8f7b;
    --brown: #8b6f47;
    --brown-light: #c4a76c;
    --beige: #f5f0e8;
    --cream: #faf8f4;
    --sand: #e8dfd0;
    --earth: #6b5e4f;
    --text-dark: #2c3e2d;
    --text-body: #4a5d4b;
    --text-muted: #7a8a7b;
    --white: #ffffff;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(45, 122, 79, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 122, 79, 0.08);
    --shadow-lg: 0 12px 40px rgba(45, 122, 79, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    color: var(--text-body);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

.navbar {
    padding: 0.875rem 0;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--sand);
    transition: all 0.3s ease;
    z-index: 1000;
}
.navbar.scrolled {
    padding: 0.625rem 0;
    box-shadow: var(--shadow-sm);
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark) !important;
    letter-spacing: -0.3px;
}
.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    font-size: 1.1rem;
    margin-right: 6px;
    vertical-align: middle;
}
.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}
.nav-link:hover { color: var(--green) !important; }
.btn-green {
    background: var(--green);
    color: #fff;
    border: none;
    font-weight: 600;
}
.btn-green:hover {
    background: var(--green-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(45, 122, 79, 0.2);
}
.btn-outline-green {
    border: 1.5px solid var(--green);
    color: var(--green);
    background: transparent;
    font-weight: 600;
}
.btn-outline-green:hover {
    background: var(--green-pale);
    color: var(--green);
}
.btn-white {
    background: #fff;
    color: var(--green);
    border: none;
    font-weight: 600;
}
.btn-white:hover {
    background: var(--green-lighter);
    color: var(--green);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--cream);
    overflow: hidden;
    padding-top: 80px;
}
.hero-decoration {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}
.leaf {
    position: absolute;
    font-size: 3rem;
    opacity: 0.06;
    color: var(--green);
}
.leaf-1 { top: 15%; right: 10%; }
.leaf-2 { bottom: 20%; left: 5%; font-size: 2rem; }
.leaf-3 { top: 60%; right: 30%; font-size: 1.5rem; }
.hero-eyebrow {
    display: inline-block;
    background: var(--green-lighter);
    color: var(--green);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 1.5rem;
    letter-spacing: -0.3px;
}
.text-green { color: var(--green) !important; }
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.85;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    max-width: 440px;
    margin-left: auto;
}
.grid-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid var(--sand);
    transition: all 0.3s ease;
    text-align: center;
}
.grid-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-lighter);
}
.grid-card i {
    font-size: 2rem;
    color: var(--green);
}
.grid-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}
.card-tall { grid-row: span 2; }
.card-tall i { font-size: 2.5rem; }
.card-wide { grid-column: span 2; flex-direction: row; gap: 1rem; }

.section-badge {
    display: inline-block;
    background: var(--green);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.section-badge-light {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-section {
    padding: 5rem 0;
    background: var(--white);
}
.about-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--green-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px dashed rgba(45, 122, 79, 0.15);
}
.about-circle-inner {
    text-align: center;
    color: var(--green);
}
.about-circle-inner i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}
.about-circle-inner span {
    font-size: 0.85rem;
    font-weight: 600;
}
.about-float {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}
.about-float i {
    color: var(--green);
    font-size: 1.25rem;
}
.about-float-1 { top: 10%; left: 10%; }
.about-float-2 { top: 15%; right: 5%; }
.about-float-3 { bottom: 15%; left: 20%; }
.about-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 2rem;
}
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}
.highlight-item i { color: var(--green); font-size: 1.1rem; }

.features-section {
    padding: 5rem 0;
    background: var(--green-pale);
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--sand);
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.25rem;
}
.icon-green { background: linear-gradient(135deg, #2d7a4f, #3d9963); }
.icon-teal { background: linear-gradient(135deg, #5a8f7b, #6fa08e); }
.icon-brown { background: linear-gradient(135deg, #8b6f47, #a08350); }
.icon-sage { background: linear-gradient(135deg, #6b8f71, #7da382); }
.icon-olive { background: linear-gradient(135deg, #7a8a47, #8fa055); }
.icon-copper { background: linear-gradient(135deg, #b87333, #cc8844); }
.feature-card h4 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.625rem;
    color: var(--text-dark);
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.7;
}

.merits-section {
    padding: 5rem 0;
    background: var(--white);
}
.merit-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid var(--sand);
    transition: all 0.3s ease;
    position: relative;
}
.merit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-lighter);
}
.merit-icon-wrap {
    width: 72px;
    height: 72px;
    background: var(--green-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--green);
    margin-bottom: 1.5rem;
}
.merit-card h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.5;
}
.merit-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}
.merit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.merit-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.merit-list li i { color: var(--green); font-size: 1.1rem; }

.flow-section {
    padding: 5rem 0;
    background: var(--green-pale);
}
.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--sand);
    height: 100%;
    transition: all 0.3s ease;
}
.step-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green-lighter);
}
.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--green-lighter);
    position: absolute;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}
.step-icon {
    width: 68px;
    height: 68px;
    background: var(--green-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--green);
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
}
.step-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.step-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
}

.pricing-section {
    padding: 5rem 0;
    background: var(--white);
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid var(--sand);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
    border-color: var(--green);
    box-shadow: 0 8px 32px rgba(45, 122, 79, 0.12);
}
.pricing-card.featured:hover {
    transform: translateY(-6px);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    padding: 0.375rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
.pricing-header h4 {
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}
.pricing-desc { color: var(--text-muted); font-size: 0.85rem; }
.pricing-price {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--sand);
    margin-bottom: 1.5rem;
}
.pricing-price .price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--green);
}
.pricing-price .period { color: var(--text-muted); font-size: 0.85rem; }
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}
.pricing-features li i { color: var(--green); font-size: 1rem; }
.pricing-features li.disabled { color: #b0b8a8; }
.pricing-features li.disabled i { color: #ccc; }

.faq-section {
    padding: 5rem 0;
    background: var(--cream);
}
.faq-accordion .accordion-item {
    border: 1px solid var(--sand);
    margin-bottom: 0.75rem;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    background: var(--white);
}
.faq-accordion .accordion-button {
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    font-size: 0.95rem;
    color: var(--text-dark);
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--green-pale);
    color: var(--green);
    box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.contact-section {
    padding: 5rem 0;
    background: var(--green-pale);
}
.contact-card {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    color: #fff;
}
.contact-card h2 {
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 0.95rem;
}
.contact-info { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}
.contact-item i { color: rgba(255, 255, 255, 0.6); font-size: 1.1rem; }
.contact-card .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}
.contact-card .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}
.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}
.footer-brand .brand-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
}
.footer-desc {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    max-width: 320px;
    line-height: 1.7;
}
.footer-company { font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); }
.footer h5 { color: #fff; font-weight: 600; margin-bottom: 1.25rem; font-size: 0.95rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: #fff; }
.footer-divider { border-color: rgba(255, 255, 255, 0.1); margin: 2rem 0; }
.footer-bottom { text-align: center; font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); }

.stats-section {
    padding: 3rem 0;
    background: var(--white);
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
}
.stat-item {
    padding: 1.5rem;
}
.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.stat-unit {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green-light);
}
.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0;
}

.usecases-section {
    padding: 5rem 0;
    background: var(--cream);
}
.usecase-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--sand);
    transition: all 0.3s ease;
}
.usecase-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.usecase-icon {
    width: 60px;
    height: 60px;
    background: var(--green-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--green);
    margin-bottom: 1.25rem;
}
.usecase-card h4 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.625rem;
    color: var(--text-dark);
}
.usecase-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.7;
}

.cases-section {
    padding: 5rem 0;
    background: var(--cream);
}
.case-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--sand);
    transition: all 0.3s ease;
    position: relative;
}
.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-lighter);
}
.case-quote {
    color: var(--green-lighter);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.case-text {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.case-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--sand);
}
.case-avatar {
    width: 44px;
    height: 44px;
    background: var(--green-lighter);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}
.case-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.case-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.news-section {
    padding: 5rem 0;
    background: var(--white);
}
.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.news-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--sand);
    text-decoration: none;
    transition: all 0.2s ease;
}
.news-item:first-child {
    border-top: 1px solid var(--sand);
}
.news-item:hover {
    padding-left: 0.5rem;
}
.news-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    min-width: 85px;
}
.news-tag {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}
.tag-service { background: var(--green-lighter); color: var(--green); }
.tag-info { background: #e3f2fd; color: #1976d2; }
.tag-media { background: #fff3e0; color: #e65100; }
.news-title {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.news-item:hover .news-title {
    color: var(--green);
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--green) 0%, #1b5e3a 100%);
}
.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}
.cta-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
}
.cta-section .btn-outline-green {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}
.cta-section .btn-outline-green:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}
.cta-section .btn-green {
    background: #fff;
    color: var(--green);
}
.cta-section .btn-green:hover {
    background: var(--green-lighter);
    color: var(--green);
}

.magazine-section {
    padding: 5rem 0;
    background: var(--green-pale);
}
.magazine-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--sand);
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
}
.magazine-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.magazine-card-img {
    background: var(--green-lighter);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.magazine-card-img i {
    font-size: 3rem;
    color: var(--green);
    opacity: 0.5;
}
.magazine-card-body {
    padding: 1.5rem;
}
.magazine-card-date {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}
.magazine-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
    transition: color 0.2s ease;
}
.magazine-card:hover .magazine-card-title {
    color: var(--green);
}

.about-hero {
    position: relative;
    padding: 8rem 0 5rem;
    background: var(--cream);
    overflow: hidden;
}
.about-hero-decoration {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}
.min-vh-80 { min-height: 80vh; }
.about-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 1.25rem;
}
.about-hero-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 480px;
}
.about-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}
.about-visual-ring {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: var(--green-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px dashed rgba(45, 122, 79, 0.12);
}
.about-visual-core {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-visual-icon {
    font-size: 2.5rem;
    color: #fff;
}
.about-visual-label {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}
.about-visual-label i {
    color: var(--green);
    font-size: 1.1rem;
}
.top-label { top: 15%; left: 50%; transform: translateX(-50%); }
.right-label { top: 50%; right: 5%; transform: translateY(-50%); }
.bottom-label { bottom: 15%; left: 50%; transform: translateX(-50%); }

.about-info-section {
    padding: 5rem 0;
    background: var(--white);
}
.info-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    height: 100%;
    border: 1px solid var(--sand);
    transition: all 0.3s ease;
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-lighter);
}
.info-icon {
    width: 52px;
    height: 52px;
    background: var(--green-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--green);
    flex-shrink: 0;
}
.info-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.about-message-section {
    padding: 5rem 0;
    background: var(--green-pale);
}
.message-portrait {
    text-align: center;
}
.portrait-frame {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--green-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}
.portrait-frame i {
    font-size: 4rem;
    color: var(--green);
    opacity: 0.5;
}
.portrait-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.portrait-info span {
    font-size: 0.9rem;
}
.message-content {
    padding-left: 0;
}
.message-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}
.message-divider {
    width: 48px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    margin: 1.25rem 0;
}
.message-content p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}
.message-content p:last-child {
    margin-bottom: 0;
}

.about-vision-section {
    padding: 5rem 0;
    background: var(--white);
}
.vision-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--sand);
    height: 100%;
    transition: all 0.3s ease;
}
.vision-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.vision-icon {
    width: 72px;
    height: 72px;
    background: var(--green-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--green);
    margin: 0 auto 1.5rem;
}
.vision-card h4 {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--green);
    margin-bottom: 0.75rem;
}
.vision-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.about-cta-section {
    padding: 5rem 0;
    background: var(--green-pale);
}

[data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos].aos-animate { opacity: 1; transform: translate(0); }

@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .navbar-collapse {
        background: var(--white);
        padding: 1rem 0;
        border-radius: var(--radius-md);
        margin-top: 0.5rem;
        box-shadow: var(--shadow-md);
    }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-6px); }
    .contact-card { padding: 2.5rem; }
    .stat-number { font-size: 2.25rem; }
    .cta-content h2 { font-size: 1.75rem; }
    .about-hero-title { font-size: 2.25rem; }
    .about-hero-visual { height: 300px; }
    .about-visual-ring { width: 200px; height: 200px; }
}

@media (max-width: 767px) {
    .hero { text-align: center; padding-top: 100px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-image-grid { display: none; }
    .section-title { font-size: 1.75rem; }
    .about-visual { display: none; }
    .contact-card { text-align: center; padding: 2rem; }
    .contact-info { align-items: center; }
    .stat-number { font-size: 2rem; }
    .cta-content h2 { font-size: 1.5rem; }
    .news-item { flex-wrap: wrap; }
    .news-tag { margin-right: 0.5rem; }
    .about-hero-title { font-size: 1.75rem; }
    .about-hero { padding-top: 7rem; padding-bottom: 3rem; }
    .about-hero-visual { display: none; }
    .message-portrait { margin-bottom: 2rem; }
    .portrait-frame { width: 120px; height: 120px; }
    .portrait-frame i { font-size: 3rem; }
}
