/* LogicIntegrada Refined Styles - Modern & Futuristic with Guatemalan Touches */

/* --- Variables & Base --- */
:root {
    --gold-orange: #ffae42; /* Primary accent - Bright & Energetic */
    --turquoise: #40e0d0;   /* Secondary accent - Techy & Cool */
    --light-gray: #d1d1d1; /* Lighter gray for better contrast */
    --dark-background: #0f0f1a; /* Deeper, slightly purplish dark background */
    --card-background: rgba(26, 26, 46, 0.7); /* Semi-transparent dark blue for cards */
    --glass-effect: rgba(255, 255, 255, 0.05); /* Subtle glass effect overlay */
    --border-color: rgba(64, 224, 208, 0.3); /* Subtle turquoise border */
    --glow-color: rgba(255, 174, 66, 0.5); /* Gold-orange glow */

    --text-color: #f5f5f5; /* Slightly brighter base text */
    --font-primary: 'Montserrat', sans-serif;

    --section-padding: 5rem 2rem; /* Increased padding */
    --container-width: 1140px; /* Slightly wider container */
    --border-radius: 10px; /* Consistent border radius */
}

body {
    margin: 0;
    font-family: var(--font-primary);
    background-color: var(--dark-background);
    background-image: linear-gradient(180deg, var(--dark-background) 0%, #1a1a2e 100%);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--turquoise);
    text-shadow: 0 0 5px rgba(64, 224, 208, 0.2);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.6rem;
    color: var(--gold-orange);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--light-gray);
}

a {
    color: var(--turquoise);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--gold-orange);
    text-shadow: 0 0 8px var(--glow-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: var(--light-gray);
    opacity: 0.9;
}

/* --- Layout & Sections --- */
.content-section {
    padding: var(--section-padding);
    max-width: var(--container-width);
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s ease-out forwards;
}

section:nth-of-type(odd) {
    animation-delay: 0.25s;
}
section:nth-of-type(even) {
    animation-delay: 0.5s;
}

.dark-section {
    background-color: rgba(17, 17, 26, 0.5);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.dark-section > * {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

.dark-section > h2,
.dark-section > p.section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--section-padding);
    background: linear-gradient(rgba(15, 15, 26, 0.85), rgba(15, 15, 26, 0.98)), url('images/hero-background-placeholder.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-section nav {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: calc(var(--container-width) + 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 50px;
    width: auto;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--light-gray);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--turquoise);
    text-shadow: 0 0 8px rgba(64, 224, 208, 0.3);
}

.nav-cta {
    background: var(--gold-orange) !important;
    color: var(--dark-background) !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--turquoise) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 224, 208, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--border-color);
    color: var(--turquoise);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--card-background);
}

/* Hero Tagline */
.hero-tagline {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-orange);
    margin-bottom: 1rem;
    font-weight: 300;
    animation: fadeIn 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-content h1 {
    color: var(--text-color);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    animation: slideInDown 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 0 18px rgba(64, 224, 208, 0.6), 0 0 35px rgba(255, 174, 66, 0.25);
    max-width: 800px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--light-gray);
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    animation: slideInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
}

.cta-button {
    display: inline-block;
    background-color: var(--gold-orange);
    color: var(--dark-background);
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    box-shadow: 0 5px 15px rgba(255, 174, 66, 0.3);
    animation: pulse 2.5s infinite ease-in-out 1.5s;
}

.cta-button:hover {
    background-color: var(--turquoise);
    color: var(--dark-background);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(64, 224, 208, 0.4);
    animation-play-state: paused;
}

.cta-button-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--turquoise);
    color: var(--turquoise);
    font-size: 1.05rem;
    background: transparent;
}

.cta-button-secondary:hover {
    background: var(--turquoise);
    color: var(--dark-background);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(64, 224, 208, 0.3);
    text-shadow: none;
}

/* --- Stats Bar --- */
.stats-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 15, 26, 0.95));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    max-width: 100%;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-orange);
    text-shadow: 0 0 15px var(--glow-color);
    display: inline;
}

.stat-symbol {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-orange);
    text-shadow: 0 0 15px var(--glow-color);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

/* --- Quienes Somos Section --- */
#quienes-somos p {
    max-width: 750px;
    margin: 0 auto 2rem auto;
    text-align: center;
    font-size: 1.1rem;
}

.cultural-divider {
    border: 0;
    height: 4px;
    width: 120px;
    margin: 3rem auto;
    background: linear-gradient(
        90deg,
        var(--gold-orange) 0%,
        var(--turquoise) 50%,
        var(--gold-orange) 100%
    );
     background-image:
        repeating-linear-gradient(45deg, transparent, transparent 5px, var(--border-color) 5px, var(--border-color) 10px),
        repeating-linear-gradient(-45deg, transparent, transparent 5px, var(--border-color) 5px, var(--border-color) 10px),
        linear-gradient(90deg, var(--gold-orange), var(--turquoise));
     background-size: 15px 15px, 15px 15px, 100% 100%;
     background-position: 0 0, 0 0, 0 0;
     background-repeat: repeat, repeat, no-repeat;
     border-radius: 2px;
}


