@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&family=Tajawal:wght@300;400;500;700;800&display=swap');

:root {
    --primary: #0a1628;
    --primary-light: #132238;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-glow: rgba(245, 158, 11, 0.3);
    --ocean: #0ea5e9;
    --ocean-dark: #0369a1;
    --ocean-light: #38bdf8;
    --surface: #1a2d47;
    --surface-light: #243b5a;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --glass: rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.1);
    --gradient-hero: linear-gradient(135deg, #061120 0%, #0b2542 45%, #15426d 75%, #916d25 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b, #f97316);
    --gradient-ocean: linear-gradient(135deg, #0ea5e9, #06b6d4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 30px var(--accent-glow);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    background: var(--primary);
    color: var(--text);
    direction: inherit;
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

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

/* ═══════════ NAVBAR ═══════════ */
.navbar {
    position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
    padding: 0 40px;
}
.navbar.scrolled { background: rgba(10, 22, 40, 0.97); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 75px; }
.navbar-brand { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; font-weight: 800; }
.navbar-brand .brand-icon {
    width: 48px; height: 48px; background: var(--gradient-accent); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.navbar-brand span { background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
    padding: 8px 18px; border-radius: 8px; font-weight: 600; font-size: 0.95rem;
    color: var(--text-muted); transition: var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: rgba(245,158,11,0.08); }
.nav-cta {
    background: var(--gradient-accent) !important; color: var(--primary) !important;
    padding: 10px 24px !important; border-radius: 10px !important; font-weight: 700 !important;
    box-shadow: 0 4px 15px var(--accent-glow);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.mobile-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* Language Selector */
.lang-selector {
    display: flex; gap: 4px; background: rgba(255, 255, 255, 0.05);
    padding: 3px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 10px;
}
.lang-btn {
    background: none; border: none; color: var(--text-muted);
    padding: 6px 14px; border-radius: 16px; font-size: 0.8rem;
    font-weight: 700; cursor: pointer; transition: var(--transition);
}
.lang-btn.active {
    background: var(--gradient-accent); color: var(--primary);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}
.lang-btn:hover:not(.active) {
    color: var(--text); background: rgba(255, 255, 255, 0.05);
}

/* ═══════════ HERO ═══════════ */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    background: var(--gradient-hero); position: relative; overflow: hidden;
    padding-top: 75px; padding-bottom: 95px;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-particles {
    position: absolute; inset: 0; overflow: hidden;
}
.hero-particles .particle {
    position: absolute; border-radius: 50%; background: var(--ocean-light); opacity: 0.15;
    animation: float 8s infinite ease-in-out;
}
.hero-particles .particle:nth-child(1) { width: 6px; height: 6px; top: 20%; right: 10%; animation-delay: 0s; }
.hero-particles .particle:nth-child(2) { width: 4px; height: 4px; top: 60%; right: 80%; animation-delay: 2s; }
.hero-particles .particle:nth-child(3) { width: 8px; height: 8px; top: 40%; right: 50%; animation-delay: 4s; }
.hero-particles .particle:nth-child(4) { width: 5px; height: 5px; top: 80%; right: 30%; animation-delay: 1s; }
.hero-particles .particle:nth-child(5) { width: 3px; height: 3px; top: 10%; right: 70%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.15; }
    50% { transform: translateY(-30px) translateX(15px); opacity: 0.4; }
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content h1 { font-size: 3.2rem; font-weight: 900; line-height: 1.3; margin-bottom: 20px; }
.hero-content h1 .highlight { color: var(--accent); position: relative; }
.hero-content h1 .highlight::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 100%; height: 4px;
    background: var(--gradient-accent); border-radius: 2px;
}
.hero-content p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 32px; max-width: 520px; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badge {
    display: flex; align-items: center; gap: 8px; padding: 8px 16px;
    background: var(--glass); border: 1px solid var(--glass-border); border-radius: 50px;
    font-size: 0.9rem; color: var(--ocean-light);
}
.hero-badge i { color: var(--accent); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px;
    background: var(--gradient-accent); color: var(--primary); border: none; border-radius: 12px;
    font-weight: 700; font-size: 1.05rem; cursor: pointer; transition: var(--transition);
    font-family: inherit; box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px;
    background: var(--glass); color: var(--text); border: 1px solid var(--glass-border);
    border-radius: 12px; font-weight: 600; font-size: 1.05rem; cursor: pointer;
    transition: var(--transition); font-family: inherit;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--ocean); }
.hero-visual { display: flex; justify-content: center; position: relative; }
.hero-composite {
    position: relative; width: 100%; max-width: 560px; height: 450px;
    display: flex; justify-content: center; align-items: center;
}
/* Craftsman portrait with premium arched frame */
.hero-craftsman {
    display: none;
}
.hero-craftsman img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
    filter: brightness(1.05) contrast(1.05);
    transition: var(--transition);
}
.hero-craftsman:hover img {
    transform: scale(1.05);
}
.craftsman-glow {
    position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
    width: 220px; height: 40px; background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%; filter: blur(15px); z-index: 2;
}
@keyframes craftFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
/* Device */
.hero-device {
    position: relative; z-index: 2;
    width: 100%; max-width: 360px;
}
.hero-device img {
    width: 100%; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 2px solid var(--glass-border);
}
/* Float cards */
.hero-float-card {
    position: absolute; background: var(--surface); border: 1px solid var(--glass-border);
    border-radius: 14px; padding: 16px 20px; backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg); animation: floatCard 4s infinite ease-in-out; z-index: 4;
}
.hero-float-card.card-1 { bottom: 20px; left: 0; }
.hero-float-card.card-2 { top: 0; right: 40px; animation-delay: 2s; }
.hero-float-card .card-icon { font-size: 1.8rem; color: var(--accent); margin-bottom: 6px; }
.hero-float-card .card-number { font-size: 1.6rem; font-weight: 800; color: var(--text); }
.hero-float-card .card-label { font-size: 0.8rem; color: var(--text-muted); }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Wave Shoreline Divider */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}
.hero-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* ═══════════ SECTION STYLES ═══════════ */
.section { padding: 100px 0; position: relative; }
.section-dark { background: var(--primary); }
.section-darker { background: var(--primary-light); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .label {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 20px;
    background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.2);
    border-radius: 50px; font-size: 0.85rem; color: var(--ocean-light);
    margin-bottom: 16px; font-weight: 600;
}
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
.section-header h2 .accent { color: var(--accent); }
.section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ═══════════ SERVICES ═══════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: var(--surface); border: 1px solid var(--glass-border); border-radius: var(--radius);
    padding: 36px 28px; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 3px;
    background: var(--gradient-accent); transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(245,158,11,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 64px; height: 64px; background: rgba(14,165,233,0.1); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    color: var(--ocean-light); margin-bottom: 20px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gradient-accent); color: var(--primary); }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.service-card .service-type-badge {
    display: inline-block; margin-top: 16px; padding: 4px 14px;
    border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}
