:root {
    --primary-color: #22c55e;
    --secondary-color: #4ade80;
    --text-color: #e5e7eb;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: #1e293b;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
    padding-top: 150px; /* Account for fixed header with ASCII logo */
}

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

header {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.3rem 0;
}

.logo {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--primary-color);
    white-space: pre;
    line-height: 1.2;
    text-align: center;
}

/* Pro Banner Styles */
.pro-banner {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.pro-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.banner-text h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.banner-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.banner-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Nokia Equipment Section Styles */
.nokia-equipment {
    padding: 3rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-top: 1px solid rgba(34, 197, 94, 0.3);
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
    position: relative;
}

.nokia-equipment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.equipment-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.equipment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2.5rem;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.equipment-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.equipment-title i {
    color: var(--primary-color);
    font-size: 2rem;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.75rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.equipment-title h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.125rem 0;
    line-height: 1.1;
}

.equipment-title p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.equipment-price {
    text-align: right;
}

.equipment-price .price {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.equipment-price .label {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.7;
}

.equipment-body {
    padding: 1.25rem 2.5rem;
}

.equipment-description p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 1.25rem 0;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.25rem;
}

.equipment-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.equipment-hardware,
.equipment-services {
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.equipment-hardware h4,
.equipment-services h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
}

.equipment-hardware h4 i,
.equipment-services h4 i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 1.25rem;
    text-align: center;
}

.equipment-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
    padding: 0.125rem 0;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 1.25rem;
    flex-shrink: 0;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.25rem;
    text-align: center;
}

