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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1a1f3a 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 5%;
    gap: 3rem;
    background: #ffffff;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

.logo-link {
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    display: block;
    width: auto;
    height: 44px;
    object-fit: contain;
}

.logo .logo-circle,
.logo > span {
    display: none;
}

.logo-circle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: #D85A30;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3b82f6;
}

.nav-seminar-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.7rem 1.35rem;
    border-radius: 0.5rem;
    background: #7D2F15;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(125, 47, 21, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.nav-seminar-btn:hover,
.nav-seminar-btn.active {
    background: #D85A30;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(216, 90, 48, 0.3);
}

.nav-contact-btn {
    background: #D85A30;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 0;
}

.nav-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(216, 90, 48, 0.25);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 6rem 5%;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
    justify-content: center;
    background: #7D2F15;
    box-shadow: 0 0 0 100vmax #7D2F15;
    clip-path: inset(0 -100vmax);
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
    width: fit-content;
    font-size: 0.9rem;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #D85A30;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(216, 90, 48, 0.25);
}

.btn-primary::after {
    content: '→';
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: translateY(-3px);
}

/* Hero Illustration */
.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

.illustration-box {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 9 / 16;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 125, 139, 0.1) 100%);
    border-radius: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Services Page Styles */
.services-hero {
    padding: 6rem 5% 1rem 5%;
    text-align: center;
    background: #ffffff;
    animation: fadeInDown 0.8s ease;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.services-hero p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Cards Section */
.services-cards {
    padding: 1rem 5%;
    background: #ffffff;
    width: 100%;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #F9FAFB;
    border: 1px solid #e5e7eb;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-card {
    background: #FFF1EA;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(96, 125, 139, 0.03) 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.08);
    border-color: #3b82f6;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #D85A30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #111827;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.learn-more-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.learn-more-link:hover {
    gap: 0.8rem;
    color: #60a5fa;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Remove underline and default link styles for product links */
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Ready Products Section */
.ready-products {
    padding: 4.5rem 5%;
    background: #ffffff;
}

.ready-products-container {
    max-width: 1320px;
    margin: 0 auto;
}

.ready-products h2 {
    color: #111827;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 0.9rem;
}

.ready-products > div > p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.ready-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.ready-product-card {
    background: #FFF1EA;
    border: 1px solid #f0ddd4;
    border-radius: 0.5rem;
    min-height: 330px;
    overflow: hidden;
    padding: 2rem 2rem 0;
}

.ready-product-card h3 {
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.ready-product-card > p {
    color: #4b5563;
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 520px;
    margin-bottom: 1.6rem;
}

.product-preview {
    min-height: 190px;
}

.virtual-preview {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.preview-phone,
.preview-panel,
.chart-line,
.cms-preview {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #edf0f3;
    box-shadow: 0 16px 35px rgba(17, 24, 39, 0.08);
}

.preview-phone {
    width: 170px;
    height: 170px;
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 1rem;
}

.preview-pill {
    width: 92px;
    height: 12px;
    border-radius: 999px;
    background: #d1d5db;
    margin-bottom: 1rem;
}

.preview-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 2rem;
}

.preview-tabs span {
    width: 38px;
    height: 8px;
    border-radius: 999px;
    background: #e5e7eb;
}

.mini-chart {
    height: 75px;
    display: flex;
    align-items: flex-end;
    gap: 0.45rem;
}

.mini-chart i {
    width: 12px;
    display: block;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, #60a5fa, #bfdbfe);
}

.mini-chart i:nth-child(1) { height: 22px; }
.mini-chart i:nth-child(2) { height: 38px; }
.mini-chart i:nth-child(3) { height: 52px; }
.mini-chart i:nth-child(4) { height: 66px; }
.mini-chart i:nth-child(5) { height: 92px; }

.preview-panel {
    flex: 1;
    min-height: 185px;
    padding: 1rem;
    border-radius: 0.25rem 0.25rem 0 0;
}

.panel-dots {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1.1rem;
}

.panel-dots span {
    width: 8px;
    height: 8px;
    background: #d1d5db;
    border-radius: 50%;
}

.panel-row {
    width: 62%;
    height: 18px;
    border-radius: 0.35rem;
    background: #f3f4f6;
    margin-bottom: 0.8rem;
}

.panel-row.active {
    background: #e8f1ff;
}

.overview-box {
    width: 115px;
    margin-left: auto;
    margin-top: -3.5rem;
    color: #111827;
}

.overview-box strong,
.overview-box small {
    display: block;
}

.overview-box strong {
    font-size: 1.4rem;
}

.overview-box small {
    color: #10b981;
    font-size: 0.75rem;
}

.crawler-preview {
    display: flex;
}

.chart-line {
    position: relative;
    width: 100%;
    min-height: 190px;
    border-radius: 0.25rem;
    overflow: hidden;
    background-image: linear-gradient(#edf2f7 1px, transparent 1px), linear-gradient(90deg, #edf2f7 1px, transparent 1px);
    background-size: 100% 45px, 70px 100%;
}

.chart-line svg {
    position: absolute;
    inset: 20px 18px;
    width: calc(100% - 36px);
    height: calc(100% - 40px);
}

.chart-line path {
    fill: none;
    stroke: #2f80ed;
    stroke-width: 4;
    stroke-linecap: round;
}

.chart-line .tag {
    position: absolute;
    top: 68px;
    left: 43%;
    z-index: 1;
    background: #2f80ed;
    color: #ffffff;
    border-radius: 0.3rem;
    padding: 0.25rem 0.45rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.erp-preview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit {
    position: relative;
    width: 250px;
    height: 165px;
}

.orbit::before,
.orbit::after {
    content: '';
    position: absolute;
    inset: 26px 34px;
    border: 1px solid #dbe3ec;
    border-radius: 50%;
}

.orbit::after {
    transform: rotate(90deg);
}

.orbit-center,
.avatar {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.12);
}

.orbit-center {
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    background: #2f80ed;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    border: 14px solid rgba(47, 128, 237, 0.12);
}

.avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #fca5a5, #60a5fa);
    border: 3px solid #ffffff;
}

.avatar-1 { top: 18px; left: 44px; }
.avatar-2 { top: 18px; right: 44px; }
.avatar-3 { top: 72px; left: 12px; }
.avatar-4 { top: 72px; right: 12px; }
.avatar-5 { bottom: 18px; left: 62px; }
.avatar-6 { bottom: 18px; right: 62px; }

.cms-preview {
    border-radius: 0.25rem;
    padding: 1rem;
    min-height: 172px;
}

.cms-row {
    display: grid;
    grid-template-columns: 20px 1fr 80px 48px;
    align-items: center;
    gap: 0.8rem;
    min-height: 48px;
    border-bottom: 1px solid #eef2f7;
    color: #111827;
}

.cms-row:last-child {
    border-bottom: 0;
}

.cms-row span {
    width: 16px;
    height: 16px;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
}

.cms-row strong,
.cms-row small,
.cms-row em {
    font-size: 0.75rem;
}

.cms-row small {
    color: #6b7280;
}

.cms-row em {
    color: #2f80ed;
    font-style: normal;
    text-align: center;
    background: #e8f1ff;
    border-radius: 999px;
    padding: 0.25rem 0.5rem;
}

/* Our Work Section */
.our-work {
    padding: 5rem 5%;
    background: #ffffff;
}

.our-work-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #111827;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.work-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
    margin-top: 2rem;
}

.work-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 0.8rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    background: #FFF1EA;
    border-color: #D85A30;
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(216, 90, 48, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #D85A30;
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: #111827;
}

.feature-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.laptop-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    background: transparent;
}

.laptop-image {
    max-width: 120%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    background: transparent;
    object-fit: contain;
    border: none;
}

.laptop-image:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.mobile-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.phone-frame {
    width: 280px;
    height: 600px;
    background: #374151;
    border-radius: 3rem;
    border: 2px solid #374151;
    padding: 12px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    animation: float 3s ease-in-out infinite;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #374151;
    border-radius: 0 0 1.5rem 1.5rem;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #374151;
    border-radius: 2.5rem;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.screen-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.screen-header h5 {
    font-size: 0.7rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.dashboard-stat {
    background: #eff6ff;
    border-radius: 0.5rem;
    padding: 0.8rem;
    margin-bottom: 1rem;
    text-align: center;
    border: 1px solid #bfdbfe;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b82f6;
}

.stat-label {
    font-size: 0.6rem;
    color: #6b7280;
    margin-top: 0.3rem;
}

.chart-area {
    flex: 1;
    background: #f0f9ff;
    border-radius: 0.5rem;
    display: flex;
    align-items: flex-end;
    gap: 0.3rem;
    padding: 0.8rem;
    border: 1px solid #bfdbfe;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 0.2rem;
    min-height: 10px;
    animation: growUp 0.6s ease-out;
}

@keyframes growUp {
    from {
        height: 0;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    background: #ffffff;
    width: 100%;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.testimonials-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonials-carousel {
    position: relative;
    min-height: 400px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
}

.testimonial-card {
    background: transparent;
    border: none;
    padding: 3rem 2rem;
    border-radius: 0;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    top: auto;
    left: auto;
    transition: opacity 0.5s ease;
}

.testimonial-card:hover {
    border-color: transparent;
    box-shadow: none;
}

.testimonial-avatar-large {
    width: 266px;
    height: 266px;
    border-radius: 1rem;
    background: linear-gradient(135deg, #e0e7ff 0%, #f0f9ff 100%);
    display: block;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-main-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1rem;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 0.15rem;
}

.testimonial-quote {
    color: #111827;
    line-height: 1.8;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

.testimonial-divider {
    color: #9ca3af;
}

.testimonial-role {
    color: #9ca3af;
    font-size: 0.95rem;
}

.testimonials-navigation {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1rem;
}

.nav-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111827;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: #f3f4f6;
    border-color: #3b82f6;
    color: #3b82f6;
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.newsletter-content p {
    color: #6b7280;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    color: #1f2937;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    background: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.newsletter-privacy {
    font-size: 0.85rem;
    color: #6b7280;
}

.newsletter-privacy a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.newsletter-privacy a:hover {
    text-decoration: underline;
}

.newsletter-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 100%;
    max-width: 330px;
    background: #e8e8e8;
    border-radius: 3.5rem;
    padding: 14px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 8px solid #d0d0d0;
    overflow: hidden;
    mask-image: linear-gradient(180deg, black 0%, black 30%, transparent 80%);
    -webkit-mask-image: linear-gradient(180deg, black 0%, black 30%, transparent 80%);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 28px;
    background: #000;
    border-radius: 0 0 2.2rem 2.2rem;
    z-index: 10;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.7rem;
    color: #1f2937;
    font-weight: 600;
}

.phone-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-menu {
    font-size: 1.2rem;
    cursor: pointer;
    color: #6b7280;
    margin-top: -1.2rem;
}

.phone-tabs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

.phone-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.phone-stats-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.phone-stats-menu {
    font-size: 1rem;
    color: #9ca3af;
    cursor: pointer;
}

.line-chart-svg {
    width: 100%;
    height: 100px;
    margin-bottom: 0.75rem;
}

.phone-mockup-secondary {
    position: absolute;
    right: -40px;
    top: 20px;
    width: 100%;
    max-width: 280px;
    background: #d8d8d8;
    border-radius: 3.5rem;
    padding: 14px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 8px solid #c0c0c0;
    opacity: 0.4;
    z-index: -1;
}

.phone-mockup-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 28px;
    background: #000;
    border-radius: 0 0 2.2rem 2.2rem;
    z-index: 10;
}

.chart-label {
    font-size: 0.6rem;
    color: #6b7280;
    text-align: center;
}

/* Dashboard Screen Styles */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 0.65rem;
    color: #1f2937;
    font-weight: 600;
}

.status-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    margin-bottom: 0.6rem;
    font-size: 0.6rem;
    color: #1f2937;
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 0.3rem;
    font-size: 0.55rem;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #f3f4f6;
}

.app-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.app-logo {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    font-weight: bold;
}

.app-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
}

.app-menu {
    font-size: 1.1rem;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.3s ease;
}

.app-menu:hover {
    color: #3b82f6;
}

.traffic-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.9rem;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.9rem;
}

.card-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.card-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1f2937;
}