.service-type-badge.repair { background: rgba(14,165,233,0.15); color: var(--ocean-light); }
.service-type-badge.diagnostic { background: rgba(245,158,11,0.15); color: var(--accent); }

/* ═══════════ BRANDS MARQUEE ═══════════ */
.brands-section { padding: 60px 0; background: var(--primary-light); overflow: hidden; }
.brands-track {
    display: flex; gap: 60px; animation: scroll 25s linear infinite; width: max-content;
}
.brands-track img { height: 50px; opacity: 0.5; filter: grayscale(1) brightness(2); transition: var(--transition); }
.brands-track img:hover { opacity: 1; filter: none; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════ WHY US ═══════════ */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
    text-align: center; padding: 40px 24px; background: var(--glass);
    border: 1px solid var(--glass-border); border-radius: var(--radius);
    transition: var(--transition);
}
.feature-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.feature-card .feat-icon {
    width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%;
    background: rgba(14,165,233,0.1); display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--ocean-light); transition: var(--transition);
}
.feature-card:hover .feat-icon { background: var(--gradient-accent); color: var(--primary); }
.feature-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.88rem; }
.feature-card .feat-number {
    font-size: 2.2rem; font-weight: 900; color: var(--accent); margin-top: 12px;
}

/* ═══════════ GALLERY ═══════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-item {
    position: relative; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--glass-border); aspect-ratio: 1;
    cursor: pointer; transition: var(--transition);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: var(--text); font-weight: 600; font-size: 0.95rem; }

/* ═══════════ CTA BANNER ═══════════ */
.cta-banner {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-light) 100%);
    border-radius: 24px; padding: 60px; text-align: center;
    border: 1px solid var(--glass-border); position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: -50%; right: -50%;
    width: 200%; height: 200%; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.3;
}
.cta-banner h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 32px; position: relative; z-index: 1; }
.cta-banner .btn-primary { position: relative; z-index: 1; }

