/* ============================================
   CONCEPT 7: MODERN / MINIMAL
   Color: White + Black + Accent (#0066ff)
   Style: Clean, Bold Typography, Geometric
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

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

ul, li {
    list-style: none;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 0;
    background: #fff;
    transition: all 0.4s;
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #111;
}

/* GNB */
.gnb-menu {
    display: flex;
    gap: 40px;
}

.gnb-item {
    position: relative;
}

.gnb-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
}

.link-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #999;
}

.link-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #111;
}

.gnb-link:hover .link-text {
    color: #0066ff;
}

/* Submenu */
.gnb-sub {
    position: absolute;
    top: 100%;
    left: -15px;
    min-width: 200px;
    padding: 15px 0;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.gnb-item:hover .gnb-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gnb-sub li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: #666;
}

.gnb-sub li a:hover {
    color: #0066ff;
    background: #f8f8f8;
}

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

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: #111;
    transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    padding: 150px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-eyebrow .line {
    width: 40px;
    height: 2px;
    background: #0066ff;
}

.hero-eyebrow .text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0066ff;
}

.hero-title {
    margin-bottom: 25px;
}

.hero-title .word {
    display: block;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    color: #111;
}

.hero-title .word.highlight {
    color: #0066ff;
}

.hero-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.hero-visual {
    position: relative;
}

.visual-box {
    aspect-ratio: 1;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-align: center;
    line-height: 1.5;
}

.visual-stats {
    position: absolute;
    bottom: -30px;
    left: -30px;
    display: flex;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.stat-item {
    padding: 25px 35px;
    border-right: 1px solid #eee;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item .num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.stat-item .label {
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: #111;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #0066ff;
}

.btn-primary.large {
    padding: 22px 45px;
    font-size: 1rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: transparent;
    color: #111;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #111;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #111;
    color: #fff;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: #999;
    writing-mode: vertical-rl;
}

.scroll-bar {
    width: 2px;
    height: 50px;
    background: #eee;
    position: relative;
    overflow: hidden;
}

.scroll-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #0066ff;
    animation: scrollMove 2s ease-in-out infinite;
}

@keyframes scrollMove {
    0%, 100% { transform: translateY(-100%); }
    50% { transform: translateY(200%); }
}

/* ============================================
   SECTION COMMON
   ============================================ */

.section-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #0066ff;
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #111;
    margin-top: 8px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.section-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    text-align: right;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
}

.btn-link:hover {
    color: #0066ff;
}

.btn-link svg {
    transition: transform 0.3s;
}

.btn-link:hover svg {
    transform: translateX(5px);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 150px 0;
    background: #fafafa;
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 50px;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.4s;
}

.service-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.service-item:hover {
    padding-left: 20px;
    background: #fff;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 25px;
    min-width: 350px;
}

.service-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #0066ff;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111;
}

.service-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.service-arrow {
    font-size: 1.5rem;
    color: #ccc;
    transition: all 0.3s;
}

.service-item:hover .service-arrow {
    color: #0066ff;
    transform: translateX(5px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 150px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about-left {
    display: flex;
    flex-direction: column;
}

.about-image-placeholder {
    flex: 1;
    margin-top: 30px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    text-align: center;
    line-height: 1.8;
    min-height: 400px;
}

.about-intro h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin-bottom: 25px;
}

.about-intro p {
    font-size: 1rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fafafa;
    transition: all 0.3s;
}

.feature-item:hover {
    background: #f0f0f0;
}

.feature-icon {
    font-size: 1rem;
    color: #0066ff;
}

.feature-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.9rem;
    color: #666;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio-section {
    padding: 150px 0;
    background: #111;
}

.portfolio-section .section-num,
.portfolio-section .section-title {
    color: #fff;
}

.portfolio-section .btn-link {
    color: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 25px;
}