.card-subtitle {
    font-size: 0.65rem;
    color: #9ca3af;
}

.growth-badge {
    background: #d1fae5;
    color: #065f46;
    padding: 0.35rem 0.6rem;
    border-radius: 0.3rem;
    font-size: 0.65rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.donut-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
}

.donut-chart {
    width: 110px;
    height: 110px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    font-size: 0.6rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #6b7280;
}

.legend-color {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.traffic-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    border-top: 1px solid #f3f4f6;
    padding-top: 0.8rem;
    gap: 0.5rem;
}

.dropdown-selector {
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 500;
}

.dropdown-selector:hover {
    color: #1f2937;
}

.view-report-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 0.65rem;
}

.view-report-link:hover {
    color: #60a5fa;
}

.recent-activity-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.9rem;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.activity-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1f2937;
}

.activity-subtitle {
    font-size: 0.65rem;
    color: #9ca3af;
}

.activity-menu {
    font-size: 1rem;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s ease;
}

.activity-menu:hover {
    color: #6b7280;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.activity-item {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 0.6rem;
    border-radius: 0.6rem;
    transition: background 0.3s ease;
}

.activity-item:hover {
    background: #f9fafb;
}

.activity-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.activity-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.activity-user-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: #1f2937;
}

.activity-user-action {
    font-size: 0.65rem;
    color: #6b7280;
}