/* --- Servicios Section --- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-item {
    background-color: var(--card-background);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--turquoise), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px var(--glow-color);
    border-color: var(--gold-orange);
}

.service-item:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    color: var(--gold-orange);
    text-shadow: 0 0 10px var(--glow-color);
    transition: transform 0.4s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    text-align: left;
}

.service-features li {
    color: var(--light-gray);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: 700;
}

/* --- Proyectos Section --- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.project-item {
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    border: 1px solid transparent;
    -webkit-backdrop-filter: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-item:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(64, 224, 208, 0.3);
    border-color: var(--border-color);
}

.project-image-wrapper {
    position: relative;
    padding-bottom: 60%;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.4s ease;
    border-radius: 0;
}

.project-item:hover .project-image {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Project Badge */
.project-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 174, 66, 0.9);
    color: var(--dark-background);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.project-item h3, .project-item p {
    padding: 1rem 1.5rem 0 1.5rem;
}

.project-item h3 {
    margin-top: 1rem;
    color: var(--turquoise);
}

.project-item p {
    font-size: 0.95rem;
    color: var(--light-gray);
    flex-grow: 1;
}

/* Project Result */
.project-result {
    padding: 0.8rem 1.5rem;
    margin: 0 1.5rem;
    background: rgba(64, 224, 208, 0.08);
    border-left: 3px solid var(--turquoise);
    border-radius: 0 5px 5px 0;
    font-size: 0.85rem;
    color: var(--turquoise);
    font-weight: 600;
}

.project-result span {
    margin-right: 0.5rem;
}

.project-button {
    display: inline-block;
    margin: 1.5rem 1.5rem 1.5rem 1.5rem;
    padding: 8px 20px;
    background-color: transparent;
    color: var(--turquoise);
    border: 1px solid var(--turquoise);
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.project-button:hover {
    background-color: var(--turquoise);
    color: var(--dark-background);
    border-color: var(--turquoise);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(64, 224, 208, 0.3);
    text-shadow: none;
}

/* --- Tecnologías Section --- */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tech-item {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-orange);
    box-shadow: 0 8px 20px rgba(255, 174, 66, 0.15);
}

.tech-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.8rem;
}

.tech-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light-gray);
    display: block;
}

/* --- Process Section --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    background: var(--card-background);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--turquoise);
    box-shadow: 0 10px 25px rgba(64, 224, 208, 0.15);
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-orange);
    opacity: 0.3;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Contacto Section --- */
#contacto > h2 {
    margin-bottom: 1rem;
}

#contacto > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.contact-form {
    max-width: 650px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 14px 18px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2340e0d0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
    cursor: pointer;
}

.contact-form select option {
    background-color: var(--dark-background);
    color: var(--text-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--light-gray);
    opacity: 0.6;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--gold-orange);
    box-shadow: 0 0 10px var(--glow-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    align-self: center;
    margin-top: 1rem;
}

/* Form Status Message Styling */
.form-status {
    margin: 1rem 0 0 0;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 0.95rem;
    min-height: 20px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease, margin 0.4s ease, padding 0.4s ease;
}

.form-status.sending,
.form-status.success,
.form-status.error {
    opacity: 1;
    max-height: 100px;
    margin-top: 0;
    margin-bottom: 1rem;
}

.form-status.sending {
    background-color: rgba(204, 204, 204, 0.2);
    color: var(--light-gray);
}

.form-status.success {
    background-color: rgba(64, 224, 208, 0.2);
    color: var(--turquoise);
    border: 1px solid var(--turquoise);
}

.form-status.error {
    background-color: rgba(255, 100, 100, 0.2);
    color: #ff8080;
    border: 1px solid #ff8080;
}

.form-status.animate-success {
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.social-links {
    text-align: center;
    margin-top: 4rem;
}

.social-links p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.social-links a {
    margin: 0 1rem;
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
    color: var(--gold-orange);
    text-shadow: 0 0 8px var(--glow-color);
}


/* --- Footer --- */
.site-footer {
    background-color: #0a0a12;
    padding: 3rem 2rem;
    margin-top: 0;
    border-top: 1px solid rgba(64, 224, 208, 0.2);
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.logo-image-small {
    height: 40px;
    width: auto;
}

.footer-info p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--light-gray);
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--light-gray);
    font-size: 0.85rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--turquoise);
}

.site-footer p {
    margin: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--light-gray);
    opacity: 0.8;
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInDown {
    from { transform: translateY(-60px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(60px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 5px 15px rgba(255, 174, 66, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(255, 174, 66, 0.5); }
    100% { transform: scale(1); box-shadow: 0 5px 15px rgba(255, 174, 66, 0.3); }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Design --- */
@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }
    h2 {
        font-size: 3rem;
    }
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .footer-logo {
        margin-bottom: 0;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 2rem;
        background: rgba(15, 15, 26, 0.95);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: var(--border-radius);
        border: 1px solid var(--border-color);
        gap: 1rem;
        z-index: 100;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 3.5rem 1rem;
    }
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero-section {
        min-height: 80vh;
    }
    .hero-section nav {
        top: 15px;
        padding: 0 1rem;
        width: 100%;
    }
    .logo-image {
        height: 40px;
    }
    .logo-image-small {
        height: 35px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    .service-grid,
    .project-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .cta-button,
    .cta-button-secondary {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    .stats-bar {
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    .stat-number, .stat-symbol {
        font-size: 2rem;
    }
    .contact-form {
        max-width: 90%;
    }
    .footer-content {
        padding: 0 1rem;
    }
}