/* /skin/css/css.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --tl5555-gold: #c8943e;
    --tl5555-gold-light: #d9a94e;
    --tl5555-gold-dark: #a8782c;
    --tl5555-dark: #1c1814;
    --tl5555-dark-2: #231f1a;
    --tl5555-surface: #f7f3ec;
    --tl5555-surface-alt: #efe9df;
    --tl5555-text: #2c2416;
    --tl5555-text-light: #6b6052;
    --tl5555-white: #fefcf9;
    --tl5555-radius: 14px;
    --tl5555-radius-lg: 22px;
    --tl5555-shadow: 0 6px 24px rgba(28, 24, 20, 0.10);
    --tl5555-shadow-lg: 0 16px 40px rgba(28, 24, 20, 0.14);
    --tl5555-transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--tl5555-surface);
    color: var(--tl5555-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tl5555-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Header */
.tl5555-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(28, 24, 20, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.tl5555-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    height: 64px;
}
.tl5555-nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    flex-shrink: 0;
}
.tl5555-nav-logo img {
    border-radius: 10px;
    width: 44px;
    height: 44px;
    object-fit: cover;
}
.tl5555-nav-brand {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fefcf9;
    letter-spacing: 0.5px;
}
.tl5555-nav-brand span {
    color: var(--tl5555-gold);
}
.tl5555-nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
}
.tl5555-nav-link {
    color: #c4bdb2;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: color var(--tl5555-transition), border-color var(--tl5555-transition);
}
.tl5555-nav-link:hover,
.tl5555-nav-link.tl5555-nav-active {
    color: var(--tl5555-gold-light);
}
.tl5555-nav-link.tl5555-nav-active {
    border-bottom-color: var(--tl5555-gold);
}

.tl5555-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.tl5555-menu-bar {
    width: 26px;
    height: 2.5px;
    background: #fefcf9;
    border-radius: 2px;
    transition: transform var(--tl5555-transition), opacity var(--tl5555-transition);
}

/* Hero */
.tl5555-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--tl5555-dark);
}
.tl5555-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.35);
    transform: scale(1.04);
}
.tl5555-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28,24,20,0.55) 0%, rgba(28,24,20,0.82) 60%, rgba(28,24,20,0.96) 100%);
}
.tl5555-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    max-width: 720px;
}
.tl5555-hero-logo-wrap {
    margin-bottom: 24px;
}
.tl5555-hero-logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    display: inline-block;
}
.tl5555-hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fefcf9;
    margin-bottom: 14px;
    letter-spacing: 1px;
    line-height: 1.25;
}
.tl5555-hero-desc {
    font-size: 1.08rem;
    color: #d5cfc5;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.55;
}
.tl5555-hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.tl5555-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    transition: background var(--tl5555-transition), transform var(--tl5555-transition), box-shadow var(--tl5555-transition);
    border: none;
}
.tl5555-btn-phone {
    background: var(--tl5555-gold);
    color: #1c1814;
}
.tl5555-btn-phone:hover {
    background: var(--tl5555-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(200, 148, 62, 0.35);
}
.tl5555-btn-register {
    background: transparent;
    color: var(--tl5555-gold-light);
    border: 2px solid var(--tl5555-gold);
}
.tl5555-btn-register:hover {
    background: var(--tl5555-gold);
    color: #1c1814;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(200, 148, 62, 0.35);
}
.tl5555-btn-download {
    background: var(--tl5555-gold);
    color: #1c1814;
    display: inline-flex;
    margin-top: 8px;
}
.tl5555-btn-download:hover {
    background: var(--tl5555-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(200, 148, 62, 0.35);
}

/* Section Shared */
section {
    padding: 80px 0;
}
.tl5555-section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tl5555-dark);
    margin-bottom: 44px;
    position: relative;
    display: inline-block;
}
.tl5555-section-heading::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: var(--tl5555-gold);
    margin-top: 12px;
    border-radius: 2px;
}

/* About */
.tl5555-about {
    background-color: var(--tl5555-white);
}
.tl5555-about-grid {
    display: flex;
    gap: 50px;
    align-items: stretch;
    flex-wrap: wrap;
}
.tl5555-about-text {
    flex: 1.3;
    min-width: 300px;
}
.tl5555-about-text .tl5555-section-heading {
    display: block;
}
.tl5555-about-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--tl5555-text);
    margin-bottom: 16px;
    line-height: 1.65;
}
.tl5555-about-detail {
    color: var(--tl5555-text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}
.tl5555-about-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.tl5555-stat-item {
    display: flex;
    flex-direction: column;
}
.tl5555-stat-item strong {
    font-size: 1.8rem;
    color: var(--tl5555-gold-dark);
    font-weight: 700;
    line-height: 1.1;
}
.tl5555-stat-item span {
    font-size: 0.9rem;
    color: var(--tl5555-text-light);
    margin-top: 4px;
}
.tl5555-about-image {
    flex: 1;
    min-width: 280px;
}
.tl5555-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--tl5555-radius-lg);
    box-shadow: var(--tl5555-shadow-lg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tl5555-about-image img:hover {
    transform: scale(1.015);
}

/* Advantage */
.tl5555-advantage {
    background-color: var(--tl5555-surface-alt);
    background-image: radial-gradient(ellipse at 70% 20%, rgba(200,148,62,0.06) 0%, transparent 60%);
}
.tl5555-adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}
.tl5555-adv-card {
    background: var(--tl5555-white);
    border-radius: var(--tl5555-radius-lg);
    padding: 30px 26px;
    box-shadow: var(--tl5555-shadow);
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--tl5555-gold);
}
.tl5555-adv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--tl5555-shadow-lg);
}
.tl5555-adv-icon {
    color: var(--tl5555-gold-dark);
    margin-bottom: 16px;
}
.tl5555-adv-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--tl5555-dark);
}
.tl5555-adv-card p {
    color: var(--tl5555-text-light);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Product */
.tl5555-product {
    background-color: var(--tl5555-white);
}
.tl5555-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
}
.tl5555-product-item {
    background: var(--tl5555-white);
    border-radius: var(--tl5555-radius-lg);
    overflow: hidden;
    box-shadow: var(--tl5555-shadow);
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.tl5555-product-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--tl5555-shadow-lg);
}
.tl5555-product-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.tl5555-product-info {
    padding: 18px 20px;
}
.tl5555-product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--tl5555-dark);
}
.tl5555-product-info p {
    color: var(--tl5555-text-light);
    font-size: 0.9rem;
}