.activity-timestamp {
    font-size: 0.6rem;
    color: #9ca3af;
    margin-top: 0.1rem;
}

/* Mobile Image Styles */
.hero-illustration .phone-screen {
    padding: 0 !important;
    background: transparent !important;
    overflow: hidden !important;
    height: 100% !important;
}

.mobile-image {
    width: 100%;
    height: 100%;
    border-radius: 2.3rem;
    object-fit: contain;
    display: block;
    background: #ffffff;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background: #ffffff;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #111827;
}

.contact > div > p {
    text-align: center;
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #FFF1EA;
    padding: 3rem 5.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

.required {
    color: #ef4444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    color: #1f2937;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.checkbox-item label {
    cursor: pointer;
    color: #1f2937;
    font-weight: 500;
    margin: 0;
}

.btn-quote {
    background: #D85A30;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 0.5rem;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(216, 90, 48, 0.25);
}

/* Footer */
footer {
    padding: 0;
    background: #ffffff;
    border-top: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 260px;
    padding: 4rem 5%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 7rem;
}

.footer-section {
    text-align: left;
    min-width: 120px;
}

.footer-section:nth-child(3) {
    display: none;
}

.footer-section h4 {
    margin-bottom: 0.9rem;
    font-weight: 500;
    color: #6b7280;
    font-size: 0.75rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.75rem;
    font-weight: 500;
}

.footer-section a:hover {
    color: #6b7280;
}

.footer-bottom {
    background: #f4f6f8;
    border-top: 1px solid #eef1f4;
    color: #6b7280;
    font-size: 0.75rem;
    padding: 1.4rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.footer-bottom p {
    margin: 0;
}

.social-icons-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    margin: 0;
}

.social-icon-footer {
    width: auto;
    height: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 700;
}

.social-icon-footer:hover {
    color: #111827;
    transform: none;
}

@media (max-width: 768px) {
    .ready-products {
        padding: 3rem 4%;
    }

    .ready-products h2 {
        font-size: 1.6rem;
    }

    .ready-product-card {
        padding: 1.4rem 1.2rem 0;
        min-height: 300px;
    }

    .virtual-preview {
        flex-direction: column;
        align-items: stretch;
    }

    .preview-phone,
    .preview-panel {
        width: 100%;
    }

    .cms-row {
        grid-template-columns: 20px 1fr;
    }

    .cms-row small,
    .cms-row em {
        display: none;
    }

    .footer-content {
        padding: 3rem 5%;
        justify-content: flex-start;
        gap: 3rem;
        flex-wrap: wrap;
    }

    .footer-bottom {
        gap: 1rem;
        flex-wrap: wrap;
    }
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .ready-products-grid {
        grid-template-columns: 1fr;
    }

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

    .work-layout {
        grid-template-columns: 1fr;
    }

    .newsletter-container {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        min-height: auto;
        justify-content: flex-start;
        gap: 4rem;
    }
}

/* About Us Page Styles */
.about-us-hero {
    padding: 4rem 5%;
    background: #7D2F15;
    color: #ffffff;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.about-us-container {
    text-align: left;
}

.about-us-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
}