.portfolio-card {
    background: #1a1a1a;
    overflow: hidden;
    transition: all 0.4s;
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-card.featured {
    grid-row: span 2;
}

.card-image {
    height: 200px;
    background: linear-gradient(135deg, #222 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    transition: all 0.4s;
}

.portfolio-card.featured .card-image {
    height: 100%;
    min-height: 400px;
}

.portfolio-card:hover .card-image {
    background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
    color: rgba(255,255,255,0.5);
}

.card-content {
    padding: 25px;
}

.card-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #0066ff;
    margin-bottom: 12px;
}

.card-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.card-content p {
    font-size: 0.9rem;
    color: #888;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 120px 0;
    background: #0066ff;
}

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

.cta-text .section-num {
    color: rgba(255,255,255,0.5);
}

.cta-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.cta-section .btn-primary {
    background: #fff;
    color: #0066ff;
}

.cta-section .btn-primary:hover {
    background: #111;
    color: #fff;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #111;
    padding: 80px 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
    border-bottom: 1px solid #222;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo .logo-mark {
    background: #0066ff;
}

.footer-logo .logo-text {
    color: #fff;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #666;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #0066ff;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col li,
.footer-col a {
    font-size: 0.9rem;
    color: #888;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.copyright {
    font-size: 0.8rem;
    color: #555;
}

/* ============================================
   RESPONSIVE
   ============================================ */

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

    .hero {
        padding: 150px 40px 80px;
    }

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

    .service-header {
        min-width: 280px;
    }
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title .word {
        font-size: 3rem;
    }

    .visual-stats {
        position: static;
        margin-top: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .portfolio-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .portfolio-card.featured .card-image {
        min-height: 300px;
    }

    .footer-top {
        flex-direction: column;
        gap: 50px;
    }
}

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

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

    .gnb {
        display: none;
    }

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

    .hero {
        padding: 120px 25px 60px;
    }

    .hero-title .word {
        font-size: 2.2rem;
    }

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

    .scroll-indicator {
        display: none;
    }

    .services,
    .about-section,
    .portfolio-section {
        padding: 80px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-desc {
        text-align: left;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-header {
        min-width: auto;
    }

    .service-arrow {
        display: none;
    }

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

    .portfolio-card.featured {
        grid-column: span 1;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-text h3 {
        font-size: 1.8rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
}

/* ============================================
   PAGE STYLES
   ============================================ */

/* About Hero */
.about-hero {
    padding: 180px 0 100px;
    background: #fff;
}

.about-hero-content {
    max-width: 800px;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0066ff;
    margin-bottom: 25px;
}

.about-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: #0066ff;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-hero-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* About Greeting */
.about-greeting {
    padding: 120px 0;
    background: #fafafa;
}

.greeting-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.greeting-visual {
    position: relative;
}

.greeting-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
}

.greeting-quote {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #0066ff;
    color: #fff;
    padding: 30px;
    max-width: 200px;
}

.quote-icon {
    font-size: 3rem;
    line-height: 1;
    opacity: 0.3;
    display: block;
    margin-bottom: -20px;
}

.greeting-quote p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
}

.quote-source {
    font-size: 0.8rem;
    opacity: 0.7;
}

.greeting-text-wrap {
    padding-top: 30px;
}

.greeting-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066ff;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #0066ff;
}

.greeting-text p {
    font-size: 1rem;
    color: #555;
    line-height: 2;
    margin-bottom: 20px;
}

.greeting-text strong {
    color: #0066ff;
}

.greeting-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.signature-position {
    font-size: 0.85rem;
    color: #999;
}

.signature-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
}

/* Mission Section */
.about-mission {
    padding: 120px 0;
    background: #fff;
}

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

.mission-card {
    background: #fafafa;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.mission-card:hover {
    border-color: #0066ff;
    background: #fff;
}

.mission-card-header {
    margin-bottom: 25px;
}

.mission-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.mission-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0066ff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.mission-card .mission-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111;
    line-height: 1.7;
}

.mission-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #0066ff;
    transform: scaleX(0);
    transition: transform 0.4s;
}

.mission-card:hover .mission-decoration {
    transform: scaleX(1);
}

/* Values Section */
.about-values {
    padding: 120px 0;
    background: #fafafa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    padding: 35px;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.4s;
}

.value-card:hover {
    border-color: #0066ff;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.1);
}

.value-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1;
    margin-bottom: 20px;
}

.value-card:hover .value-number {
    color: #0066ff;
}

.value-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.value-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* History Section */
.about-history {
    padding: 120px 0;
    background: #fff;
}

.history-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: start;
}

.history-header {
    position: sticky;
    top: 120px;
}

