/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #a78bfa;
    --primary-dark: #a78bfa;
    --primary-light: #c4b5fd;
    --secondary-color: #be185d;
    --accent-color: #f59e0b;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --bg-primary: #0a0a0a;
    --bg-secondary: #18181b;
    --bg-dark: #000000;
    --border-color: #27272a;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

/* ==========================
   MOBILE-FIRST BASE STYLES
   ========================== */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background: #0a0a0a;
    font-size: 18px; /* Base font size for mobile */
}

/* Prevent scroll when mobile menu is open */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* Reduced padding for mobile */
}

/* ==========================
   NAVIGATION - MOBILE FIRST
   ========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: visible;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: relative;
    overflow: visible;
}

.nav-brand h1 {
    font-size: 1.25rem; /* Smaller on mobile */
    font-weight: 700;
    background: linear-gradient(135deg, #a78bfa, #be185d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hamburger Menu Styles - Mobile */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation Menu */
.nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(24, 24, 27, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5rem 2rem 2rem;
    list-style: none;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav-menu.nav-menu-active {
    right: 0;
}

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.125rem;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #a78bfa;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a78bfa, #be185d);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ==========================
   HERO SECTION - MOBILE FIRST
   ========================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px; /* Reduced for mobile */
    padding-bottom: 2rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(109, 40, 217, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(219, 39, 119, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(109, 40, 217, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(219, 39, 119, 0.1) 0%, transparent 50%);
    animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05); /* Reduced scale for mobile performance */
        opacity: 0.8;
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem; /* Reduced padding for mobile */
}

.hero-title {
    font-size: 2rem; /* Mobile base size */
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1rem; /* Mobile base size */
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 100%;
}

.hero-subtitle strong {
    background: linear-gradient(135deg, #a78bfa, #be185d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    flex-direction: column; /* Stack buttons on mobile */
    gap: 1rem;
    align-items: stretch;
}

/* ==========================
   BUTTONS - MOBILE OPTIMIZED
   ========================== */

.btn {
    display: inline-block;
    padding: 0.875rem 1.5rem; /* Larger touch target for mobile */
    min-height: 48px; /* Minimum touch target height */
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    width: 100%; /* Full width on mobile */
}

.btn-primary {
    background: linear-gradient(135deg, #a78bfa, #be185d);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #a78bfa;
    border: 2px solid #a78bfa;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #a78bfa, #be185d);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ==========================
   SECTIONS - MOBILE FIRST
   ========================== */

.section {
    padding: 3rem 0; /* Reduced for mobile */
}

.section-header {
    text-align: center;
    margin-bottom: 2rem; /* Reduced for mobile */
}

.section-header h2 {
    font-size: 1.75rem; /* Mobile base size */
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==========================
   MISSION SECTION - MOBILE FIRST
   ========================== */

.mission {
    background: var(--bg-primary);
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 1.5rem;
}

.mission-card {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem; /* Reduced for mobile */
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-4px); /* Reduced movement for mobile */
    box-shadow: var(--shadow-xl);
    border-color: rgba(109, 40, 217, 0.3);
    background: rgba(24, 24, 27, 0.8);
}

.mission-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 60px; /* Smaller on mobile */
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #a78bfa, #be185d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.icon-wrapper svg {
    width: 30px; /* Smaller on mobile */
    height: 30px;
}

.mission-card h3 {
    font-size: 1.25rem; /* Smaller on mobile */
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem; /* Slightly smaller on mobile */
}

/* ==========================
   VISION SECTION - MOBILE FIRST
   ========================== */

.vision {
    background:
        radial-gradient(ellipse at top, rgba(109, 40, 217, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(219, 39, 119, 0.15) 0%, transparent 50%),
        var(--bg-primary);
    color: white;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.vision-text h2 {
    font-size: 1.75rem; /* Mobile base size */
    margin-bottom: 1rem;
    text-align: center;
}

.lead {
    font-size: 1.1rem; /* Smaller on mobile */
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    opacity: 0.95;
    padding: 0 1rem;
}

.vision-pillars {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 1.5rem;
    margin-top: 2rem;
}

.pillar {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem; /* Reduced for mobile */
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.pillar:hover {
    background: rgba(24, 24, 27, 0.8);
    border-color: rgba(109, 40, 217, 0.3);
    transform: translateY(-2px); /* Reduced movement */
}

.pillar h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.pillar p {
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ==========================
   SOLUTIONS SECTION - MOBILE FIRST
   ========================== */

.solutions {
    background: var(--bg-primary);
    position: relative;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 1.5rem;
}

.solution-item {
    padding: 1.5rem; /* Reduced for mobile */
    background: rgba(24, 24, 27, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid #a78bfa;
    border-radius: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-item:hover {
    transform: translateX(4px); /* Reduced movement */
    box-shadow: var(--shadow-lg);
    background: rgba(24, 24, 27, 0.6);
}

.solution-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.solution-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ==========================
   TEAM SECTION - MOBILE FIRST
   ========================== */

.team {
    background: var(--bg-primary);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-member-card {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem; /* Reduced for mobile */
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member-card:hover {
    transform: translateY(-4px); /* Reduced movement for mobile */
    box-shadow: var(--shadow-xl);
    border-color: rgba(109, 40, 217, 0.3);
    background: rgba(24, 24, 27, 0.8);
}

.team-member-card:hover::before {
    opacity: 1;
}

.team-member-photo {
    width: 120px; /* Smaller on mobile */
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(109, 40, 217, 0.3);
    position: relative;
    background: linear-gradient(135deg, #a78bfa, #be185d);
    padding: 3px;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.team-member-name {
    font-size: 1.25rem; /* Smaller on mobile */
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.team-member-role {
    font-size: 0.95rem;
    color: #a78bfa;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem; /* Slightly smaller on mobile */
    margin-bottom: 1.5rem;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.social-link {
    width: 36px; /* Smaller on mobile */
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(109, 40, 217, 0.1);
    border: 1px solid rgba(109, 40, 217, 0.2);
    color: var(--text-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link svg {
    width: 18px; /* Smaller on mobile */
    height: 18px;
}

.social-link:hover {
    background: linear-gradient(135deg, #a78bfa, #be185d);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.4);
}

/* ==========================
   CTA SECTION - MOBILE FIRST
   ========================== */

.cta-section {
    background: linear-gradient(135deg, #a78bfa 0%, #be185d 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.75rem; /* Mobile base size */
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    padding: 0 1rem;
}

/* ==========================
   CONTACT SECTION - MOBILE FIRST
   ========================== */

.contact {
    background: var(--bg-primary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================
   FORM - MOBILE OPTIMIZED
   ========================== */

.contact-form {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem; /* Reduced for mobile */
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem; /* Larger touch target */
    min-height: 48px; /* Minimum touch target */
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem; /* Prevent zoom on iOS */
    font-family: inherit;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a78bfa;
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px; /* Reasonable default for mobile */
}

/* ==========================
   FOOTER - MOBILE FIRST
   ========================== */

.footer {
    background: var(--bg-dark);
    color: white;
    padding: 2rem 0 1.5rem; /* Reduced for mobile */
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #a78bfa, #be185d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for links on mobile */
    gap: 1.5rem;
}

.footer-column h4 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.875rem;
}

/* ==========================
   SMOOTH SCROLLING
   ========================== */

html {
    scroll-behavior: smooth;
}

/* ==========================
   MEDIA QUERIES - PROGRESSIVE ENHANCEMENT
   ========================== */

/* Large Mobile & Small Tablet (min-width: 480px) */
@media (min-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .icon-wrapper svg {
        width: 35px;
        height: 35px;
    }
}

/* Tablet (min-width: 640px) */
@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

    .btn {
        width: auto;
        padding: 0.75rem 2rem;
    }

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

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

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

/* Large Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    /* Hide hamburger, show desktop menu */
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        gap: 1.5rem;
        flex-shrink: 0;
    }

    .nav-menu li {
        margin-bottom: 0;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .nav-menu a {
        font-size: 0.95rem;
        padding: 0;
    }

    .nav-brand h1 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .mission-card,
    .pillar,
    .solution-item,
    .team-member-card {
        padding: 2rem;
    }

    .team-member-photo {
        width: 140px;
        height: 140px;
    }

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

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

/* Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-content {
        padding: 4rem 2rem;
    }

    .section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vision-pillars {
        grid-template-columns: repeat(3, 1fr);
    }

    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .mission-card,
    .solution-item,
    .team-member-card {
        padding: 2.5rem;
    }

    .team-member-photo {
        width: 160px;
        height: 160px;
    }

    .team-member-name {
        font-size: 1.5rem;
    }

    .team-member-role {
        font-size: 1rem;
    }

    .team-member-bio {
        font-size: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .icon-wrapper svg {
        width: 40px;
        height: 40px;
    }

    .mission-card:hover {
        transform: translateY(-8px);
    }

    .solution-item:hover {
        transform: translateX(8px);
    }

    .team-member-card:hover {
        transform: translateY(-8px);
    }
}

/* Large Desktop (min-width: 1280px) */
@media (min-width: 1280px) {
    .hero-title {
        font-size: 4rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .lead {
        font-size: 1.25rem;
    }
}

/* Extra Large Desktop (min-width: 1536px) */
@media (min-width: 1536px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Hover effects only for devices that support hover */
@media (hover: hover) {
    .nav-menu a:hover::after {
        width: 100%;
    }

    .mission-card:hover,
    .pillar:hover,
    .solution-item:hover,
    .team-member-card:hover {
        /* Hover effects already defined above */
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}