.about-us-hero p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 0;
}

/* Stats Section */
.about-us-stats {
    padding: 4rem 5%;
    background: #ffffff;
    color: #1f2937;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.stat-icon {
    width: 40px;
    height: 40px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 0 auto 1.5rem auto;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.stat-description {
    font-size: 0.95rem;
    color: #666666;
    margin-top: 0.75rem;
}

/* Mission Section */
.mission-section {
    padding: 5rem 5%;
    background: #f9fafb;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-image {
    overflow: hidden;
    border-radius: 1rem;
}

.mission-img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-content {
    color: #1f2937;
}

.mission-label {
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.mission-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .mission-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-content h2 {
        font-size: 2rem;
    }
}

.stat-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    nav {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.75rem 3%;
        justify-content: space-between;
    }

    .logo {
        font-size: 1.2rem;
        gap: 0.3rem;
    }

    .logo-circle {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .nav-links {
        gap: 1rem;
        flex: 1;
        justify-content: center;
        margin: 0 0.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .nav-seminar-btn {
        min-height: 38px;
        padding: 0.55rem 0.8rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .nav-contact-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 5%;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-illustration {
        order: -1;
    }

    .testimonial-card {
        grid-template-columns: 200px 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .testimonial-avatar-large {
        width: 200px;
        height: 200px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .about-us-hero {
        min-height: auto;
        padding: 3rem 5%;
    }

    .about-us-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }
}

/* Blog Section */
.blog-section {
    background: white;
    padding: 4rem 5%;
    margin: 0;
    border: none;
    border-top: none;
}

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

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.blog-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 400;
}

.blog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

/* Featured Card (Left) */
.featured-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.featured-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.featured-card .card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.featured-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-card:hover .card-image img {
    transform: scale(1.05);
}

.featured-card .card-body {
    padding: 2rem;
}

.featured-card .card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.featured-card .card-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-card .card-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease, color 0.3s ease;
}

.featured-card .card-link:hover {
    color: #2563eb;
    gap: 0.75rem;
}

/* Right Column (Stacked Cards) */
.cards-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.small-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
    display: flex;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.small-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.small-card-image {
    width: 50%;
    aspect-ratio: 1.5;
    flex-shrink: 0;
    overflow: hidden;
}

.small-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.small-card:hover .small-card-image img {
    transform: scale(1.05);
}

.small-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.small-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.small-card-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.small-card-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    transition: gap 0.3s ease, color 0.3s ease;
}

.small-card-link:hover {
    color: #2563eb;
    gap: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 3rem 4%;
    }

    .blog-title {
        font-size: 1.75rem;
    }

    .blog-subtitle {
        font-size: 1rem;
    }

    .featured-card .card-image {
        height: 250px;
    }

    .small-card {
        flex-direction: column;
    }

    .small-card-image {
        width: 100%;
        height: 200px;
    }

    .cards-column {
        gap: 1.5rem;
    }
}

/* Blog Article Page */
.blog-article-page {
    background: #ffffff;
    color: #0f172a;
}

.article-hero {
    background: #7D2D15;
    color: #ffffff;
    padding: 5rem 5% 4.5rem;
}

.article-hero-content {
    max-width: 980px;
}

.article-back-link {
    display: inline-flex;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.article-back-link:hover {
    color: #ffffff;
}

.article-kicker {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.article-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.4rem;
}

.article-hero p:last-child {
    max-width: 840px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.8;
}

.article-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 4rem 5% 5rem;
}

.article-content h2 {
    color: #0f172a;
    font-size: 2rem;
    line-height: 1.25;
    margin: 3rem 0 1rem;
}