/* ═══════════ CONTACT ═══════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
    display: flex; align-items: center; gap: 20px; padding: 24px;
    background: var(--surface); border: 1px solid var(--glass-border);
    border-radius: var(--radius); transition: var(--transition);
}
.contact-card:hover { border-color: var(--accent); transform: translateX(8px); }
.contact-card .card-ic {
    width: 56px; height: 56px; min-width: 56px; border-radius: 14px;
    background: rgba(14,165,233,0.1); display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--ocean-light);
}
.contact-card h4 { font-weight: 700; margin-bottom: 4px; font-size: 1rem; }
.contact-card p, .contact-card a { color: var(--text-muted); font-size: 0.92rem; }
.contact-card a:hover { color: var(--accent); }
.contact-form {
    background: var(--surface); border: 1px solid var(--glass-border);
    border-radius: var(--radius); padding: 40px;
}
.contact-form h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px; background: var(--primary); border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm); color: var(--text); font-family: inherit; font-size: 0.95rem;
    transition: var(--transition); direction: rtl;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; }

/* ═══════════ MAP ═══════════ */
.map-wrapper {
    border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border);
    height: 400px; margin-top: 48px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ═══════════ FAQ ═══════════ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
    background: var(--surface); border: 1px solid var(--glass-border);
    border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.faq-item.active { border-color: var(--accent); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; cursor: pointer; font-weight: 700; font-size: 1.05rem;
    transition: var(--transition); width: 100%; background: none; border: none;
    color: var(--text); font-family: inherit; text-align: right;
}
.faq-question:hover { color: var(--accent); }
.faq-question i { transition: transform 0.3s ease; color: var(--accent); font-size: 0.9rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.9; }

/* ═══════════ FOOTER ═══════════ */
.footer {
    background: #060e1a; border-top: 1px solid var(--glass-border); padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-muted); margin-top: 16px; font-size: 0.92rem; line-height: 1.8; }
.footer-col h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; color: var(--accent); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); padding-right: 8px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 42px; height: 42px; border-radius: 10px; background: var(--glass);
    border: 1px solid var(--glass-border); display: flex; align-items: center;
    justify-content: center; color: var(--text-muted); transition: var(--transition);
}
.footer-social a:hover { background: var(--gradient-accent); color: var(--primary); border-color: transparent; }
.footer-bottom {
    border-top: 1px solid var(--glass-border); padding: 20px 0;
    text-align: center; color: var(--text-muted); font-size: 0.85rem;
}

/* ═══════════ WHATSAPP FLOAT ═══════════ */
.whatsapp-float {
    position: fixed; bottom: 30px; left: 30px; z-index: 999;
    width: 60px; height: 60px; background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition); animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 40px rgba(37,211,102,0.6); }
}

/* ═══════════ ALERTS ═══════════ */
.alert-success {
    background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3);
    color: #10b981; padding: 16px 24px; border-radius: var(--radius-sm);
    margin-bottom: 20px; font-weight: 600;
}

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin: 0 auto 32px; }
    .hero-badges { justify-content: center; }
    .hero-btns { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .nav-links { display: none; position: fixed; top: 75px; right: 0; left: 0; background: rgba(10,22,40,0.98); flex-direction: column; padding: 20px; gap: 4px; border-bottom: 1px solid var(--glass-border); align-items: center; }
    .lang-selector { margin: 10px 0; }
    .nav-links.active { display: flex; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 1.8rem; }
    .cta-banner { padding: 40px 24px; }
    .cta-banner h2 { font-size: 1.6rem; }
    .contact-form { padding: 24px; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .hero-float-card { display: none; }
    .hero-composite { height: 300px; }
    .hero-craftsman { width: 180px; height: 260px; }
    .hero-device { width: 180px; top: 40px; }
}