.history-intro {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-top: 25px;
}

.history-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-history .timeline-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #fafafa;
    border-left: 3px solid #e0e0e0;
    transition: all 0.4s;
}

.about-history .timeline-item:hover {
    border-color: #0066ff;
    background: #fff;
}

.about-history .timeline-item.highlight {
    background: #0066ff;
    border-color: #0066ff;
}

.about-history .timeline-item.highlight .timeline-year,
.about-history .timeline-item.highlight .event-month,
.about-history .timeline-item.highlight .event-text {
    color: #fff;
}

.timeline-marker .timeline-year {
    display: inline-block;
    padding: 8px 16px;
    background: #111;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.about-history .timeline-item.highlight .timeline-marker .timeline-year {
    background: rgba(255,255,255,0.2);
}

.timeline-events {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timeline-events li {
    display: flex;
    gap: 15px;
}

.event-month {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0066ff;
    min-width: 35px;
}

.event-text {
    font-size: 0.95rem;
    color: #555;
}

/* Organization Section */
.about-organization {
    padding: 120px 0;
    background: #fafafa;
}

.org-chart-modern {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.org-level.ceo {
    margin-bottom: 15px;
}

.org-level.divisions {
    margin-bottom: 15px;
}

.org-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 35px;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.4s;
}

.org-card:hover {
    border-color: #0066ff;
}

.org-card.ceo-card {
    background: #111;
    border-color: #111;
    padding: 25px 50px;
}

.org-card.ceo-card .org-title {
    color: #fff;
}

.org-card .org-icon {
    font-size: 1.5rem;
}

.org-card .org-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
}

.org-card.division-card {
    background: #0066ff;
    border-color: #0066ff;
}

.org-card.division-card .org-title {
    color: #fff;
}

.org-card.dept-card {
    padding: 12px 20px;
    background: #fafafa;
    font-size: 0.85rem;
    color: #666;
}

.org-connector-vertical {
    width: 2px;
    height: 30px;
    background: #0066ff;
    margin: 8px 0;
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

.services-hero {
    padding: 180px 0 80px;
    background: #fff;
}

.services-hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.services-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0066ff;
    margin-bottom: 25px;
}

.services-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.1rem;
    color: #666;
}

.services-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.service-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 35px;
    background: #fafafa;
    border: 2px solid transparent;
    transition: all 0.4s;
}

.service-nav-item:hover {
    border-color: #0066ff;
    background: #fff;
}

.service-nav-item .nav-icon {
    font-size: 1.8rem;
}

.service-nav-item .nav-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
}

/* Service Detail Section */
.service-detail-section {
    padding: 120px 0;
    background: #fff;
}

.service-detail-section.alt {
    background: #fafafa;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
}

.service-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1;
}

.service-detail-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.service-detail-title p {
    font-size: 1rem;
    color: #666;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.service-info-card {
    padding: 35px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    transition: all 0.4s;
}

.service-detail-section.alt .service-info-card {
    background: #fff;
}

.service-info-card:hover {
    border-color: #0066ff;
}

.service-info-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.service-info-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.service-features-bar {
    display: flex;
    background: #111;
}

.feature-bar-item {
    flex: 1;
    text-align: center;
    padding: 25px 20px;
    border-right: 1px solid #333;
}

.feature-bar-item:last-child {
    border-right: none;
}

.feature-bar-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.feature-bar-desc {
    font-size: 0.8rem;
    color: #888;
}

/* Environment Analysis Grid */
.env-analysis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.env-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.4s;
}

.env-card:hover {
    border-color: #0066ff;
    transform: translateY(-5px);
}

.env-card-visual {
    padding: 40px;
    background: #fafafa;
    text-align: center;
}

.env-icon {
    font-size: 2.5rem;
}

.env-card-content {
    padding: 25px;
}

.env-card-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.env-card-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.env-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #0066ff;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Legal Notice */
.legal-notice {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-left: 3px solid #0066ff;
}

.legal-icon {
    font-size: 1.5rem;
}

.legal-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0066ff;
    margin-bottom: 10px;
}

.legal-content p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