.article-content p,
.article-content li {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.85;
}

.article-lede {
    color: #334155;
    font-size: 1.25rem;
    line-height: 1.8;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1.5rem 1.4rem;
}

.article-content li {
    margin-bottom: 0.65rem;
}

.article-content blockquote {
    margin: 1.8rem 0;
    padding: 1.2rem 1.5rem;
    border-left: 4px solid #D85A30;
    background: #fff7ed;
    color: #7D2D15;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .article-hero {
        padding: 4rem 5% 3.5rem;
    }

    .article-hero h1 {
        font-size: 2.3rem;
    }

    .article-hero p:last-child,
    .article-content p,
    .article-content li {
        font-size: 1rem;
    }

    .article-content {
        padding: 3rem 5% 4rem;
    }

    .article-content h2 {
        font-size: 1.55rem;
    }
}

/* Team Section */
.team-section {
    background: white;
    padding: 4rem 5%;
    margin: 0;
}

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

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.team-subtitle {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
    background: #FFF1EA;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
}

.team-member:hover {
    transform: translateY(-8px);
}

.member-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 0.5rem 0;
}

.member-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.member-title {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.member-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s ease, color 0.3s ease;
}

.member-link:hover {
    color: #2563eb;
    gap: 0.6rem;
}

.linkedin-icon {
    width: 1rem;
    height: 1rem;
    display: inline-block;
}

/* Team Section Responsive */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 3rem 4%;
    }

    .team-title {
        font-size: 2rem;
    }

    .team-subtitle {
        font-size: 0.95rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .member-image {
        width: 140px;
        height: 140px;
    }
}

/* Service Page Styles */
.service-hero {
    background: #7D2D15;
    color: white;
    padding: 5rem 5%;
    text-align: left;
}

.service-hero-content {
    max-width: 100%;
}

