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

@font-face {
    font-family: 'GlitchGoblin';
    src: url('fonts/GlitchGoblin.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OldComputerSt';
    src: url('fonts/OldcomputerSt.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg: #000000;
    --text: #ffffff;
    --accent: #c6ff00;
    --accent-2: #8eff00;
    --muted: #111111;
    --text-muted: #888888;
    --border: rgba(198, 255, 0, 0.2);
    --gradient: linear-gradient(135deg, #c6ff00 0%, #8eff00 100%);
}

body {
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(198, 255, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

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

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(198, 255, 0, 0.3));
}

.logo-text {
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
    -webkit-text-stroke: 0.5px black;
    text-stroke: 0.5px black;
    text-shadow:
        0 0 5px var(--accent),
        0 0 10px var(--accent),
        0 0 15px var(--accent-2);
}

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

.nav-menu a {
    font-family: 'GlitchGoblin', sans-serif;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.98);
    list-style: none;
    padding: 1rem 0;
    min-width: 150px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 0.5rem;
    z-index: 1000;
    padding-top: 1rem;
    margin-top: -0.5rem;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu:hover {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: var(--muted);
    color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    position: relative;
    overflow: hidden;
    padding: 160px 20px 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/screen glitch.gif') center/cover;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.hero-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: url('lmxp-logo.png') center/contain no-repeat;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(198, 255, 0, 0.02), rgba(198, 255, 0, 0.02)),
        rgba(255, 255, 255, 0.05);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero h1 {
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--accent);
    -webkit-text-stroke: 0.5px black;
    text-stroke: 0.5px black;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.5),
        0 0 15px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2);
}

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

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
    background: rgba(0, 0, 0, 0.35);
}

.btn {
    font-family: 'GlitchGoblin', sans-serif;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--accent);
    color: #000;
}

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

.btn-secondary:hover {
    background: var(--accent-2);
    color: #000000;
    border-color: var(--accent-2);
    box-shadow: 0 0 20px rgba(198, 255, 0, 0.3);
}

