/* =====================================================
   TOBOR - Clean Professional Design v2
   Guidelines: 80% white/gray, 5-10% accent color
   Accent: Steel Blue (#2B689F)
===================================================== */

/* CSS Variables */
:root {
    --accent-50: #e8f1f8;
    --accent-100: #d1e3f1;
    --accent-200: #a3c7e3;
    --accent-300: #75abd5;
    --accent-400: #478fc7;
    --accent-500: #2B689F;
    --accent-600: #235580;
    --accent-700: #1a4060;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --font-primary: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-700);
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* =====================================================
   NAVIGATION
===================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.nav.is-dark {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--gray-200);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo img {
    height: 32px;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
}

.nav.is-dark .nav__link {
    color: rgba(255, 255, 255, 0.9);
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--accent-600);
}

.nav.is-dark .nav__link:hover,
.nav.is-dark .nav__link.is-active {
    color: var(--accent-400);
}

.nav__link.is-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-500);
}

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

.nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--gray-700);
}

.nav.is-dark .nav__toggle span {
    background: #fff;
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gray-900);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg video,
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.6));
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px;
    text-align: center;
}

.hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(43, 104, 159, 0.2);
    color: var(--accent-300);
    border: 1px solid rgba(43, 104, 159, 0.4);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero__title em {
    font-style: normal;
    color: var(--accent-400);
}

.hero__desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

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

.btn--primary:hover {
    background: var(--accent-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 104, 159, 0.4);
}

.btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-dark {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn--outline-dark:hover {
    border-color: var(--accent-500);
    color: var(--accent-600);
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    z-index: 2;
}

.hero__scroll-text {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero__scroll-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

/* =====================================================
   SECTION BASE
===================================================== */
.section {
    padding: 100px 0;
}

.section--gray {
    background: var(--gray-50);
}

.section--dark {
    background: var(--gray-900);
}

.section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section__badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-50);
    color: var(--accent-600);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section--dark .section__badge {
    background: rgba(43, 104, 159, 0.2);
    color: var(--accent-300);
}

.section__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

.section--dark .section__title {
    color: #fff;
}

.section__desc {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.7;
}

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

/* =====================================================
   SOLUTIONS SECTION
===================================================== */
.solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
}

.solution-card:hover {
    border-color: var(--accent-300);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.solution-card__icon {
    width: 52px;
    height: 52px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gray-500);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.solution-card:hover .solution-card__icon {
    background: var(--accent-50);
    color: var(--accent-600);
}

.solution-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.solution-card__desc {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
}

.solution-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    transition: color 0.2s;
}

.solution-card__link:hover {
    color: var(--accent-600);
}

.solution-card__link i {
    transition: transform 0.2s;
}

.solution-card__link:hover i {
    transform: translateX(4px);
}

/* =====================================================
   TECHNOLOGY SECTION
===================================================== */
.tech__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech__content .section__badge {
    margin-bottom: 16px;
}

.tech__content .section__title {
    text-align: left;
    margin-bottom: 24px;
}

.tech__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s;
}

.stat-card:hover {
    border-color: var(--accent-300);
}