.equipment-action {
    padding: 1.25rem 2.5rem;
    border-top: 1px solid rgba(34, 197, 94, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-badge {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 0.625rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0 auto;
}

.value-badge i {
    color: #fbbf24;
    font-size: 0.8rem;
}

.equipment-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design for Banner and Equipment */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .banner-text h3 {
        font-size: 1.1rem;
    }
    
    .banner-text p {
        font-size: 0.9rem;
    }
    
    .nokia-equipment {
        padding: 2rem 0;
    }
    
    .equipment-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
    }
    
    .equipment-title {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .equipment-title i {
        font-size: 1.75rem;
        padding: 0.625rem;
    }
    
    .equipment-title h2 {
        font-size: 1.25rem;
    }
    
    .equipment-price {
        text-align: center;
    }
    
    .equipment-price .price {
        font-size: 1.5rem;
    }
    
    .equipment-body {
        padding: 1rem 2rem;
    }
    
    .equipment-description p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .equipment-sections {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .equipment-hardware,
    .equipment-services {
        padding: 0.875rem;
    }
    
    .equipment-hardware h4,
    .equipment-services h4 {
        font-size: 0.9rem;
        margin-bottom: 0.625rem;
    }
    
    .equipment-action {
        padding: 1rem 2rem;
        gap: 0.875rem;
    }
    
    .value-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .equipment-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
}

.hero {
    padding: 4rem 0 4rem;
    text-align: center;
    background: radial-gradient(circle at top left,transparent 9%, #141414 10% ,#141414 15% , transparent 16%) , radial-gradient(circle at bottom left,transparent 9%, #141414 10% ,#141414 15% , transparent 16%), radial-gradient(circle at top right ,transparent 9%, #141414 10% ,#141414 15% , transparent 16%) , radial-gradient(circle at bottom right,transparent 9%, #141414 10% ,#141414 15% , transparent 16%),radial-gradient(circle, transparent 25%, #020617  26%),linear-gradient(45deg, transparent 46%, #141414 47%, #141414 52%, transparent 53%), linear-gradient(135deg, transparent 46%, #141414 47%, #141414 52%, transparent 53%);
    background-size: 2em 2em;
    background-color: #020617;
    opacity: 1
}

.features {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.requirements {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.supported-hardware {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.acknowledgments {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.hire {
    padding: 6rem 0;
    background: var(--darker-bg);
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero h1::before {
    content: "🚀 ";
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.install-box {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-color);
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.install-box:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.install-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-align: center;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.install-box p {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-align: center;
}

.install-command {
    background: rgba(2, 6, 23, 0.95);
    padding: 1.25rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0 0 1.5rem;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.command-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.command-prompt {
    color: var(--text-color);
    opacity: 0.5;
    user-select: none;
}

.command-text {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.command-part {
    color: var(--text-color);
}

.command-url {
    color: var(--primary-color);
}

.copy-button {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.copy-button:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.copy-button.copied {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.3);
}

.copy-icon {
    font-size: 1rem;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1a9e4a, #3db864);
    color: var(--white);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.cta-button i {
    font-size: 1.25rem;
}

.features h2,
.requirements h2,
.supported-hardware h2,
.acknowledgments h2,
.hire h2,
.tools h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-align: left;
}

.features h2::before {
    content: "✨";
}

.requirements h2::before {
    content: "💻";
}

.supported-hardware h2::before {
    content: "📡";
}

.tools h2::before {
    content: "🛠️";
}

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

.tools {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.tool-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--card-bg);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tool-row:hover {
    transform: none;
}

.tool-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    padding: 0;
}

.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tool-row:hover .tool-image img {
    transform: none;
}

.tool-content {
    padding: 2rem;
}

.tool-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tool-content p {
    margin-bottom: 1rem;
    color: var(--text-color);
    opacity: 0.9;
}

.tool-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.tool-content li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tool-content li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.tool-content li strong {
    color: var(--white);
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.feature-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.requirements-list {
    list-style: none;
    margin-top: 2.5rem;
}

.requirements-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.requirements-list li:hover {
    transform: none;
}

.requirements-list li:before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 0;
}

.hardware-column {
    background: var(--card-bg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hardware-column:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hardware-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hardware-column h3::before {
    content: "📡";
    font-size: 1.25rem;
}

.hardware-column ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.hardware-column li {
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    position: relative;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
    color: var(--text-color);
}

.hardware-column li:last-child {
    margin-bottom: 0;
}

.hardware-column li:hover {
    transform: none;
    color: var(--text-color);
}

.hardware-column li:before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.hardware-column .note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.5;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.acknowledgments h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

.acknowledgments h2 i {
    color: var(--primary-color);
}

.acknowledgments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.acknowledgment-card {
    background: var(--card-bg);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.acknowledgment-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.acknowledgment-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.acknowledgment-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.acknowledgment-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.acknowledgment-card a:hover {
    color: var(--secondary-color);
}

.hire h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--white);
}

.hire h2 i {
    color: var(--primary-color);
}

.hire-intro {
    text-align: left;
    margin-bottom: 3rem;
    padding: 0;
}

.hire-intro h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hire-intro p {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-align: left;
}

.hire-intro a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hire-intro a:hover {
    color: var(--secondary-color);
}

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

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
}

.service-card p {
    color: var(--text-color);
    opacity: 0.9;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

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

.contact-cta p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    background: radial-gradient(circle at top left,transparent 9%, #141414 10% ,#141414 15% , transparent 16%) , radial-gradient(circle at bottom left,transparent 9%, #141414 10% ,#141414 15% , transparent 16%), radial-gradient(circle at top right ,transparent 9%, #141414 10% ,#141414 15% , transparent 16%) , radial-gradient(circle at bottom right,transparent 9%, #141414 10% ,#141414 15% , transparent 16%),radial-gradient(circle, transparent 25%, #020617  26%),linear-gradient(45deg, transparent 46%, #141414 47%, #141414 52%, transparent 53%), linear-gradient(135deg, transparent 46%, #141414 47%, #141414 52%, transparent 53%);
    background-size: 2em 2em;
    background-color: #020617;
    opacity: 1
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    text-align: center;
}

footer p {
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.8;
    margin: 0;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

footer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-links {
    margin-top: 0.5rem;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links i {
    font-size: 1.1rem;
}

@media (max-width: 1100px) {

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

@media (max-width: 768px) {
    header {
        padding: 0.5rem 0;
    }

    nav {
        padding: 0.2rem 0;
    }

    .hero {
        padding: 9rem 0 4rem;
    }

    .features, .requirements, .supported-hardware, .acknowledgments, .hire {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
        white-space: normal;
    }
    
    .hero p {
        font-size: 1rem;
    }

    .install-box {
        padding: 1.5rem;
    }
    
    .logo {
        font-size: 0.6rem;
    }

    .install-box h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .install-box p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .install-command {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0.75rem;
    }

    .command-content {
        margin-bottom: 0;
        padding-right: 0.5rem;
    }

    .command-text {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .copy-button {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        margin-top: 0.5rem;
    }

    .copy-button .copy-icon {
        font-size: 1.125rem;
    }

    .copy-button .copy-text {
        font-size: 0.9375rem;
    }

    .button-container {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

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

    .acknowledgment-card,
    .service-card {
        padding: 1.5rem;
    }

    .hire-intro {
        padding: 0 1rem;
    }

    .hire-intro h3 {
        font-size: 1.5rem;
    }

    .hire-intro p {
        font-size: 1.1rem;
    }

    .features h2,
    .requirements h2,
    .supported-hardware h2,
    .acknowledgments h2,
    .hire h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .feature-card h3,
    .hardware-column h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-links span {
        display: none;
    }

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

    .tool-image {
        min-height: 200px;
    }

    .tool-content {
        padding: 1.5rem;
    }

    .tool-content h3 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .service-card {
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .install-command {
        padding: 0.875rem;
    }

    .command-text {
        font-size: 0.75rem;
    }

    .command-prompt {
        font-size: 0.75rem;
    }

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