/* About Section */
.about-section {
    padding: 120px 20px;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/screen glitch.gif') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(198, 255, 0, 0.02), rgba(198, 255, 0, 0.02)),
        rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-content p {
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.about-content h3 {
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 1.8rem;
    color: var(--accent);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    -webkit-text-stroke: 0.5px black;
    text-stroke: 0.5px black;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.4),
        0 0 15px rgba(255, 255, 255, 0.2);
}

.about-tagline {
    color: var(--accent) !important;
    font-size: 1.45rem !important;
    margin-top: 3rem !important;
    text-align: center;
}

.about-cta {
    text-align: center;
    margin-top: 3rem;
}

.about-cta .btn {
    background: rgba(0, 0, 0, 0.35);
}

/* Services Overview */
.services-intro {
    padding: 50px 20px;
    text-align: center;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.services-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/screen glitch.gif') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.services-intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(198, 255, 0, 0.02), rgba(198, 255, 0, 0.02)),
        rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.services-intro .container {
    position: relative;
    z-index: 1;
}

/* How It Works */
.how-it-works {
    padding: 80px 20px;
    background: var(--muted);
    position: relative;
    overflow: hidden;
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

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

.step-card {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(198, 255, 0, 0.2);
    border-color: var(--accent);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(198, 255, 0, 0.3);
}

.step-number {
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 2.2rem;
    color: var(--accent);
    display: block;
    margin-bottom: 0.75rem;
    -webkit-text-stroke: 0.5px black;
    text-stroke: 0.5px black;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.4),
        0 0 15px rgba(255, 255, 255, 0.2);
}

.step-card h4 {
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    -webkit-text-stroke: 0.5px black;
    text-stroke: 0.5px black;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.4),
        0 0 15px rgba(255, 255, 255, 0.2);
}

.step-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Software Services */
.software-services {
    padding: 80px 20px;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.software-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="70" height="70" xmlns="http://www.w3.org/2000/svg"><circle cx="15" cy="15" r="2" fill="%23c6ff00" opacity="0.1"/><circle cx="45" cy="30" r="2" fill="%23c6ff00" opacity="0.1"/><circle cx="55" cy="55" r="2" fill="%23c6ff00" opacity="0.1"/></svg>');
    animation: float 3s infinite linear;
    z-index: 0;
}

.software-services .container {
    position: relative;
    z-index: 1;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.divider-line {
    flex: 1;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.divider-text {
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 1.1rem;
    color: var(--accent);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.divider-intro {
    text-align: center;
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.about-btn {
    margin-top: 2rem;
}

.section-title {
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 2.7rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    -webkit-text-stroke: 0.5px black;
    text-stroke: 0.5px black;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.4),
        0 0 15px rgba(255, 255, 255, 0.2);
}

.section-subtitle {
    font-size: 1.35rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Branding Services */
.branding-services {
    padding: 80px 20px 60px;
    background: var(--muted);
    position: relative;
    overflow: hidden;
}

.branding-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="70" height="70" xmlns="http://www.w3.org/2000/svg"><circle cx="15" cy="15" r="2" fill="%23c6ff00" opacity="0.1"/><circle cx="45" cy="30" r="2" fill="%23c6ff00" opacity="0.1"/><circle cx="55" cy="55" r="2" fill="%23c6ff00" opacity="0.1"/></svg>');
    animation: float 3s infinite linear;
    z-index: 0;
}

.branding-services .container {
    position: relative;
    z-index: 1;
}

/* Digital Services */
.digital-services {
    padding: 60px 20px 80px;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.digital-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="70" height="70" xmlns="http://www.w3.org/2000/svg"><circle cx="15" cy="15" r="2" fill="%23c6ff00" opacity="0.1"/><circle cx="45" cy="30" r="2" fill="%23c6ff00" opacity="0.1"/><circle cx="55" cy="55" r="2" fill="%23c6ff00" opacity="0.1"/></svg>');
    animation: float 3s infinite linear;
    z-index: 0;
}

.digital-services .container {
    position: relative;
    z-index: 1;
}

.category-title {
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--accent);
    position: relative;
    padding-bottom: 1rem;
    -webkit-text-stroke: 0.5px black;
    text-stroke: 0.5px black;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.4),
        0 0 15px rgba(255, 255, 255, 0.2);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.services-grid .service-card-link {
    display: flex;
}

.services-grid-centered {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.services-grid-centered .service-card-link {
    flex: 0 1 280px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    height: 100%;
}

.service-card {
    background: var(--muted);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-align: center;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.service-card-link:hover .service-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(198, 255, 0, 0.2);
    border-color: var(--accent);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 300;
    text-shadow: 0 0 10px rgba(198, 255, 0, 0.3);
}

.service-card h3 {
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
    -webkit-text-stroke: 0.5px black;
    text-stroke: 0.5px black;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.4),
        0 0 15px rgba(255, 255, 255, 0.2);
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    color: #ffffff;
    font-size: 1.05rem;
    flex-grow: 1;
}

/* Print Services */
.print-services {
    padding: 80px 20px;
    background: var(--muted);
    position: relative;
    overflow: hidden;
}

.print-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="70" height="70" xmlns="http://www.w3.org/2000/svg"><circle cx="15" cy="15" r="2" fill="%23c6ff00" opacity="0.1"/><circle cx="45" cy="30" r="2" fill="%23c6ff00" opacity="0.1"/><circle cx="55" cy="55" r="2" fill="%23c6ff00" opacity="0.1"/></svg>');
    animation: float 3s infinite linear;
    z-index: 0;
}

.print-services .container {
    position: relative;
    z-index: 1;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

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

.pricing-card {
    background: #0a0a0a;
    border: 1px solid #222;
    border-top: 3px solid var(--accent);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(198, 255, 0, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    border-top: 3px solid var(--accent);
    box-shadow: 0 0 25px rgba(198, 255, 0, 0.15), 0 0 50px rgba(198, 255, 0, 0.05);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 0 35px rgba(198, 255, 0, 0.25), 0 10px 30px rgba(198, 255, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #000;
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 0.75rem;
    padding: 5px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-tier {
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    -webkit-text-stroke: 0.5px black;
    text-stroke: 0.5px black;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.4),
        0 0 15px rgba(255, 255, 255, 0.2);
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    font-family: 'Courier New', Courier, monospace;
}

.pricing-tagline {
    font-style: italic;
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.pricing-includes {
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #222;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: #ddd;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '▸';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 2.5rem;
}

.pricing-note a {
    color: var(--accent);
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* Why Choose Us */
.why-us {
    padding: 80px 20px;
    background: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 300;
    text-shadow: 0 0 10px rgba(198, 255, 0, 0.3);
}

.feature h4 {
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
    -webkit-text-stroke: 0.5px black;
    text-stroke: 0.5px black;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.4),
        0 0 15px rgba(255, 255, 255, 0.2);
}

.feature p {
    color: #ffffff;
    font-size: 1.05rem;
}

/* Stats Section */
.stats-section {
    padding: 60px 20px;
    background: var(--muted);
    color: var(--text);
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat h3 {
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--accent);
    -webkit-text-stroke: 0.5px black;
    text-stroke: 0.5px black;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.4),
        0 0 15px rgba(255, 255, 255, 0.2);
}

.stat p {
    font-size: 1.2rem;
    color: #ffffff;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: var(--bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--muted);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border);
    height: fit-content;
}

.contact-info h3 {
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 1.7rem;
    margin-bottom: 2rem;
    color: var(--accent);
    -webkit-text-stroke: 0.5px black;
    text-stroke: 0.5px black;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.4),
        0 0 15px rgba(255, 255, 255, 0.2);
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    color: #ffffff;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-icon {
    color: var(--accent);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.info-item p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.contact-form {
    background: var(--muted);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(198, 255, 0, 0.1);
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 1rem;
}

.contact-form button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(198, 255, 0, 0.4);
    background: var(--accent-2);
}

/* Footer */
.footer {
    background: var(--muted);
    color: var(--text);
    padding: 60px 20px 20px;
    border-top: 2px solid var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent);
    -webkit-text-stroke: 0.5px black;
    text-stroke: 0.5px black;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.4),
        0 0 15px rgba(255, 255, 255, 0.2);
}

.footer-col p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: #ffffff;
    font-size: 1.05rem;
}

/* Accessibility Menu */
.accessibility-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
}

