@charset "utf-8";

:root {
    --primary: #207FFC;
    --primary-hover: #4A98FF;
    --secandary: #f3f9ff;
}

.hero-section { padding: 4rem 1.5rem 6rem; border-top: 1px solid #ffffff; }
.hero-container { max-width: 1280px; margin: 0 auto; }
.hero-content-grid { display: flex; flex-direction: row; align-items: stretch; gap: 2rem; margin-bottom: 4rem; }
.hero-column-left, .hero-column-center, .hero-column-right { flex: 1; width: 33.333%; }

.hero-column-right { animation: slideInRight 0.2s ease 0.2s both; }
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1024px) {
    .hero-content-grid { flex-direction: column; }
    .hero-column-left, .hero-column-center, .hero-column-right { width: 100%; }
}

.hero-column-left { display: flex; flex-direction: column; justify-content: space-between; padding-top: 1rem; padding-bottom: 1rem; }
.hero-kicker { color: #2563eb; font-weight: 700; font-size: 1.4rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; display: block; }
.hero-headline { font-size: 4rem; font-weight: 800; color: #111827; line-height: 1.3; margin-bottom: 2rem; letter-spacing: -0.025em; }

@media (max-width: 1024px) {
    .hero-headline { font-size: 2.5rem; }
}

.hero-cta-button { display: inline-block; width: 100%; background-color: #111827; color: #ffffff; padding: 2rem 2.4rem; border-radius: 1.2rem; font-weight: 700; font-size: 1.8rem; text-align: center; border: none; cursor: pointer; transition: all 0.2s ease; margin-top: auto; }
.hero-cta-button:hover { background-color: #1f2937; transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.hero-column-center { min-height: 400px; }
.hero-image-wrapper { width: 100%; height: 100%; border-radius: 1.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #64748b; overflow: hidden; position: relative; }
.hero-image-icon { width: 3rem; height: 3rem; margin-bottom: 0.5rem; }
.hero-detail-box { background-color: #ffffff; padding: 2.5rem; padding-top: 12rem; border-radius: 1.5rem; display: flex; flex-direction: column; justify-content: center; height: 100%; }
.hero-detail-title { font-weight: 700; font-size: 2rem; margin-bottom: 1rem; color: #2563eb; line-height: 1.4; }
.hero-detail-desc { color: #4b5563; font-size: 1.4rem; line-height: 1.7; margin-bottom: 1.5rem; word-break: keep-all; }
.hero-divider { width: 100%; height: 1px; background-color: #f1f5f9; margin-bottom: 1.5rem; }
.hero-detail-quote { color: #111827; font-weight: 600; font-size: 1.8rem; line-height: 1.5; word-break: keep-all; }

.hero-services-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }

@media (max-width: 768px) {
    .hero-detail-box {padding-top: 2.5rem; padding-left: 0; padding-right: 0;}
    .hero-services-row { grid-template-columns: 1fr; gap: 2rem; }
}

.hero-service-card { padding-top: 1.25rem; border-top: 3px solid #e5e7eb; }
.hero-service-title { font-weight: 700; font-size: 1.8rem; margin-bottom: 0.5rem; color: #111827; transition: color 0.3s; }
.hero-service-desc { color: #6b7280; font-size: 1.4rem; line-height: 1.6; word-break: keep-all; }

.anim-line-1 { animation: highlight-border-1 9s infinite; }
@keyframes highlight-border-1 {
    0%, 30% { border-top-color: #2563eb; }
    33%, 100% { border-top-color: #e5e7eb; }
}

.anim-line-2 { animation: highlight-border-2 9s infinite; }
@keyframes highlight-border-2 {
    0%, 30% { border-top-color: #e5e7eb; }
    33%, 63% { border-top-color: #2563eb; }
    66%, 100% { border-top-color: #e5e7eb; }
}

.anim-line-3 { animation: highlight-border-3 9s infinite; }
@keyframes highlight-border-3 {
    0%, 63% { border-top-color: #e5e7eb; }
    66%, 96% { border-top-color: #2563eb; }
    100% { border-top-color: #e5e7eb; }
}