/* Certification Grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.cert-card {
    padding: 30px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    position: relative;
    transition: all 0.4s;
}

.cert-card:hover {
    border-color: #0066ff;
}

.cert-card.main {
    grid-column: span 2;
    background: #fff;
    border-color: #0066ff;
}

.cert-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 12px;
    background: #0066ff;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.cert-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    padding-right: 60px;
}

.cert-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.cert-requirement {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.cert-requirement span {
    padding: 8px 14px;
    background: #111;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Architecture Section */
.architecture-content {
    margin-top: 30px;
}

.architecture-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.architecture-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
}

.architecture-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066ff;
    margin-bottom: 20px;
}

.architecture-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

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

.arch-feature {
    padding: 30px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: all 0.4s;
}

.arch-feature:hover {
    border-color: #0066ff;
}

.arch-feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.arch-feature h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.arch-feature p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Services CTA */
.services-cta {
    padding: 100px 0;
    background: #111;
    text-align: center;
}

.services-cta .cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.services-cta .cta-content p {
    font-size: 1rem;
    color: #888;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: #0066ff;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s;
}

.cta-button:hover {
    background: #0055dd;
}

/* Contact Hero */
.contact-hero {
    padding: 180px 0 80px;
    background: #fff;
    text-align: center;
}

.contact-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0066ff;
    margin-bottom: 25px;
}

.contact-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 1.1rem;
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #fafafa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.contact-info-box {
    padding: 35px;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.4s;
}

.contact-info-box:hover {
    border-color: #0066ff;
}

.contact-box-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0066ff;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 6px;
}

.contact-item p {
    font-size: 0.95rem;
    color: #111;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    margin-top: 60px;
}

.map-section .section-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.map-container {
    background: #fff;
    border: 1px solid #e0e0e0;
}

.map-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.map-tab {
    flex: 1;
    padding: 18px;
    background: transparent;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
}

.map-tab:hover {
    color: #111;
}

.map-tab.active {
    color: #0066ff;
    background: #fafafa;
}

.map-placeholder {
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}

.map-info {
    text-align: center;
    max-width: 400px;
}

.map-icon {
    margin-bottom: 25px;
}

.map-icon svg {
    color: #0066ff;
}

.map-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.map-address {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 5px;
}

.map-directions {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.map-directions p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.map-directions strong {
    color: #0066ff;
}

.map-link {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: #111;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.map-link:hover {
    background: #0066ff;
}

/* ============================================
   PORTFOLIO PAGE STYLES
   ============================================ */

.portfolio-hero {
    padding: 180px 0 80px;
    background: #fff;
}

.portfolio-hero-content {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0066ff;
    margin-bottom: 25px;
}

.portfolio-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.portfolio-hero > .container > p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: #fafafa;
    border: 2px solid transparent;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #0066ff;
    color: #0066ff;
}

.filter-btn.active {
    background: #111;
    border-color: #111;
    color: #fff;
}

/* Portfolio Grid */
.portfolio-grid-section {
    padding: 100px 0;
    background: #fafafa;
}

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

.portfolio-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.4s;
}

.portfolio-item:hover {
    border-color: #0066ff;
    transform: translateY(-5px);
}

.portfolio-item.featured {
    grid-column: span 2;
}

.portfolio-item.featured .portfolio-image {
    height: 350px;
}

.portfolio-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.portfolio-image-placeholder {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    transition: all 0.4s;
}

.portfolio-item:hover .portfolio-image-placeholder {
    background: #0066ff;
    color: rgba(255,255,255,0.5);
}

.portfolio-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.portfolio-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #111;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.4;
}

.portfolio-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 18px;
}

.portfolio-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.portfolio-partner {
    font-size: 0.8rem;
    color: #999;
}

.portfolio-partner strong {
    color: #666;
    margin-right: 5px;
}

.portfolio-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0066ff;
    padding: 5px 12px;
    background: rgba(0, 102, 255, 0.1);
}

.portfolio-load-more {
    text-align: center;
    margin-top: 60px;
}

.btn-load-more {
    padding: 16px 50px;
    background: transparent;
    border: 2px solid #111;
    color: #111;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background: #111;
    color: #fff;
}

/* Stats Section */
.stats-section {
    padding: 120px 0;
    background: #fff;
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

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

.stat-box {
    padding: 35px 25px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: all 0.4s;
}

.stat-box:hover {
    border-color: #0066ff;
}

.stat-box .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #111;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-box .stat-number span {
    font-size: 1.5rem;
    color: #0066ff;
}