.service-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.service-hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.service-features {
    background: white;
    padding: 4rem 5%;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-left {
    padding-right: 2rem;
}

.features-label {
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.features-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-service {
    padding-left: 1.5rem;
    border-left: 3px solid #3b82f6;
}

.feature-number {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.feature-text {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.features-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image-container {
    width: 100%;
    background: #f8f9fb;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Demo Section */
.service-demo {
    background: #ffffff;
    padding: 4rem 5%;
}

.demo-container {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    align-items: stretch;
    background: #FFF1EA;
    border-radius: 1.25rem;
    overflow: hidden;
}

.demo-image {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    min-height: 255px;
    height: 100%;
    padding: 2rem 0 0 1.6rem;
}

.demo-img {
    width: 88%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: left bottom;
    display: block;
}

.demo-content {
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.demo-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.9rem;
    line-height: 1.15;
    max-width: 380px;
}

.demo-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    max-width: 430px;
}

.btn-demo {
    background: #D85A2A;
    color: white;
    border: none;
    padding: 0.5rem 0.85rem;
    border-radius: 0.3rem;
    font-weight: 600;
    font-size: 0.7rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(216, 90, 42, 0.25);
}

/* Service Detail Visuals */
.service-visual {
    width: 100%;
    min-height: 400px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
}

.visual-window {
    width: min(100%, 520px);
    min-height: 310px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.2rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.visual-topbar {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 1.4rem;
}

.visual-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.crawler-targets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.crawler-targets div,
.erp-grid div {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.9rem;
}

.crawler-targets strong,
.crawler-targets small,
.erp-grid strong,
.erp-grid small {
    display: block;
}

.crawler-targets strong {
    color: #2563eb;
    font-size: 1.35rem;
}

.crawler-targets small,
.erp-grid small {
    color: #64748b;
    font-size: 0.75rem;
}

.crawler-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.crawler-flow span {
    background: #e8f1ff;
    color: #1d4ed8;
    border-radius: 999px;
    padding: 0.45rem 0.55rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.crawler-table {
    display: grid;
    grid-template-columns: 1fr 1.3fr 0.75fr;
    gap: 0.55rem;
}

.crawler-table span {
    height: 15px;
    border-radius: 999px;
    background: #e5e7eb;
}

.crawler-table span:nth-child(3n) {
    background: #bfdbfe;
}

.erp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-bottom: 1.3rem;
}

.erp-grid strong {
    color: #0f172a;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.erp-metrics {
    height: 95px;
    display: flex;
    align-items: flex-end;
    gap: 0.7rem;
    padding: 0.8rem;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 0.5rem;
}

.erp-metrics span {
    flex: 1;
    min-height: 18px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, #D85A30, #fbbf24);
}

.cms-editor {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 1rem;
}

.cms-editor aside {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.cms-editor aside span,
.editor-line,
.editor-title,
.editor-card {
    border-radius: 0.5rem;
    background: #e5e7eb;
}

.cms-editor aside span {
    height: 28px;
}

.cms-editor main {
    min-height: 230px;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

.editor-title {
    width: 54%;
    height: 28px;
    margin-bottom: 1.2rem;
    background: #bfdbfe;
}

.editor-line {
    width: 72%;
    height: 14px;
    margin-bottom: 0.7rem;
}

.editor-line.wide {
    width: 92%;
}

.editor-line.short {
    width: 46%;
}

.editor-card {
    height: 78px;
    margin-top: 1.2rem;
    background: #fff1ea;
    border: 1px solid #fed7aa;
}

.demo-visual {
    width: 90%;
    min-height: 240px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-visual-crawler {
    gap: 1rem;
}

.demo-node {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.12);
    z-index: 1;
}

.demo-node.active {
    background: #2f80ed;
    color: #ffffff;
}

.demo-line {
    position: absolute;
    width: 74%;
    height: 3px;
    background: #bfdbfe;
}

.demo-visual-erp {
    display: grid;
    grid-template-columns: repeat(2, 104px);
    gap: 1rem;
}

.demo-visual-erp span,
.publish-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.6rem;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.1);
}

.demo-visual-erp span {
    min-height: 76px;
    display: grid;
    place-items: center;
    color: #0f172a;
    font-weight: 700;
}

.publish-card {
    width: min(100%, 290px);
    padding: 1.3rem;
    color: #0f172a;
}

.publish-card strong,
.publish-card span,
.publish-card em {
    display: block;
}

.publish-card strong {
    margin-bottom: 1rem;
}

.publish-card span {
    height: 13px;
    border-radius: 999px;
    background: #e5e7eb;
    margin-bottom: 0.65rem;
}

.publish-card span:nth-child(3) {
    width: 64%;
}

.publish-card em {
    width: fit-content;
    margin-top: 1rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: #dcfce7;
    color: #15803d;
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 4rem 5%;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.faq-items {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:first-child {
    border-top: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #3b82f6;
}

.faq-icon {
    font-size: 1.5rem;
    color: #3b82f6;
    font-weight: 300;
    min-width: 30px;
    text-align: right;
}

.faq-answer {
    display: none;
    padding: 0 0 1.5rem 0;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 700px;
}

.faq-answer p {
    margin: 0;
}

.faq-footer {
    text-align: center;
    padding: 3rem;
    background: #FFF1EA;
    border-radius: 1rem;
}

.faq-footer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.faq-footer p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-contact-faq {
    background: #D85A30;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-contact-faq:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(216, 90, 48, 0.25);
}

/* Responsive Design for Service Pages */
@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-left {
        padding-right: 0;
    }

    .demo-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2rem;
    }

    .service-hero-content p {
        font-size: 1rem;
    }

    .features-title {
        font-size: 1.5rem;
    }

    .demo-content h2 {
        font-size: 1.75rem;
    }

    .demo-container {
        grid-template-columns: 1fr;
    }

    .demo-image {
        min-height: 250px;
        padding: 1.5rem 1.5rem 0;
    }

    .demo-img {
        width: 100%;
    }

    .demo-content {
        padding: 2rem;
    }

    .service-visual {
        min-height: 320px;
        padding: 1rem;
    }

    .visual-window {
        min-height: 260px;
        padding: 1rem;
    }

    .crawler-targets,
    .crawler-flow,
    .erp-grid,
    .cms-editor {
        grid-template-columns: 1fr;
    }

    .crawler-flow span {
        text-align: left;
    }

    .demo-visual {
        width: 100%;
    }

    .demo-visual-crawler {
        gap: 0.45rem;
    }

    .demo-node {
        width: 64px;
        height: 64px;
        font-size: 0.75rem;
    }

    .demo-visual-erp {
        grid-template-columns: repeat(2, minmax(84px, 1fr));
    }

    .faq-section {
        padding: 3rem 5%;
    }

    .faq-header {
        text-align: center;
    }

    .faq-item {
        width: 100%;
    }

    .faq-question {
        flex-direction: column;
    }
}

/* seminar Page */
.nav-links {
    gap: clamp(1rem, 3vw, 3rem);
}

.nav-links a.active {
    color: #D85A30;
}

.nav-links a.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 0.35rem;
    background: #D85A30;
    border-radius: 999px;
}

.seminar-page {
    background: #ffffff;
    color: #0f172a;
}

.seminar-page main {
    background: #ffffff;
}

.seminar-page.seminar-promo-open {
    overflow: hidden;
}

.seminar-promo-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(8px);
}

.seminar-promo-overlay.is-hidden {
    display: none;
}

.seminar-promo-modal {
    position: relative;
    width: min(94vw, 720px);
    max-height: min(88vh, 900px);
    border-radius: 0.5rem;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.36);
}

.seminar-promo-close {
    position: absolute;
    top: -14px;
    right: -14px;
    z-index: 1;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.22);
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
}

.seminar-promo-close:hover,
.seminar-promo-close:focus-visible {
    background: #D85A30;
    color: #ffffff;
    outline: none;
}

.seminar-promo-image {
    display: block;
    width: 100%;
    max-height: min(88vh, 900px);
    object-fit: contain;
    border-radius: 0.5rem;
}

.seminar-shell {
    width: min(1180px, 90vw);
    margin: 0 auto;
}

.seminar-hero {
    background:
        radial-gradient(circle at 82% 20%, rgba(216, 90, 48, 0.22), transparent 28%),
        linear-gradient(135deg, #7D2F15 0%, #4b1c0d 100%);
    padding: 5.5rem 0 4rem;
    box-shadow: 0 0 0 100vmax #7D2F15;
    clip-path: inset(0 -100vmax);
}

.seminar-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 4rem;
    align-items: center;
}

.seminar-eyebrow,
.seminar-section-header span,
.research-grid > div span {
    display: inline-flex;
    color: #D85A30;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.seminar-hero-copy h1 {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 1.05;
    font-weight: 800;
    max-width: 560px;
    margin-bottom: 1.25rem;
}

.seminar-hero-copy p {
    color: #f8d7ca;
    font-size: 1.12rem;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2rem;
}

.seminar-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.4rem;
}