/* Download */
.tl5555-download {
    background-color: var(--tl5555-surface-alt);
    background-image: radial-gradient(ellipse at 30% 80%, rgba(200,148,62,0.07) 0%, transparent 55%);
}
.tl5555-download-grid {
    display: flex;
    gap: 44px;
    align-items: center;
    flex-wrap: wrap;
}
.tl5555-download-info {
    flex: 1.2;
    min-width: 280px;
}
.tl5555-download-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--tl5555-dark);
}
.tl5555-download-info p {
    color: var(--tl5555-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}
.tl5555-download-features {
    list-style: none;
    margin-bottom: 24px;
}
.tl5555-download-features li {
    padding: 8px 0;
    color: var(--tl5555-text);
    font-size: 0.95rem;
    position: relative;
    padding-left: 22px;
}
.tl5555-download-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 10px;
    height: 10px;
    background: var(--tl5555-gold);
    border-radius: 50%;
}
.tl5555-download-image {
    flex: 1;
    min-width: 260px;
}
.tl5555-download-image img {
    width: 100%;
    border-radius: var(--tl5555-radius-lg);
    box-shadow: var(--tl5555-shadow-lg);
    object-fit: cover;
}

/* Contact */
.tl5555-contact {
    background-color: var(--tl5555-white);
}
.tl5555-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.tl5555-contact-card {
    background: var(--tl5555-surface);
    border-radius: var(--tl5555-radius-lg);
    padding: 28px 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    box-shadow: var(--tl5555-shadow);
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.tl5555-contact-card:hover {
    transform: translateY(-3px);
}
.tl5555-contact-icon {
    color: var(--tl5555-gold-dark);
    flex-shrink: 0;
}
.tl5555-contact-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--tl5555-dark);
    min-width: 42px;
}
.tl5555-contact-value {
    font-family: 'SF Mono', 'Cascadia Code', monospace;
    font-size: 0.95rem;
    color: var(--tl5555-text);
    flex: 1;
    min-width: 120px;
    word-break: break-all;
}
.tl5555-copy-btn {
    background: var(--tl5555-gold);
    border: none;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    color: #1c1814;
    font-family: inherit;
    transition: background var(--tl5555-transition), transform var(--tl5555-transition);
    flex-shrink: 0;
}
.tl5555-copy-btn:hover {
    background: var(--tl5555-gold-light);
    transform: scale(0.96);
}

/* Footer */
.tl5555-footer {
    background: var(--tl5555-dark);
    color: #b8afa2;
    padding: 50px 0 24px;
}
.tl5555-footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 36px;
    margin-bottom: 32px;
}
.tl5555-footer-brand {
    flex: 1;
    min-width: 180px;
}
.tl5555-footer-brand img {
    border-radius: 8px;
    margin-bottom: 8px;
}
.tl5555-footer-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fefcf9;
    display: block;
    margin-bottom: 4px;
}
.tl5555-footer-brand p {
    font-size: 0.9rem;
    color: #9a8e7d;
}
.tl5555-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 130px;
}
.tl5555-footer-links span {
    font-weight: 700;
    color: #fefcf9;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.tl5555-footer-links a {
    color: #b8afa2;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--tl5555-transition);
}
.tl5555-footer-links a:hover {
    color: var(--tl5555-gold-light);
}
.tl5555-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: #7a7162;
}

/* Toast */
.tl5555-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c2416;
    color: #fefcf9;
    padding: 11px 26px;
    border-radius: 40px;
    font-size: 0.9rem;
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}
.tl5555-toast.tl5555-toast-show {
    opacity: 1;
}

/* Responsive */
@media (max-width: 860px) {
    .tl5555-nav-list {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(28, 24, 20, 0.98);
        flex-direction: column;
        padding: 20px 28px;
        gap: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .tl5555-nav-list.tl5555-nav-open {
        display: flex;
    }
    .tl5555-menu-toggle {
        display: flex;
    }
    .tl5555-hero-title {
        font-size: 2rem;
    }
    .tl5555-hero-logo {
        width: 76px;
        height: 76px;
        border-radius: 18px;
    }
    .tl5555-about-grid,
    .tl5555-download-grid {
        flex-direction: column;
    }
    .tl5555-about-image img {
        height: 260px;
    }
    .tl5555-section-heading {
        font-size: 1.6rem;
    }
    section {
        padding: 56px 0;
    }
    .tl5555-hero {
        min-height: 70vh;
    }
}

@media (max-width: 480px) {
    .tl5555-container {
        padding: 0 16px;
    }
    .tl5555-hero-title {
        font-size: 1.6rem;
    }
    .tl5555-hero-desc {
        font-size: 0.95rem;
    }
    .tl5555-hero-logo {
        width: 64px;
        height: 64px;
    }
    .tl5555-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .tl5555-product-grid {
        grid-template-columns: 1fr;
    }
    .tl5555-adv-grid {
        grid-template-columns: 1fr;
    }
    .tl5555-contact-grid {
        grid-template-columns: 1fr;
    }
    .tl5555-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}