/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Robinhood-inspired color palette */
    --primary-green: #00C805;
    --primary-green-dark: #00A805;
    --primary-green-light: #00E805;
    --background: #0A0E27;
    --background-light: #141B2D;
    --surface: #1A2332;
    --surface-hover: #243447;
    --text-primary: #FFFFFF;
    --text-secondary: #B8BCC8;
    --text-muted: #6B7280;
    --border-color: #2D3748;
    --card-shadow: 0 4px 20px rgba(0, 200, 5, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-color-r: 0;
    --shadow-color-g: 200;
    --shadow-color-b: 5;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background 0.5s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary-green);
    color: var(--background);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-image-wrapper {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(var(--shadow-color-r), var(--shadow-color-g), var(--shadow-color-b), 0.2);
    animation: fadeInUp 0.8s ease-out 0.1s both;
    background: linear-gradient(135deg, rgba(0, 200, 5, 0.15), rgba(0, 232, 5, 0.08), rgba(10, 14, 39, 0.9));
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    min-height: 300px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.image-placeholder {
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 200, 5, 0.15), rgba(0, 232, 5, 0.08), rgba(10, 14, 39, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-weight: 600;
    position: relative;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--background);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--shadow-color-r), var(--shadow-color-g), var(--shadow-color-b), 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-card {
    background: var(--surface);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-green);
    box-shadow: var(--card-shadow);
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-green);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-green-light);
    bottom: -150px;
    left: -150px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--surface);
    padding: 0;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, rgba(0, 200, 5, 0.15), rgba(0, 232, 5, 0.08));
}

.service-card {
    position: relative;
}

.service-card .image-placeholder {
    height: 200px;
    border-bottom: 1px solid var(--border-color);
    font-size: 48px;
}

.service-card .service-icon {
    margin: 24px 32px 20px;
}

.service-card h3,
.service-card p,
.service-card a {
    padding: 0 32px;
}

.service-card .service-link {
    margin: 0 32px 32px;
    display: inline-block;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: var(--card-shadow);
    background: var(--surface-hover);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.service-link:hover {
    transform: translateX(4px);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--background);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-green);
    color: var(--background);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.locations-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.locations-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.location-badge {
    background: var(--surface);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.location-badge:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--shadow-color-r), var(--shadow-color-g), var(--shadow-color-b), 0.2);
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.about-image {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 300px;
    min-height: 300px;
    box-shadow: var(--card-shadow);
}

.about-visual .image-placeholder {
    height: 300px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    font-size: 20px;
}

.visual-card {
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 24px;
    width: 100%;
    max-width: 400px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.card-dots span:nth-child(1) {
    background: #FF5F57;
}

.card-dots span:nth-child(2) {
    background: #FFBD2E;
}

.card-dots span:nth-child(3) {
    background: #28CA42;
}

.code-line {
    height: 12px;
    background: var(--border-color);
    border-radius: 4px;
    margin-bottom: 12px;
    animation: pulse 2s infinite;
}

.code-line.short {
    width: 60%;
}

.code-line:nth-child(2) {
    animation-delay: 0.2s;
}

.code-line:nth-child(3) {
    animation-delay: 0.4s;
}

.code-line:nth-child(4) {
    animation-delay: 0.6s;
}

.code-line:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--background-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--surface);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-green);
    box-shadow: var(--card-shadow);
}

.info-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.info-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-card p {
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(var(--shadow-color-r), var(--shadow-color-g), var(--shadow-color-b), 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Pain Points & Solutions Section */
.pain-points {
    padding: 120px 0;
    background: var(--background-light);
}

.pain-point-category {
    margin-bottom: 80px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.category-icon {
    font-size: 48px;
}

.category-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.pain-point-card {
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.pain-point-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: var(--card-shadow);
}

.pain-point-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 200, 5, 0.15), rgba(0, 232, 5, 0.08), rgba(10, 14, 39, 0.9));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.pain-point-image::after {
    content: '📦';
    position: absolute;
    font-size: 48px;
    z-index: 1;
    color: var(--text-secondary);
    opacity: 0.4;
    pointer-events: none;
}

.pain-point-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    display: block;
}

.pain-point-image img[src=""],
.pain-point-image img:not([src]) {
    display: none;
}

.pain-point-image:not(:has(img[src]))::after,
.pain-point-image:has(img[src=""])::after {
    opacity: 0.6;
}

.pain-point-image .image-placeholder {
    height: 200px;
    font-size: 36px;
    position: relative;
    z-index: 3;
    width: 100%;
}

.pain-point-content {
    padding: 32px;
}

.pain-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.2);
    color: #FCA5A5;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.pain-point-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pain-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 15px;
}

.solution-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.solution-badge {
    display: inline-block;
    background: rgba(0, 200, 5, 0.2);
    color: var(--primary-green);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.solution-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.solution-description strong {
    color: var(--primary-green);
    font-weight: 600;
}

.pain-points-cta {
    margin-top: 80px;
    background: var(--surface);
    border-radius: 20px;
    padding: 64px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Projects Completed Section */
.projects-completed {
    padding: 120px 0;
    background: var(--background);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.project-card {
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: var(--card-shadow);
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 200, 5, 0.15), rgba(0, 232, 5, 0.08));
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-image .image-placeholder {
    height: 250px;
    font-size: 48px;
}

.project-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-category {
    display: inline-block;
    background: rgba(0, 200, 5, 0.2);
    color: var(--primary-green);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    width: fit-content;
    transition: background 0.3s ease, color 0.3s ease;
}

.project-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    flex: 1;
    font-size: 15px;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(0, 200, 5, 0.05);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.project-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: rgba(0, 200, 5, 0.15);
    color: var(--primary-green);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(0, 200, 5, 0.3);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.projects-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.summary-card {
    background: var(--surface);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.summary-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-green);
    box-shadow: var(--card-shadow);
}

.summary-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.summary-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.summary-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* AI Focus Section */
.ai-focus {
    padding: 120px 0;
    background: var(--background-light);
}

.ai-focus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ai-focus-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.focus-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px;
}

.ai-focus-image .image-placeholder {
    height: 400px;
    border-radius: 20px;
    font-size: 24px;
}

.ai-focus-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-focus-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.ai-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.ai-features li {
    padding: 16px;
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.ai-features li:hover {
    border-color: var(--primary-green);
    transform: translateX(8px);
    background: var(--surface-hover);
}

.ai-focus-cta {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.8;
    padding: 24px;
    background: var(--surface);
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

/* Footer */
.footer {
    background: var(--background);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    transition: background 0.5s ease;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .ai-focus-content {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pain-points-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-stats {
        grid-template-columns: 1fr;
    }

    .projects-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-title {
        font-size: 28px;
    }

    .pain-points-cta {
        padding: 40px 24px;
    }

    .cta-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }

    .container {
        padding: 0 16px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-green);
    color: var(--background);
}