.stat-card__number {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.stat-card:first-child .stat-card__number {
    color: var(--accent-600);
}

.stat-card__label {
    font-size: 14px;
    color: var(--gray-500);
}

.tech__visual {
    display: flex;
    justify-content: center;
}

.tech__image {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech__tags {
    position: absolute;
    inset: 0;
}

.tech__tag {
    position: absolute;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    white-space: nowrap;
    transition: all 0.2s;
}

.tech__tag:hover {
    border-color: var(--accent-300);
    background: var(--accent-50);
    color: var(--accent-700);
}

.tech__tag:nth-child(1) { top: 5%; left: 50%; transform: translateX(-50%); }
.tech__tag:nth-child(2) { top: 50%; right: -10%; transform: translateY(-50%); }
.tech__tag:nth-child(3) { bottom: 5%; left: 50%; transform: translateX(-50%); }
.tech__tag:nth-child(4) { top: 50%; left: -10%; transform: translateY(-50%); }

/* =====================================================
   PLATFORM SECTION
===================================================== */
.platform__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.platform__content .section__badge {
    margin-bottom: 16px;
}

.platform__content .section__title {
    text-align: left;
    margin-bottom: 32px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 10px;
    transition: background 0.2s;
}

.feature-item:hover {
    background: var(--gray-50);
}

.feature-item__icon {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gray-500);
    flex-shrink: 0;
    transition: all 0.2s;
}

.feature-item:hover .feature-item__icon {
    background: var(--accent-50);
    color: var(--accent-600);
}

.feature-item__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.feature-item__desc {
    font-size: 14px;
    color: var(--gray-500);
}

.platform__visual {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 500px;
}

.platform__image {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

.platform__demo {
    position: relative;
    width: 200px;
    height: 200px;
}

.platform__demo-building {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    border-radius: 16px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.platform__demo-points {
    position: absolute;
    inset: -40px;
}

.platform__demo-point {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.platform__demo-point--fire { background: #ef4444; top: 20%; left: 10%; }
.platform__demo-point--sensor { background: var(--accent-500); top: 60%; right: 10%; animation-delay: 0.5s; }
.platform__demo-point--camera { background: #8b5cf6; bottom: 20%; left: 20%; animation-delay: 1s; }
.platform__demo-point--alarm { background: #f59e0b; top: 40%; right: 20%; animation-delay: 1.5s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

/* =====================================================
   CONTACT SECTION
===================================================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__content .section__badge {
    margin-bottom: 16px;
}

.contact__content .section__title {
    text-align: left;
    margin-bottom: 16px;
}

.contact__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.contact-info__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.2s;
}

.contact-info__item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(43, 104, 159, 0.5);
}

.contact-info__icon {
    width: 40px;
    height: 40px;
    background: rgba(43, 104, 159, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-400);
    flex-shrink: 0;
}

.contact-info__label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-info__value {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    padding: 0 0 0 8px;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.contact-form__group {
    margin-bottom: 16px;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--accent-500);
    background: rgba(255, 255, 255, 0.08);
}

.contact-form__select {
    cursor: pointer;
}

.contact-form__select option {
    background: var(--gray-800);
    color: #fff;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form__submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-500);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.contact-form__submit:hover {
    background: var(--accent-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 104, 159, 0.4);
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
    background: #111;
    color: #fff;
    padding: 0;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer__brand {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer__divider {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.footer__tagline {
    font-size: 13px;
    color: var(--gray-400);
}

.footer__nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer__nav a {
    font-size: 13px;
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer__nav a:hover {
    color: #fff;
}

.footer__bottom {
    padding: 16px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 12px;
    color: var(--gray-600);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
    .solutions__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .tech__grid,
    .platform__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .tech__content,
    .platform__content,
    .contact__content {
        text-align: center;
    }
    
    .tech__content .section__title,
    .platform__content .section__title,
    .contact__content .section__title {
        text-align: center;
    }
    
    .tech__image {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .nav__container {
        height: 60px;
        padding: 0 16px;
    }
    
    .nav__logo img {
        height: 28px;
    }
    
    .nav__menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--gray-200);
        display: none;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav__menu.is-open {
        display: flex;
    }
    
    .nav.is-dark .nav__menu {
        background: var(--gray-900);
        border-bottom-color: var(--gray-700);
    }
    
    .nav__menu .nav__link {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-100);
        font-size: 16px;
    }
    
    .nav.is-dark .nav__menu .nav__link {
        border-bottom-color: var(--gray-800);
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section__container {
        padding: 0 16px;
    }
    
    .section__header {
        margin-bottom: 40px;
    }
    
    .section__title {
        font-size: 26px;
    }
    
    .section__desc {
        font-size: 15px;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 100svh;
    }
    
    .hero__content {
        padding: 100px 16px 80px;
    }
    
    .hero__badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .hero__title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero__desc {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .hero__desc br {
        display: none;
    }
    
    .hero__actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero__actions .btn {
        width: 100%;
        max-width: 100%;
        padding: 16px 24px;
    }
    
    .hero__scroll {
        bottom: 24px;
    }
    
    /* Solutions Mobile */
    .solutions__grid {
        max-width: 100%;
    }
    
    .solution-card {
        padding: 24px;
    }
    
    .solution-card__icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .solution-card__title {
        font-size: 18px;
    }
    
    .solution-card__desc {
        font-size: 14px;
    }
    
    /* Technology Mobile */
    .tech__stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px 12px;
    }
    
    .stat-card__number {
        font-size: 22px;
    }
    
    .stat-card__label {
        font-size: 12px;
    }
    
    .tech__image {
        max-width: 280px;
    }
    
    .tech__tag {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .tech__tag:nth-child(2) { right: -5%; }
    .tech__tag:nth-child(4) { left: -5%; }
    
    /* Platform Mobile */
    .feature-list {
        gap: 8px;
    }
    
    .feature-item {
        padding: 16px;
        gap: 14px;
    }
    
    .feature-item__icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .feature-item__title {
        font-size: 15px;
    }
    
    .feature-item__desc {
        font-size: 13px;
    }
    
    .platform__visual {
        padding: 40px 20px;
        min-height: 300px;
    }
    
    .platform__demo {
        width: 160px;
        height: 160px;
    }
    
    /* Contact Mobile */
    .contact__desc {
        font-size: 15px;
    }
    
    .contact__desc br {
        display: none;
    }
    
    .contact-info__item {
        padding: 14px;
    }
    
    .contact-info__icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-info__value {
        font-size: 14px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .contact-form__input,
    .contact-form__select,
    .contact-form__textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    /* Footer Mobile */
    .footer__content {
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
        text-align: center;
    }

    .footer__info {
        flex-direction: column;
        gap: 4px;
    }

    .footer__divider {
        display: none;
    }

    .footer__brand {
        font-size: 16px;
    }

    .footer__tagline {
        font-size: 12px;
    }

    .footer__nav {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer__nav a {
        font-size: 12px;
    }

    .footer__bottom {
        padding: 12px 0;
    }

    .footer__bottom p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 24px;
    }
    
    .section__title {
        font-size: 22px;
    }
    
    .tech__stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-card {
        padding: 14px 10px;
    }
    
    .stat-card__number {
        font-size: 20px;
    }
    
    .tech__image {
        max-width: 240px;
    }
    
    .tech__tag {
        font-size: 10px;
        padding: 5px 10px;
    }
}

/* =====================================================
   NEWS SECTION
===================================================== */
.news__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.news-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-300);
}

.news-card__image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card__image img {
    transform: scale(1.05);
}

.news-card__content {
    padding: 24px;
}

.news-card__date {
    display: inline-block;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.news-card__title {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.5;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-500);
    transition: all 0.2s ease;
}

.news-card:hover .news-card__link {
    color: var(--accent-600);
    gap: 10px;
}

/* News Section Responsive */
@media (max-width: 768px) {
    .news__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }
    
    .news-card__image {
        height: 180px;
    }
    
    .news-card__content {
        padding: 20px;
    }
    
    .news-card__title {
        font-size: 15px;
    }
}

