/* Global Reset & Base Styles */
:root {
    --bg-color: #FFFFFF;
    --text-primary: #1A1A1A;
    /* Ink Black */
    --text-secondary: #555555;
    /* Charcoal */
    --accent-color: #C41E3A;
    /* Logo Red / Chinese Red */
    --accent-light: #FFF0F2;
    /* Soft red bg for highlights */
    --white: #FFFFFF;
    --border-color: #EFEFEF;
    --font-serif: 'Noto Serif SC', "Songti SC", "SimSun", serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --container-width: 1200px;
    --transition-speed: 0.4s;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    /* Initial transparency */
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s ease;
}

/* Scrolled State */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo {
    height: 40px;
    width: auto;
    /* Blend mode helps if logo has white bg but navbar is transparent-ish, 
       or to ensure it sits well. If logo is transparent PNG, this does nothing bad on white. */
    mix-blend-mode: multiply;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.nav-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 0.8rem;
    padding-left: 0.8rem;
    border-left: 1px solid var(--border-color);
    line-height: 1.2;
    font-weight: 500;
    display: inline-block;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .nav-subtitle {
        display: none;
    }
}


.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-links li a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding-bottom: 4px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: var(--text-primary);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* Language Switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 2px 5px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--accent-color);
}

.lang-btn.active {
    font-weight: 700;
    color: var(--accent-color);
}

.sep {
    color: #DDD;
}


/* Premium Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes subtle-pulse {
    0% {
        box-shadow: 0 4px 14px 0 rgba(196, 30, 58, 0.39);
    }

    50% {
        box-shadow: 0 4px 20px 0 rgba(196, 30, 58, 0.55);
    }

    100% {
        box-shadow: 0 4px 14px 0 rgba(196, 30, 58, 0.39);
    }
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.9rem 2.5rem;
    border-radius: 4px;
    /* Slightly softer */
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-color);
    box-shadow: 0 4px 14px 0 rgba(196, 30, 58, 0.39);
    /* Premium Glow */
}

.btn-primary:hover {
    background-color: #A91930;
    border-color: #A91930;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.23);
}

.btn-primary-outline {
    border: 1px solid var(--text-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 60px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 100%);
    /* Subtle depth */
}

.hero-product-stack {
    position: relative;
    width: 650px;
    /* Reduced from 100% to fit */
    height: 500px;
    /* Explicit height */
    perspective: 1000px;
    animation: float 6s ease-in-out infinite;
    /* Floating effect */
}

.hero-content {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* Vertical Text Element - Chinese aesthetic */
.hero-text-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
}

.vertical-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--accent-color));
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: var(--font-serif);
    letter-spacing: 0.8em;
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Hide vertical text in English mode (doesn't display well) */
body[data-lang="en"] .hero-text-vertical {
    display: none;
}

.hero-main {
    max-width: 750px;
}

.hero-main h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--text-primary);
}

.hero-main .subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-primary);
    /* Darker for readability */
    margin-bottom: 2rem;
    font-family: var(--font-serif);
    letter-spacing: 0.05em;
}

.hero-main .description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
}