.stat-box .stat-label {
    font-size: 0.85rem;
    color: #666;
}

/* Stats Timeline */
.stats-timeline {
    position: relative;
}

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

.timeline-track::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #0066ff 0%, #e0e0e0 100%);
}

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

.stats-timeline .timeline-item:last-child {
    padding-bottom: 0;
}

.stats-timeline .timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: #0066ff;
}

.stats-timeline .timeline-year {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    background: #111;
    padding: 5px 12px;
    margin-bottom: 10px;
}

.stats-timeline .timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
}

.stats-timeline .timeline-content p {
    font-size: 0.85rem;
    color: #666;
}

/* Clients Section */
.clients-section {
    padding: 120px 0;
    background: #fafafa;
}

.clients-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.client-group {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    transition: all 0.4s;
}

.client-group:hover {
    border-color: #0066ff;
}

.client-group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.client-icon {
    font-size: 1.2rem;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.client-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 10px;
    background: #fafafa;
    border: 1px solid transparent;
    transition: all 0.4s;
    cursor: pointer;
}

.client-logo-item:hover {
    border-color: #0066ff;
    background: #fff;
}

.client-logo-placeholder {
    width: 55px;
    height: 55px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
    transition: all 0.4s;
}

.client-logo-item:hover .client-logo-placeholder {
    background: #0066ff;
    color: #fff;
}

.client-logo-item span {
    font-size: 0.75rem;
    color: #666;
    text-align: center;
}

/* ============================================
   SUPPORT PAGE STYLES
   ============================================ */

.support-hero {
    padding: 180px 0 80px;
    background: #fff;
    text-align: center;
}

.support-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.support-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0066ff;
    margin-bottom: 25px;
}

.support-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.support-hero p {
    font-size: 1.1rem;
    color: #666;
}

/* Law Section */
.law-section {
    padding: 100px 0;
    background: #fafafa;
}

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

.law-category-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 35px;
    transition: all 0.4s;
}

.law-category-card:hover {
    border-color: #0066ff;
}

.law-category-card.highlight {
    border-color: #0066ff;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, #fff 100%);
}

.law-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.law-category-icon {
    font-size: 1.3rem;
}

.law-category-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
}

.law-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.law-links li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #fafafa;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.law-links li a:hover {
    background: #111;
    border-color: #111;
}

.law-link-title {
    font-size: 0.9rem;
    color: #555;
    transition: all 0.3s;
}

.law-links li a:hover .law-link-title {
    color: #fff;
}

.law-link-arrow {
    font-size: 1rem;
    color: #0066ff;
    transition: all 0.3s;
}

.law-links li a:hover .law-link-arrow {
    color: #fff;
}

/* Inquiry Section */
.inquiry-section {
    padding: 120px 0;
    background: #fff;
}

.inquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.inquiry-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.inquiry-info > p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.inquiry-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inquiry-contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    transition: all 0.4s;
}

.inquiry-contact-card:hover {
    border-color: #0066ff;
}

.inquiry-contact-card .contact-icon {
    font-size: 1.2rem;
}

.inquiry-contact-card .contact-detail {
    display: flex;
    flex-direction: column;
}

.inquiry-contact-card .contact-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 3px;
}

.inquiry-contact-card .contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: #111;
}

.inquiry-notice {
    margin-top: 30px;
    padding: 18px;
    background: rgba(0, 102, 255, 0.05);
    border-left: 3px solid #0066ff;
}

.inquiry-notice p {
    font-size: 0.85rem;
    color: #0066ff;
    margin: 0;
}

/* Inquiry Form */
.inquiry-form-wrap {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    padding: 45px;
}

.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.inquiry-form .form-group {
    margin-bottom: 0;
}

.inquiry-form .form-group.full {
    grid-column: span 2;
}

.inquiry-form label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 8px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #111;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #0066ff;
}

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

.inquiry-form .btn-submit {
    width: 100%;
    padding: 18px;
    background: #111;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    margin-top: 18px;
}

.inquiry-form .btn-submit:hover {
    background: #0066ff;
}

/* News Section */
.news-section {
    padding: 120px 0;
    background: #fafafa;
}

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

