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

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root[theme="dark"] {
    --bg-primary: #0b0f19;
    --bg-secondary: rgba(19, 26, 45, 0.7);
    --bg-tertiary: #1e293b;
    --bg-glow: rgba(99, 102, 241, 0.03);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --accent-gradient: linear-gradient(135deg, #6366f1, #06b6d4);
    --accent-glow: rgba(99, 102, 241, 0.25);
    --accent-color: #6366f1;
    --accent-secondary: #06b6d4;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    --card-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
    --glass-blur: blur(16px);
    --nav-bg: rgba(11, 15, 25, 0.75);
}

:root[theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: rgba(255, 255, 255, 0.8);
    --bg-tertiary: #e2e8f0;
    --bg-glow: rgba(79, 70, 229, 0.02);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --accent-gradient: linear-gradient(135deg, #4f46e5, #0891b2);
    --accent-glow: rgba(79, 70, 229, 0.15);
    --accent-color: #4f46e5;
    --accent-secondary: #0891b2;
    
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.16);
    --card-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.06);
    --glass-blur: blur(16px);
    --nav-bg: rgba(248, 250, 252, 0.8);
}

/* --- RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.4s ease, color 0.4s ease;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background grid animation */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(var(--bg-glow) 1px, transparent 0),
        radial-gradient(var(--bg-glow) 1.5px, transparent 0);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    z-index: -2;
    pointer-events: none;
}

.bg-glowing-orbs {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    mix-blend-mode: screen;
    animation: float-orb 20s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--accent-color);
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: var(--accent-secondary);
    animation-delay: -5s;
}

@keyframes float-orb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(8%, 10%) scale(1.15); }
}

/* --- TYPOGRAPHY & REUSABLES --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
}

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

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

/* Glassmorphism utility */
.glass-card {
    background: var(--bg-secondary);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--accent-glow);
    opacity: 0.95;
}

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

.btn-secondary:hover {
    background: var(--border-color);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

/* --- HEADER / NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--nav-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 12px 0;
    box-shadow: var(--card-shadow);
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    width: 8px;
    height: 8px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: inline-block;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    padding: 8px 0;
}

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

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Theme Toggle Slider Button */
.theme-toggle-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.theme-toggle-btn:hover {
    color: var(--text-primary);
    background: var(--border-color);
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    border: none;
    background: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--border-color);
    border: 1px solid var(--border-hover);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-slogan-box {
    margin: 32px 0;
    padding: 16px 24px;
    border-left: 3px solid var(--accent-color);
    background: linear-gradient(90deg, var(--bg-secondary), transparent);
    border-radius: 0 12px 12px 0;
}

.hero-slogan-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 700;
}

.hero-slogan {
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
    color: var(--text-primary);
}

.hero-btns {
    display: flex;
    gap: 16px;
}

/* Hero Portrait Frame */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    filter: blur(40px);
    opacity: 0.2;
    z-index: -1;
    border-radius: 24px;
}

.hero-image-frame {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 4px solid var(--bg-secondary);
    outline: 2px solid var(--accent-color);
    overflow: hidden;
    position: relative;
    box-shadow: var(--card-shadow), 0 0 25px var(--accent-glow);
    transition: all 0.4s ease;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-frame:hover img {
    transform: scale(1.05);
}

.hero-tech-labels {
    position: absolute;
    background: var(--bg-secondary);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 8px;
}

.label-clouds {
    bottom: 20px;
    left: -20px;
}

.label-ai {
    top: 30px;
    right: -20px;
}

/* --- STATS SECTION --- */
.stats-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, transparent, var(--bg-secondary), transparent);
}

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

.stat-card {
    text-align: center;
    padding: 24px;
}

.stat-num {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--border-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

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

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.highlight-box {
    padding: 24px;
    border-radius: 16px;
    background: rgba(99, 102, 241, 0.04);
    border: 1px solid rgba(99, 102, 241, 0.15);
    margin-top: 32px;
}

.highlight-box p {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
}

.timeline {
    position: relative;
    padding-left: 24px;
    border-left: 2px solid var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -33px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: 4px solid var(--bg-primary);
    box-shadow: 0 0 10px var(--accent-glow);
}

.timeline-year {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--accent-color);
}