.accessibility-toggle {
    background: var(--accent);
    color: #000;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(198, 255, 0, 0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessibility-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(198, 255, 0, 0.7);
}

.accessibility-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.accessibility-options h4 {
    font-family: 'GlitchGoblin', sans-serif;
    color: var(--accent);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

.access-btn {
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.75rem 1rem;
    background: var(--muted);
    color: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.access-btn:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.access-btn.active {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.access-icon {
    color: var(--accent);
    font-size: 1.1rem;
}

.access-btn:hover .access-icon,
.access-btn.active .access-icon {
    color: #000;
}

/* Accessibility Modes */
body.high-contrast {
    --accent: #00ff00;
    --text: #ffffff;
    --bg: #000000;
}

body.high-contrast .service-card,
body.high-contrast .contact-form,
body.high-contrast .feature {
    border: 2px solid #00ff00;
}

body.high-contrast .hero h1,
body.high-contrast .section-title,
body.high-contrast .category-title {
    text-shadow:
        0 0 15px rgba(0, 255, 0, 0.8),
        0 0 25px rgba(0, 255, 0, 0.5);
}

body.reduce-motion *,
body.reduce-motion *::before,
body.reduce-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

body.reduce-motion .hero::before,
body.reduce-motion .services-intro::before,
body.reduce-motion .branding-services::before,
body.reduce-motion .digital-services::before,
body.reduce-motion .print-services::before,
body.reduce-motion .software-services::before {
    animation: none !important;
}

body.larger-text {
    font-size: 120%;
}

body.larger-text .hero h1 {
    font-size: 4rem;
}

body.larger-text .section-title {
    font-size: 3rem;
}

body.grayscale-mode .main-content {
    filter: grayscale(100%);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.digital-services .service-card,
.software-services .service-card {
    background: var(--muted);
}

/* Sample Badge */
.sample-badge {
    display: inline-block;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.65rem;
    color: #000;
    background: var(--accent);
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    margin-left: 8px;
    font-weight: 700;
}

/* Mobile Menu Active State */
@media (max-width: 768px) {
    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        padding: 2rem;
        border-bottom: 2px solid var(--accent);
        gap: 1rem;
    }

    .nav-menu.active .dropdown-menu {
        position: relative;
        margin-top: 0.5rem;
        display: none;
    }

    .nav-menu.active .dropdown.open .dropdown-menu {
        display: block;
    }

    /* Hamburger to X animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Web Design Portfolio Section */
.portfolio-section {
    padding: 80px 20px;
    background: var(--muted);
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="70" height="70" xmlns="http://www.w3.org/2000/svg"><circle cx="15" cy="15" r="2" fill="%23c6ff00" opacity="0.1"/><circle cx="45" cy="30" r="2" fill="%23c6ff00" opacity="0.1"/><circle cx="55" cy="55" r="2" fill="%23c6ff00" opacity="0.1"/></svg>');
    animation: float 3s infinite linear;
    z-index: 0;
}

.portfolio-section .container {
    position: relative;
    z-index: 1;
}

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 3rem;
}

.portfolio-filter-btn {
    padding: 8px 20px;
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 0.8rem;
    color: var(--accent);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.portfolio-filter-btn:hover {
    border-color: var(--accent);
}

.portfolio-filter-btn.active {
    background: var(--gradient);
    color: #000;
    border-color: var(--accent);
}

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

.portfolio-card {
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(198, 255, 0, 0.2);
    border-color: var(--accent);
}

.portfolio-card.hidden {
    display: none;
}

.portfolio-card .card-tag {
    display: inline-block;
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 0.7rem;
    color: var(--accent);
    border: 1px solid var(--border);
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.portfolio-card h3 {
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
    -webkit-text-stroke: 0.5px black;
    text-stroke: 0.5px black;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.2);
}

.portfolio-card p {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.portfolio-card .btn-sm {
    align-self: flex-start;
    padding: 8px 20px;
    font-family: 'GlitchGoblin', sans-serif;
    font-size: 0.8rem;
    color: var(--accent);
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-card .btn-sm:hover {
    background: var(--accent);
    color: #000;
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

.portfolio-cta .btn {
    background: rgba(0, 0, 0, 0.35);
}

@media (max-width: 1023px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-filter {
        gap: 8px;
    }

    .portfolio-filter-btn {
        padding: 6px 14px;
        font-size: 0.7rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card:last-child {
        max-width: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .sample-badge {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
        align-self: flex-start;
        width: fit-content;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

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

    .section-title, .category-title, .hero h1, .stat h3,
    .contact-info h3, .footer-col h4, .about-content h3,
    .feature h4, .service-card h3, .pricing-tier, .step-card h4 {
        text-shadow: 0 0 6px rgba(255, 255, 255, 0.35), 0 0 12px rgba(255, 255, 255, 0.18);
        -webkit-text-stroke: 0.3px black;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section-title, .category-title, .hero h1, .stat h3,
    .contact-info h3, .footer-col h4, .about-content h3,
    .feature h4, .service-card h3, .pricing-tier, .step-card h4 {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3), 0 0 10px rgba(255, 255, 255, 0.15);
    }

    .logo-text {
        text-shadow: 0 0 4px var(--accent), 0 0 8px var(--accent);
    }

    .section-divider {
        gap: 0.75rem;
    }

    .divider-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}