.news-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    position: relative;
    transition: all 0.4s;
}

.news-card:hover {
    border-color: #0066ff;
    transform: translateY(-5px);
}

.news-card.featured {
    grid-column: span 2;
    border-color: #0066ff;
}

.news-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    background: #111;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.news-card-badge.news {
    background: #0066ff;
}

.news-card-badge.hire {
    background: #ff4444;
}

.news-card-content {
    padding: 60px 25px 30px;
}

.news-card-date {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 12px;
}

.news-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    line-height: 1.5;
    margin-bottom: 10px;
}

.news-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card.featured h4 {
    font-size: 1.15rem;
}

/* News Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.pagination-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-btn:hover {
    border-color: #0066ff;
    color: #0066ff;
}

.pagination-btn.active {
    background: #111;
    border-color: #111;
    color: #fff;
}

.pagination-btn.next {
    width: auto;
    padding: 0 18px;
}

/* ============================================
   RESPONSIVE FOR ALL PAGES
   ============================================ */

@media (max-width: 1024px) {
    .greeting-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .greeting-quote {
        position: static;
        max-width: 100%;
        margin-top: 20px;
    }

    .mission-wrapper {
        grid-template-columns: 1fr;
    }

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

    .history-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .history-header {
        position: static;
    }

    .services-nav {
        gap: 12px;
    }

    .service-nav-item {
        padding: 20px 25px;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
    }

    .env-analysis-grid {
        grid-template-columns: 1fr;
    }

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

    .cert-card.main {
        grid-column: span 1;
    }

    .architecture-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .architecture-features {
        grid-template-columns: 1fr;
    }

    .service-features-bar {
        flex-direction: column;
    }

    .feature-bar-item {
        border-right: none;
        border-bottom: 1px solid #333;
    }

    .feature-bar-item:last-child {
        border-bottom: none;
    }

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

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

    .portfolio-item.featured {
        grid-column: span 2;
    }

    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .client-logos {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .inquiry-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .news-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .about-hero,
    .services-hero,
    .contact-hero,
    .portfolio-hero,
    .support-hero {
        padding: 140px 0 60px;
    }

    .about-hero-title,
    .services-hero h2,
    .contact-hero h2,
    .portfolio-hero h2,
    .support-hero h2 {
        font-size: 2.5rem;
    }

    .about-greeting,
    .about-mission,
    .about-values,
    .about-history,
    .about-organization {
        padding: 80px 0;
    }

    .greeting-title {
        font-size: 1.4rem;
    }

    .mission-card {
        padding: 35px 25px;
    }

    .value-card {
        padding: 25px 20px;
    }

    .about-history .timeline-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .org-level {
        flex-direction: column;
        align-items: center;
    }

    .org-card {
        width: 100%;
        max-width: 220px;
    }

    .services-nav {
        flex-direction: column;
        align-items: center;
    }

    .service-nav-item {
        width: 100%;
        max-width: 280px;
        flex-direction: row;
        justify-content: center;
    }

    .service-detail-section {
        padding: 80px 0;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 12px;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .service-detail-title h3 {
        font-size: 1.5rem;
    }

    .service-info-card {
        padding: 25px 20px;
    }

    .services-cta {
        padding: 80px 0;
    }

    .services-cta .cta-content h3 {
        font-size: 1.8rem;
    }

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

    .portfolio-item.featured {
        grid-column: span 1;
    }

    .portfolio-item.featured .portfolio-image {
        height: 220px;
    }

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

    .stat-box {
        padding: 25px 15px;
    }

    .stat-box .stat-number {
        font-size: 2.2rem;
    }

    .client-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .client-logo-placeholder {
        width: 45px;
        height: 45px;
        font-size: 0.7rem;
    }

    .law-category-card {
        padding: 25px 20px;
    }

    .inquiry-info h2 {
        font-size: 1.8rem;
    }

    .inquiry-form-wrap {
        padding: 25px 20px;
    }

    .inquiry-form .form-row {
        grid-template-columns: 1fr;
    }

    .inquiry-form .form-group.full {
        grid-column: span 1;
    }

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

    .news-card.featured {
        grid-column: span 1;
    }

    .news-card.featured h4 {
        font-size: 1.05rem;
    }
}