.seminar-primary,
.seminar-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.8rem 1.45rem;
    border-radius: 0.45rem;
    font-weight: 800;
    font-size: 0.92rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.seminar-primary {
    background: #D85A30;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(216, 90, 48, 0.26);
}

.seminar-primary:hover,
.seminar-secondary:hover {
    transform: translateY(-2px);
}

.seminar-secondary {
    background: #ffffff;
    color: #D85A30;
    border: 1px solid #f0b39d;
}

.seminar-secondary.light {
    background: #ffffff;
    color: #D85A30;
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.seminar-proof-row {
    display: flex;
    gap: clamp(0.8rem, 2vw, 1.5rem);
    flex-wrap: wrap;
    color: #f8d7ca;
    font-size: 0.8rem;
    font-weight: 700;
}

.seminar-proof-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.seminar-proof-row span::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 2px;
    border: 2px solid #D85A30;
}

.seminar-hero-art {
    position: relative;
    min-height: 440px;
    display: grid;
    place-items: center;
}

.brain-cube {
    position: relative;
    width: min(360px, 80vw);
    aspect-ratio: 1;
    border: 2px solid rgba(216, 90, 48, 0.22);
    border-radius: 1.2rem;
    background: linear-gradient(145deg, rgba(255, 241, 234, 0.9), rgba(216, 90, 48, 0.18));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    transform: rotateX(58deg) rotateZ(45deg);
}

