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

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f1a;
    --bg-card: #12121f;
    --bg-card-hover: #181830;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --accent-blue: #00D4FF;
    --accent-purple: #7B2FFF;
    --accent-green: #00FFB2;
    --accent-pink: #FF6BCA;
    --accent-red: #FF6B6B;
    --accent-orange: #FF9F43;
    --gradient-main: linear-gradient(135deg, #00D4FF 0%, #7B2FFF 100%);
    --gradient-green: linear-gradient(135deg, #00FFB2 0%, #00D4FF 100%);
    --gradient-pink: linear-gradient(135deg, #7B2FFF 0%, #FF6BCA 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-family);
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.05);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    transform: translateY(-4px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--accent-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--accent-blue);
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease-out;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-blue);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line {
    display: block;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 40px;
    transition: var(--transition);
}

.hero-feature-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.hero-feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-feature-divider {
    width: 1px;
    height: 28px;
    background: var(--border-color);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 20px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-ai-svg {
    width: 100%;
    max-width: 1100px;
    height: auto;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-blue);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 100px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 16px;
}

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

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
}

.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-main);
    opacity: 0;
    transition: var(--transition);
}

.product-detail-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.product-detail-card:hover::before {
    opacity: 1;
}

.product-detail-card.reverse {
    direction: rtl;
}

.product-detail-card.reverse > * {
    direction: ltr;
}

.pdc-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdc-img {
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-md);
    object-fit: cover;
    aspect-ratio: 3/2;
    transition: var(--transition);
}

.product-detail-card:hover .pdc-img {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
}

.pdc-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pdc-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pdc-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.06);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.pdc-icon.icon-orange {
    background: rgba(255, 107, 107, 0.06);
}

.pdc-icon.icon-purple {
    background: rgba(123, 47, 255, 0.06);
}

.pdc-icon.icon-green {
    background: rgba(0, 255, 178, 0.06);
}

.pdc-title-area {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pdc-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.pdc-subtitle {
    font-size: 0.95rem;
    color: var(--accent-blue);
    font-weight: 500;
}

.pdc-subtitle.subtitle-orange {
    color: var(--accent-orange);
}

.pdc-subtitle.subtitle-purple {
    color: var(--accent-purple);
}

.pdc-subtitle.subtitle-green {
    color: var(--accent-green);
}

.pdc-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.pdc-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pdc-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pdc-feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 6px;
}

.pdc-feature-dot.dot-orange {
    background: var(--accent-orange);
}

.pdc-feature-dot.dot-purple {
    background: var(--accent-purple);
}

.pdc-feature-dot.dot-green {
    background: var(--accent-green);
}

.pdc-feature strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.pdc-feature span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pdc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 4px 12px;
    font-size: 0.75rem;
    color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.08);
    border-radius: 100px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.tag-orange {
    color: var(--accent-orange);
    background: rgba(255, 159, 67, 0.08);
    border-color: rgba(255, 159, 67, 0.15);
}

.tag-purple {
    color: var(--accent-purple);
    background: rgba(123, 47, 255, 0.08);
    border-color: rgba(123, 47, 255, 0.15);
}

.tag-green {
    color: var(--accent-green);
    background: rgba(0, 255, 178, 0.08);
    border-color: rgba(0, 255, 178, 0.15);
}

.solutions {
    background: var(--bg-secondary);
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.solution-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
    transition: var(--transition);
    overflow: hidden;
}

.solution-row:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.solution-row:hover .solution-row-img {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
}

.solution-row:hover .solution-number {
    color: var(--accent-blue);
}

.solution-row.reverse {
    direction: rtl;
}

.solution-row.reverse > * {
    direction: ltr;
}

.solution-row-img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.solution-row-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solution-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    line-height: 1;
}

.solution-title {
    font-size: 1.3rem;
    font-weight: 700;
}

.solution-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.tech-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.tech-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(0, 212, 255, 0.05);
    margin-bottom: 20px;
}

.tech-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tech-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-layout {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-title {
    white-space: nowrap;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.05);
    border-radius: var(--radius-sm);
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    position: relative;
    width: 360px;
    height: 360px;
}

.visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 280px;
    height: 280px;
    border-color: rgba(0, 212, 255, 0.15);
    animation: ringRotate 20s linear infinite;
}

.ring-2 {
    width: 200px;
    height: 200px;
    border-color: rgba(123, 47, 255, 0.15);
    animation: ringRotate 15s linear infinite reverse;
}

.ring-3 {
    width: 120px;
    height: 120px;
    border-color: rgba(0, 255, 178, 0.15);
    animation: ringRotate 10s linear infinite;
}

.visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.3);
}

.visual-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
}

.orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
}

.dot-1 {
    background: var(--accent-blue);
    box-shadow: 0 0 12px var(--accent-blue);
    animation: orbit1 8s linear infinite;
}

.dot-2 {
    background: var(--accent-purple);
    box-shadow: 0 0 12px var(--accent-purple);
    animation: orbit2 12s linear infinite;
}

.dot-3 {
    background: var(--accent-green);
    box-shadow: 0 0 12px var(--accent-green);
    animation: orbit3 10s linear infinite;
}

.cta {
    padding: 80px 0 120px;
}

.cta-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(123, 47, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 8px;
}

.cta-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cta-qr img {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(0, 212, 255, 0.2);
    background: #fff;
}

.cta-qr span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.cta-phone,
.cta-email {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.cta-phone svg,
.cta-email svg {
    color: var(--accent-blue);
    flex-shrink: 0;
}

.cta-email a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.cta-email a:hover {
    color: var(--accent-blue);
}

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

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

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit1 {
    from {
        transform: rotate(0deg) translateX(140px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(140px) rotate(-360deg);
    }
}

@keyframes orbit2 {
    from {
        transform: rotate(120deg) translateX(100px) rotate(-120deg);
    }
    to {
        transform: rotate(480deg) translateX(100px) rotate(-480deg);
    }
}

@keyframes orbit3 {
    from {
        transform: rotate(240deg) translateX(60px) rotate(-240deg);
    }
    to {
        transform: rotate(600deg) translateX(60px) rotate(-600deg);
    }
}

@media (max-width: 1024px) {
    .product-detail-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px;
    }

    .product-detail-card.reverse {
        direction: ltr;
    }

    .pdc-visual {
        order: -1;
    }

    .solution-row {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px;
    }

    .solution-row.reverse {
        direction: ltr;
    }

    .solution-row-img {
        aspect-ratio: 16/9;
    }

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

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

    .about-visual {
        order: -1;
    }

    .visual-card {
        width: 280px;
        height: 280px;
    }

    .ring-1 { width: 220px; height: 220px; }
    .ring-2 { width: 160px; height: 160px; }
    .ring-3 { width: 100px; height: 100px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-features {
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero-feature-item {
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    .hero-feature-divider {
        display: none;
    }

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

    .section {
        padding: 80px 0;
    }

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

    .cta-card {
        padding: 48px 24px;
    }

    .cta-contact {
        flex-direction: column;
        gap: 24px;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .hero-feature-divider {
        display: none;
    }

    .product-detail-card {
        padding: 24px;
    }

    .solution-row {
        padding: 24px;
        gap: 20px;
    }
}
