/* ====== RESET & BASE ====== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e94560;
    --secondary: #00d4ff;
    --accent: #a855f7;
    --bg-dark: #0a0a1a;
    --bg-card: rgba(26, 26, 46, 0.6);
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-glow: rgba(233, 69, 96, 0.3);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Noto Sans TC', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* ====== BACKGROUND GLOWING CURVES ====== */
.bg-curves {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.curve-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.glow-curve {
    filter: blur(3px);
    animation: curveDrift 8s ease-in-out infinite;
}

.glow-curve.c1 {
    animation-delay: 0s;
}

.glow-curve.c2 {
    animation-delay: 2.5s;
}

.glow-curve.c3 {
    animation-delay: 5s;
}

@keyframes curveDrift {
    0%, 100% {
        transform: translateX(0) scaleX(1);
        opacity: 0.8;
    }
    25% {
        transform: translateX(20px) scaleX(1.02);
        opacity: 1;
    }
    50% {
        transform: translateX(-15px) scaleX(0.98);
        opacity: 0.6;
    }
    75% {
        transform: translateX(10px) scaleX(1.01);
        opacity: 0.9;
    }
}

.glow-curve.c2 {
    animation: curveDrift2 10s ease-in-out infinite;
    filter: blur(4px);
}

.glow-curve.c3 {
    animation: curveDrift3 12s ease-in-out infinite;
    filter: blur(5px);
}

@keyframes curveDrift2 {
    0%, 100% {
        transform: translateX(0) scaleY(1);
        opacity: 0.7;
    }
    33% {
        transform: translateX(-25px) scaleY(0.97);
        opacity: 1;
    }
    66% {
        transform: translateX(15px) scaleY(1.03);
        opacity: 0.5;
    }
}

@keyframes curveDrift3 {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translateX(20px) rotate(0.5deg);
        opacity: 0.9;
    }
    66% {
        transform: translateX(-30px) rotate(-0.5deg);
        opacity: 0.4;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ====== NAVBAR ====== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(233, 69, 96, 0.2);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hexagon-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), #c62a47);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    font-size: 18px;
    color: white;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-toggle {
    background: rgba(233, 69, 96, 0.15);
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 0 8px rgba(233, 69, 96, 0.3);
    transition: var(--transition);
}

.lang-toggle:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 16px rgba(233, 69, 96, 0.5);
}

.lang-active {
    font-weight: 700;
}

.lang-inactive {
    opacity: 0.5;
}

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
}

/* ====== HERO SECTION ====== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 1s; }
.particle:nth-child(3) { left: 60%; top: 40%; animation-delay: 2s; }
.particle:nth-child(4) { left: 80%; top: 60%; animation-delay: 3s; }
.particle:nth-child(5) { left: 40%; top: 10%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.glitch {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    display: block;
    margin-top: 10px;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #c62a47);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(233, 69, 96, 0.1);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-top: 5px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tumbler-showcase {
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cup-photo {
    max-height: 380px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(233, 69, 96, 0.2));
    transition: transform 0.3s ease;
}

.hero-cup-photo:hover {
    transform: scale(1.02);
}

.cup-container {
    position: relative;
}

.tumbler-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(233, 69, 96, 0.4));
}

.temperature-display {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.temp-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary);
    display: block;
}

.temp-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.floating-elements {
    position: absolute;
    inset: -50px;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-around 6s infinite ease-in-out;
}

.float-icon:nth-child(1) { top: 0; left: -40px; }
.float-icon:nth-child(2) { top: 20%; right: -50px; }
.float-icon:nth-child(3) { bottom: 30%; left: -60px; }
.float-icon:nth-child(4) { bottom: 0; right: -40px; }

.float-icon i {
    color: var(--primary);
    font-size: 18px;
}

@keyframes float-around {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* ====== SECTION HEADER ====== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--text-main), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.title-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0 auto 20px;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ====== PRODUCTS SECTION ====== */
.products {
    padding: 100px 0;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.2);
    border-color: var(--primary);
}

.product-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(233, 69, 96, 0.05), transparent);
}

.product-photo {
    max-height: 270px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transition: var(--transition);
}

.product-card:hover .product-photo {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(233, 69, 96, 0.3));
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-badge.hot {
    background: #ff6b35;
}

.product-badge.premium {
    background: var(--accent);
}

.product-info {
    padding: 25px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    word-break: break-word;
}

/* English mode: reduce Orbitron font size for long names */
body.lang-en .product-name {
    font-size: 1rem;
    letter-spacing: 1px;
}

body.lang-en .product-desc {
    font-size: 0.85rem;
    line-height: 1.5;
}

body.lang-en .section-title {
    font-size: 2rem;
    letter-spacing: 2px;
}

body.lang-en .nav-menu a {
    font-size: 12px;
    letter-spacing: 1px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.product-specs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.spec-tag {
    background: rgba(233, 69, 96, 0.1);
    border: 1px solid var(--border-glow);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--primary);
}

.product-actions {
    display: flex;
    justify-content: flex-end;
}

/* ====== TECHNOLOGY SECTION ====== */
.technology {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, transparent, rgba(233, 69, 96, 0.02), transparent);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.15);
}

.tech-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
}

.tech-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tech-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.tech-metric {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.tech-metric .metric-unit {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 5px;
}

/* ====== ABOUT SECTION ====== */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
}

.highlight i {
    font-size: 24px;
    color: var(--primary);
    margin-top: 3px;
}

.highlight h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.highlight p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.infographic {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(233, 69, 96, 0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
}

/* ====== CONTACT SECTION ====== */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(233, 69, 96, 0.02), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-detail p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input {
    padding: 15px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.2);
}

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

/* ====== FOOTER ====== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-glow);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo i {
    font-size: 24px;
    color: var(--primary);
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

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

.footer-links {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(233, 69, 96, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(233, 69, 96, 0.1);
}

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

/* ====== RESPONSIVE ====== */
@media (min-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description,
    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 26, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero-stats {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

/* ====== ANIMATIONS ====== */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== OEM SECTION ====== */
.oem-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(233, 69, 96, 0.02), transparent);
    position: relative;
}

.oem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.oem-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.oem-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.oem-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.15);
    border-color: var(--primary);
}

.oem-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
}

.oem-service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.oem-service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}
