/* ============================================
   AMERICAN RENAISSANCE MINERALS - WEBSITE CSS
   Color Palette: Navy, Deep Blue, Red, White
   ============================================ */

:root {
    --navy: #0A1628;
    --deep-blue: #1B3A5C;
    --blue: #1E4D8C;
    --mid-blue: #2A6CB8;
    --light-blue: #E8F0FA;
    --ice-blue: #F0F5FB;
    --red: #B22234;
    --dark-red: #8B1A28;
    --light-red: #D4434F;
    --white: #FFFFFF;
    --off-white: #F8F9FB;
    --gray-100: #F1F3F5;
    --gray-200: #E2E6EA;
    --gray-300: #CED4DA;
    --gray-500: #6C757D;
    --gray-700: #495057;
    --gray-900: #212529;
    --gold: #C5A55A;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
    padding: 16px 0;
}
.navbar.scrolled {
    background: rgba(10, 22, 40, 0.97);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    backdrop-filter: blur(10px);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img {
    height: 48px;
    width: auto;
    transition: height var(--transition);
}
.navbar.scrolled .nav-logo img { height: 40px; }
.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}
.nav-menu a {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: all var(--transition);
    letter-spacing: 0.02em;
}
.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 50%, #0D2847 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--navy), transparent);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(30,77,140,0.3) 0%, transparent 70%),
                radial-gradient(ellipse at 70% 30%, rgba(178,34,52,0.12) 0%, transparent 60%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 120px 24px 80px;
}
.hero-logo {
    width: 200px;
    margin: 0 auto 32px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
    animation: fadeInUp 0.8s ease-out;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-tagline {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.scroll-arrow {
    width: 20px;
    height: 20px;
    margin: 8px auto 0;
    border-right: 2px solid rgba(255,255,255,0.4);
    border-bottom: 2px solid rgba(255,255,255,0.4);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.02em;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-primary:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178,34,52,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}
.btn-blue {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn-blue:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
}
.section-white { background: var(--white); }
.section-light { background: var(--off-white); }
.section-dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
    color: var(--white);
}
.section-blue {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--blue) 100%);
    color: var(--white);
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}
.section-header.light h2 { color: var(--white); }
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: 12px;
    padding: 4px 12px;
    background: rgba(178,34,52,0.08);
    border-radius: 4px;
}
.section-header.light .section-tag {
    color: var(--gold);
    background: rgba(197,165,90,0.15);
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
    background: var(--white);
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}
.stat-card {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid var(--gray-200);
    transition: background var(--transition);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--ice-blue); }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* ============================================
   LAYOUT: TWO COLUMN
   ============================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.col-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--gray-700);
}
.col-text p:last-child { margin-bottom: 0; }

.highlight-box {
    background: var(--ice-blue);
    border-radius: var(--radius-lg);
    padding: 36px;
    border-left: 4px solid var(--blue);
}
.highlight-box h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 24px;
}
.highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.highlight-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.5;
}
.highlight-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ============================================
   THREE COLUMN (Feature Cards)
   ============================================ */
.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.feature-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition);
}
.feature-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    color: var(--gold);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}
.feature-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* White feature cards (for light sections) */
.feature-card-white {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition);
}
.feature-card-white:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.feature-card-white h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}
.feature-card-white p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 16px;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.data-table thead {
    background: var(--navy);
    color: var(--white);
}
.data-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.data-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-200);
}
.data-table tbody tr:hover {
    background: var(--ice-blue);
}
.highlight-row {
    background: var(--light-blue) !important;
}
.total-row {
    background: var(--navy) !important;
    color: var(--white);
}
.total-row td { border-bottom: none; }
.table-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 12px;
    font-style: italic;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    transition: all var(--transition);
}
.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.team-photo {
    width: 160px;
    flex-shrink: 0;
    background: var(--gray-200);
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.team-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.team-role {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    margin-bottom: 12px;
}
.team-info p {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--blue);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-item::after {
    content: '';
    position: absolute;
    top: 28px;
    width: 16px;
    height: 16px;
    background: var(--red);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}
.timeline-item:nth-child(odd)::after { right: -8px; }
.timeline-item:nth-child(even)::after { left: -8px; }
.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 4px;
}
.timeline-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 6px;
}
.timeline-desc {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--red) 0%, var(--dark-red) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
}
.cta-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
}
.cta-center { text-align: center; margin-top: 36px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    height: 60px;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.footer-partner {
    color: var(--gold);
    margin-top: 8px !important;
}
.footer-links h4,
.footer-legal h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links a {
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-legal p { font-size: 0.8rem; line-height: 1.6; }
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(30,77,140,0.2), transparent 70%);
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    position: relative;
    margin-bottom: 12px;
}
.page-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */
.content-block {
    margin-bottom: 60px;
}
.content-block h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 20px;
}
.content-block p {
    font-size: 1.05rem;
    color: var(--gray-700);
    margin-bottom: 16px;
}
.content-block p:last-child { margin-bottom: 0; }

.image-full {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 24px 0;
}

/* Chart containers */
.chart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}
.chart-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}
.chart-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}
.chart-bar-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.chart-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.chart-bar-label {
    width: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: right;
    flex-shrink: 0;
}
.chart-bar-track {
    flex: 1;
    height: 28px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.chart-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-out;
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
}
.chart-bar-fill.blue { background: linear-gradient(90deg, var(--blue), var(--mid-blue)); }
.chart-bar-fill.red { background: linear-gradient(90deg, var(--red), var(--light-red)); }
.chart-bar-fill.navy { background: linear-gradient(90deg, var(--navy), var(--deep-blue)); }

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info-card {
    background: var(--ice-blue);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 24px;
}
.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 16px;
}
.contact-info-card p {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 8px;
}
.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: border-color var(--transition);
    background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30,77,140,0.1);
}
.contact-form textarea { min-height: 150px; resize: vertical; }

/* ============================================
   VALUATION
   ============================================ */
.valuation-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 40px auto;
}
.val-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.val-bar-label {
    width: 160px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    text-align: right;
    flex-shrink: 0;
}
.val-bar-track {
    flex: 1;
    height: 40px;
    background: var(--gray-100);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.val-bar-fill {
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(6px); }
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .three-col { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card:nth-child(2) { border-right: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .chart-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
    }
    .nav-menu.active { display: flex; }
    .nav-toggle { display: flex; }
    .three-col { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .team-card { flex-direction: column; }
    .team-photo { width: 100%; height: 200px; }
    .timeline::before { left: 20px; }
    .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 50px; padding-right: 20px; }
    .timeline-item::after { left: 12px !important; right: auto !important; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-logo { width: 150px; }
    .section { padding: 60px 0; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { border-right: none; border-bottom: 1px solid var(--gray-200); }
    .stat-card:last-child { border-bottom: none; }
}