.brain-cube::before {
    content: '';
    position: absolute;
    inset: 22%;
    border-radius: 45% 55% 48% 52%;
    background:
        radial-gradient(circle at 25% 38%, #f7b195 0 12%, transparent 13%),
        radial-gradient(circle at 45% 27%, #ef835f 0 13%, transparent 14%),
        radial-gradient(circle at 62% 38%, #D85A30 0 15%, transparent 16%),
        radial-gradient(circle at 38% 58%, #b64523 0 16%, transparent 17%),
        radial-gradient(circle at 62% 62%, #7D2F15 0 13%, transparent 14%);
    background-color: #D85A30;
    box-shadow: inset -18px -22px 28px rgba(125, 47, 21, 0.34), 0 22px 36px rgba(216, 90, 48, 0.28);
    transform: rotateZ(-45deg) rotateX(-58deg);
}

.brain-lines {
    position: absolute;
    inset: 0;
}

.brain-lines span {
    position: absolute;
    width: 38%;
    height: 2px;
    background: rgba(216, 90, 48, 0.34);
    left: 32%;
    top: 50%;
    transform-origin: left center;
}

.brain-lines span:nth-child(1) { transform: rotate(0deg); }
.brain-lines span:nth-child(2) { transform: rotate(44deg); }
.brain-lines span:nth-child(3) { transform: rotate(88deg); }
.brain-lines span:nth-child(4) { transform: rotate(132deg); }
.brain-lines span:nth-child(5) { transform: rotate(176deg); }

.cube-base {
    position: absolute;
    width: min(330px, 74vw);
    height: 70px;
    bottom: 52px;
    border-radius: 1rem;
    background: linear-gradient(135deg, #7D2F15, #D85A30);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.24);
    transform: skewX(-18deg);
}

.floating-tile {
    position: absolute;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 0.85rem;
    background: #ffffff;
    color: #D85A30;
    font-weight: 900;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
    border: 1px solid #f4c2af;
}

.tile-a { right: 6%; top: 35%; }
.tile-b { left: 8%; top: 42%; }
.tile-c { right: 18%; bottom: 16%; }

.seminar-section,
.journey-section {
    background: #ffffff;
    padding: 4.2rem 0;
}

.journey-section {
    background: #FFF1EA;
}

.seminar-section-header {
    text-align: center;
    margin-bottom: 2.6rem;
}

.seminar-section-header h2,
.research-grid h2,
.cta-panel h2 {
    color: #0f172a;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    line-height: 1.2;
    margin-bottom: 0.65rem;
}

.seminar-section-header p {
    color: #64748b;
    font-size: 0.98rem;
}

.learning-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.learning-card,
.project-card,
.value-grid article,
.research-grid article {
    background: #ffffff;
    border: 1px solid #f3d4c8;
    border-radius: 0.5rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.learning-card {
    padding: 1.6rem;
    min-height: 390px;
}

.learning-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 0.75rem;
    background: #FFF1EA;
    color: #D85A30;
    font-weight: 900;
    margin-bottom: 1.2rem;
}

.learning-card h3,
.project-card h3,
.value-grid h3 {
    color: #0f172a;
    font-size: 1.08rem;
    margin-bottom: 0.35rem;
}

.learning-card strong {
    display: block;
    color: #D85A30;
    font-size: 0.76rem;
    margin-bottom: 1rem;
}

.learning-card p,
.project-card p,
.value-grid p,
.research-grid p,
.cta-panel p {
    color: #64748b;
    line-height: 1.6;
}

.learning-card ul {
    list-style: none;
    margin: 1.1rem 0;
    display: grid;
    gap: 0.6rem;
    color: #475569;
    font-size: 0.9rem;
}

.learning-card li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 4px;
    border-left: 2px solid #D85A30;
    border-bottom: 2px solid #D85A30;
    transform: rotate(-45deg);
    margin-right: 0.55rem;
    vertical-align: 0.16rem;
}

.learning-meta {
    display: flex;
    gap: 1rem;
    color: #64748b;
    font-size: 0.84rem;
    margin-bottom: 1rem;
}

.learning-card a {
    color: #D85A30;
    font-weight: 800;
    text-decoration: none;
}

.journey-track {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1rem;
}

.journey-step {
    position: relative;
    text-align: center;
    padding-top: 3.4rem;
}

.journey-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 54px;
    height: 54px;
    transform: translateX(-50%);
    border: 1px solid #f4c2af;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(216, 90, 48, 0.1);
}

.journey-step b {
    display: block;
    color: #D85A30;
    margin-bottom: 0.65rem;
}

.journey-step h3 {
    color: #0f172a;
    font-size: 0.82rem;
    margin-bottom: 0.4rem;
}

.journey-step p {
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.45;
}

.project-card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.project-card {
    padding: 1.45rem;
    min-height: 220px;
}

.project-card span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 0.7rem;
    background: #FFF1EA;
    color: #D85A30;
    font-weight: 900;
    margin-bottom: 1rem;
}

.project-card b {
    display: block;
    margin-top: 1rem;
    color: #D85A30;
    font-size: 0.75rem;
}

.center-action {
    text-align: center;
    margin-top: 2rem;
}

.research-band {
    background: #FFF1EA;
    padding: 3.3rem 0;
}

.research-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.45fr) repeat(4, minmax(130px, 1fr));
    gap: 1.2rem;
    align-items: center;
}

.research-grid article {
    padding: 1.1rem;
    min-height: 130px;
}

.research-grid b {
    display: block;
    color: #0f172a;
    margin-bottom: 0.45rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.value-grid article {
    padding: 1.35rem;
}

.value-grid article span {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #D85A30;
    margin-bottom: 1rem;
}

.seminar-cta {
    background: #ffffff;
    padding: 1rem 0 4rem;
}

.cta-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-radius: 0.65rem;
    background:
        linear-gradient(135deg, rgba(12, 26, 86, 0.18), transparent),
        linear-gradient(135deg, #7D2F15, #D85A30 62%, #ef835f);
    box-shadow: 0 20px 44px rgba(216, 90, 48, 0.25);
}

.cta-panel h2,
.cta-panel p {
    color: #ffffff;
}

.calendar-icon {
    float: left;
    width: 52px;
    height: 52px;
    border-radius: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.86);
    margin-right: 1rem;
    position: relative;
}

.calendar-icon::before,
.calendar-icon::after {
    content: '';
    position: absolute;
    left: 9px;
    right: 9px;
    height: 2px;
    background: rgba(255, 255, 255, 0.86);
}

.calendar-icon::before {
    top: 14px;
}

.calendar-icon::after {
    top: 29px;
}

@media (max-width: 1100px) {
    .learning-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-card-grid,
    .value-grid,
    .research-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .research-grid > div {
        grid-column: 1 / -1;
    }

    .journey-track {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 0.55rem;
        margin: 0 0.25rem;
    }

    .nav-links a {
        font-size: 0.78rem;
    }

    .nav-seminar-btn {
        min-height: 36px;
        padding: 0.5rem 0.7rem;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .nav-contact-btn {
        padding: 0.55rem 0.75rem;
        font-size: 0.78rem;
    }

    .seminar-promo-overlay {
        padding: 1rem;
    }

    .seminar-promo-modal {
        width: min(94vw, 520px);
        max-height: 86vh;
    }

    .seminar-promo-close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.94);
        font-size: 1.55rem;
    }

    .seminar-promo-image {
        max-height: 86vh;
    }

    .seminar-hero {
        padding: 3.4rem 0 3rem;
    }

    .seminar-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .seminar-hero-art {
        min-height: 320px;
    }

    .brain-cube {
        width: min(260px, 72vw);
    }

    .cube-base {
        width: min(250px, 68vw);
        bottom: 34px;
    }

    .learning-card-grid,
    .project-card-grid,
    .value-grid,
    .research-grid,
    .journey-track {
        grid-template-columns: 1fr;
    }

    .learning-card {
        min-height: auto;
    }

    .journey-step {
        text-align: left;
        padding: 0 0 0 4.6rem;
        min-height: 70px;
    }

    .journey-step::before {
        left: 0;
        transform: none;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}