.timeline-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.timeline-desc {
    font-size: 0.95rem;
}

/* --- CORE EXPERTISE SECTION --- */
.expertise {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-glow), var(--bg-primary));
}

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

.expertise-card {
    padding: 40px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--accent-color);
    transition: all 0.3s;
}

.expertise-card:hover .expertise-icon {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 6px 20px var(--accent-glow);
}

.expertise-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.expertise-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.expertise-list {
    list-style: none;
    width: 100%;
}

.expertise-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 8px;
}

.expertise-list-item svg {
    width: 14px;
    height: 14px;
    color: var(--accent-secondary);
}

/* --- HEMIDI JSC & MISSION SECTION --- */
.hemidi {
    padding: 100px 0;
}

.hemidi-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.hemidi-brand-card {
    position: relative;
    padding: 48px;
    text-align: center;
    overflow: hidden;
}

.hemidi-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hemidi-logo-placeholder {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hemidi-logo-dot {
    color: var(--accent-secondary);
}

.hemidi-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-secondary);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hemidi-slogan-box {
    margin-top: 32px;
    padding: 20px;
    border: 1px dashed var(--border-hover);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.hemidi-slogan-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.hemidi-slogan {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hemidi-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.hemidi-info p {
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    gap: 12px;
}

.feature-item-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-secondary);
}

.feature-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.feature-item-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- CONTACT SECTION --- */
.contact {
    padding: 100px 0 140px;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

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

.contact-heading h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

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

.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--border-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.contact-detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    background: transparent;
    transition: all 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    color: #ffffff;
    background: var(--accent-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* Contact Form */
.contact-form-card {
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}

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

.form-submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
}

.form-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: none;
}

.form-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

/* --- FOOTER --- */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    background: var(--bg-primary);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

/* --- ANIMATION CLASS FOR SCROLL REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-wrapper,
    .about-content,
    .hemidi-wrapper,
    .contact-wrapper {
        gap: 40px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header .navbar {
        height: 60px;
    }
    
    .hamburger {
        display: flex;
        z-index: 101;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-primary);
        backdrop-filter: var(--glass-blur);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 40px;
        transition: right 0.4s ease;
        z-index: 100;
        box-shadow: var(--card-shadow);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-slogan-box {
        border-left: none;
        border-top: 3px solid var(--accent-color);
        border-radius: 0 0 12px 12px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-image-container {
        order: -1;
        margin-bottom: 24px;
    }
    
    .hero-image-frame {
        width: 260px;
        height: 260px;
    }
    
    .label-clouds, .label-ai {
        position: absolute;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-content,
    .hemidi-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        padding: 24px;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
}

/* --- ARSENAL FAN GOONER BANNER --- */
.arsenal-card {
    position: relative;
    padding: 32px;
    overflow: hidden;
    border-left: 4px solid #EF0107;
    background: linear-gradient(135deg, rgba(239, 1, 7, 0.04), rgba(197, 160, 89, 0.04));
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

:root[theme="dark"] .arsenal-card {
    box-shadow: 0 10px 30px rgba(239, 1, 7, 0.06);
}

.arsenal-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(239, 1, 7, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.arsenal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.arsenal-badge {
    padding: 6px 14px;
    background: rgba(239, 1, 7, 0.1);
    color: #EF0107;
    border: 1px solid rgba(239, 1, 7, 0.2);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.arsenal-badge-years {
    font-size: 0.85rem;
    font-weight: 700;
    color: #C5A059;
    background: rgba(197, 160, 89, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.arsenal-body {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.arsenal-icon-box {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(239, 1, 7, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EF0107;
    border: 1px solid rgba(239, 1, 7, 0.15);
}

.arsenal-text h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.arsenal-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.arsenal-motto {
    font-size: 0.9rem !important;
    font-weight: 700;
    font-style: italic;
    color: #C5A059 !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .arsenal-body {
        flex-direction: column;
        gap: 16px;
    }
    .arsenal-icon-box {
        width: 48px;
        height: 48px;
    }
}