/* Ink Background Effect - Red tint now */
.hero-bg-ink {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 70%;
    height: 90%;
    /* Very subtle red gradient */
    background: radial-gradient(circle, rgba(196, 30, 58, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(80px);
}

/* Section Common */
.section {
    padding: 7rem 0;
}

.section-header {
    margin-bottom: 4rem;
    position: relative;
}

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

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.divider-red {
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-header p {
    font-family: var(--font-serif);
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.image-gallery {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.gallery-img {
    height: 300px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    object-fit: cover;
}

.gallery-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Philosophy Section */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
    border-color: #fff;
}

.philosophy-card.highlight {
    background: rgba(196, 30, 58, 0.03);
    /* Extremely subtle red tint */
    border: 1px solid rgba(196, 30, 58, 0.1);
    /* Soft red bg */
    border-color: transparent;
}

.philosophy-card.highlight h3 {
    color: var(--accent-color);
}

.philosophy-card.highlight .icon-text {
    color: rgba(196, 30, 58, 0.1);
}

.icon-text {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: #F5F5F5;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.philosophy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.philosophy-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Product/Features Section */
.product-section {
    background-color: var(--white);
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1rem;
    color: var(--text-primary);
}

.feature-item h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    /* Vertical pill */
    background-color: var(--accent-color);
    border-radius: 2px;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-left: 1rem;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background-color: #FAFAFA;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    text-align: center;
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.contact-details {
    margin-top: 3rem;
    padding: 3rem;
    border-top: 2px solid var(--accent-color);
    background: var(--white);
    display: inline-block;
    min-width: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.contact-details p {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

/* Footer - Specific Requirement */
.site-footer {
    background-color: #1A1A1A;
    color: #999;
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    color: #FFF;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

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

    .hero-text-vertical {
        display: none;
    }

    .hero-main h1 {
        font-size: 3rem;
    }

    .philosophy-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-links {
        display: none;
    }

    .nav-right {
        gap: 1rem;
    }

    .contact-details {
        min-width: unset;
        width: 100%;
        padding: 2rem;
    }
}

/* Value Section */
.value-section {
    background-color: var(--white);
    padding: 6rem 0;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(196, 30, 58, 0.3);
}

.value-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.value-number .unit {
    font-size: 1.5rem;
    font-weight: 500;
    vertical-align: super;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Deployment Section */
.deployment-section {
    background-color: var(--gray-50);
    padding: 6rem 0;
}

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

.deployment-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.deployment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(21, 21, 21, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--primary-red);
}

.deployment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.deployment-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {

    .value-grid,
    .deployment-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Phase 7: Product Visual Enhancements
   ========================================= */

/* Hero Flex Layout - Text Left, Image Right */
.hero-flex-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-image-right {
    flex: 1;
    max-width: 55%;
    position: relative;
}

@media (max-width: 992px) {
    .hero-flex-container {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-image-right {
        max-width: 100%;
        order: -1;
        /* Image on top on mobile */
    }

    .hero-main {
        max-width: 100%;
    }
}

/* Hero Product Showcase */
.hero-product-showcase {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    perspective: 1000px;
    padding-bottom: 2rem;
}

.hero-product-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    background: #fff;
    /* Strong shadow for "pop" effect */
    box-shadow: 0 30px 80px rgba(196, 30, 58, 0.15), 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.hero-product-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 90px rgba(196, 30, 58, 0.2), 0 15px 40px rgba(0, 0, 0, 0.08);
}

.hero-product-img {
    width: 100%;
    height: auto;
    display: block;
    /* Subtle inner glow or border equivalent */
}

/* "Partial Mask" / Highlight Effect */
.hero-product-shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    /* Gradient fade at bottom to blend or just shine */
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2));
    pointer-events: none;
    z-index: 3;
}

/* Product Scrolling Section */
.product-scroll-section {
    padding: 2rem 0 4rem;
    background-color: var(--white);
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.product-scroll-section::before,
.product-scroll-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.product-scroll-section::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.product-scroll-section::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.scroll-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    /* Fix for whitespace */
}

.scroll-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: scrollInfinite 60s linear infinite;
    padding: 2rem 0;
    /* Space for shadows */
}

.scroll-track:hover {
    animation-play-state: paused;
}

.scroll-item img {
    height: 320px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: #fff;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.scroll-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move by half the track width if duplicated content */
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-product-showcase {
        margin-top: 2rem;
    }

    .scroll-item img {
        height: 200px;
    }

    .scroll-track {
        gap: 1.5rem;
    }
}

/* =========================================
   Phase 8: Stacked Product Images
   ========================================= */

.hero-product-stack {
    position: relative;
    width: 100%;
    min-height: 400px;
    perspective: 1000px;
}

.product-card {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

/* Back card - product1.png - more exposed */
.product-back {
    width: 88%;
    top: -30px;
    left: -20px;
    z-index: 1;
    transform: rotate(-5deg);
}

/* Front card - product2.png */
.product-front {
    width: 85%;
    top: 60px;
    right: -10px;
    left: auto;
    z-index: 2;
    transform: rotate(3deg);
    box-shadow: 0 30px 80px rgba(196, 30, 58, 0.15), 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-front:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 40px 90px rgba(196, 30, 58, 0.2), 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Gradient blur mask - using multiple layers for progressive blur effect */
.product-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 20%,
            rgba(255, 255, 255, 0.3) 40%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0.7) 80%,
            rgba(255, 255, 255, 0.9) 100%);
    pointer-events: none;
    z-index: 5;
    mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Overall stack mask - lighter now */
.hero-stack-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.5) 100%);
    pointer-events: none;
    z-index: 4;
}

@media (max-width: 992px) {
    .hero-product-stack {
        min-height: 300px;
    }

    .product-back,
    .product-front {
        width: 100%;
        position: relative;
        transform: none;
        top: 0;
        left: 0;
        right: auto;
        margin-bottom: 1rem;
    }

    .product-back {
        display: none;
        /* Hide back card on mobile */
    }
}

/* =========================================
   Trial Application Form Section
   ========================================= */

.trial-section {
    background-color: var(--gray-50);
    padding: 6rem 0;
}

.trial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.trial-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.trial-form .form-group {
    margin-bottom: 1.5rem;
}

.trial-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.trial-form input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.trial-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.trial-form input::placeholder {
    color: #999;
}

.trial-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    cursor: pointer;
}

.trial-info {
    padding: 2rem 0;
}

.trial-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.trial-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.trial-info ul li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.trial-info ul li:last-child {
    border-bottom: none;
}

.trial-note {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05), rgba(196, 30, 58, 0.02));
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid #27ae60;
}

.form-message.error {
    display: block;
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

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

    .trial-form-wrapper {
        padding: 2rem;
    }

    .trial-info {
        order: -1;
    }
}