/* ====================================
   Prime Trade & Services Inc.
   Professional Corporate Website Styles
   ==================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Professional Blue & Gold */
    --primary-blue: #1a3c6d;
    --primary-gold: #c9962e;
    --accent-blue: #2c5aa0;
    --light-blue: #e8f1f8;

    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-gray: #f4f4f4;
    --border-color: #e0e0e0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a3c6d 0%, #2c5aa0 100%);
    --gradient-gold: linear-gradient(135deg, #c9962e 0%, #d4a645 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 60, 109, 0.95) 0%, rgba(44, 90, 160, 0.95) 100%);

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 40px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
}

/* ====================================
   Reset & Base Styles
   ==================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

.section {
    padding: var(--section-padding);
    position: relative;
}

.bg-light {
    background-color: var(--bg-light);
}

/* ====================================
   Navigation Header
   ==================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav__brand {
    display: flex;
    flex-direction: column;
}

.brand__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.brand__tagline {
    font-size: 0.75rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2px;
    font-weight: 500;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav__link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary-blue);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__cta {
    margin-left: 20px;
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: var(--transition-fast);
}

/* ====================================
   Hero Section
   ==================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 150, 46, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: var(--white);
}

.hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero__title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.hero__title .highlight {
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
}

.hero__subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat__item {
    text-align: center;
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.stat__label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* ====================================
   Buttons
   ==================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--white);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ====================================
   Section Headers
   ==================================== */

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section__badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section__title {
    font-size: 2.75rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ====================================
   About Section
   ==================================== */

/* Founder Showcase - Compact Layout */
.founder-showcase {
    margin-bottom: 60px;
}

.founder-card-compact {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: start;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.founder-photos-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.founder-info-column {
    padding: 10px 0;
}

.founder-photo-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
}

.founder-photo-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.founder-photo-main img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 24px;
    color: white;
}

.founder-overlay h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.founder-overlay p {
    margin: 6px 0 0 0;
    font-size: 1rem;
    opacity: 0.95;
}

.founder-stats-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat-box-compact {
    background: white;
    padding: 20px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: var(--transition-smooth);
    border-top: 4px solid transparent;
}

.stat-box-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.stat-box-compact:nth-child(odd) {
    border-top-color: var(--primary-blue);
}

.stat-box-compact:nth-child(even) {
    border-top-color: var(--primary-gold);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

.founder-photo-achievement {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
}

.founder-photo-achievement:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.founder-photo-achievement img {
    width: 100%;
    height: auto;
    display: block;
}

.achievement-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(201, 150, 46, 0.95), transparent);
    padding: 20px;
    color: white;
    text-align: center;
}

.achievement-overlay span {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.achievement-overlay p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 600;
}

/* Education Section - Full Width */
.education-section {
    margin-top: 60px;
}

.education-content {
    margin-bottom: 40px;
}

.education-content h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 2rem;
}

.education-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.journey-achievements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__content h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 2rem;
}

.about__content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.feature__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.feature__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    font-size: 1.5rem;
}

.feature__text h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature__text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 60, 109, 0.1) 0%, transparent 100%);
}

/* ====================================
   Services Section
   ==================================== */

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service__card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service__card:hover::before {
    transform: scaleX(1);
}

.service__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 16px;
    font-size: 2rem;
    margin-bottom: 24px;
}

.service__title {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.service__description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.service__feature::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.75rem;
}

/* ====================================
   Strategy Section
   ==================================== */

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

.strategy__intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 60px;
    padding: 30px;
    background: var(--light-blue);
    border-radius: 16px;
}

.phase__card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.phase__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-gold);
}

.phase__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.phase__number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
}

.phase__title {
    font-size: 2rem;
    color: var(--primary-blue);
}

.phase__description {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.phase__objectives {
    display: grid;
    gap: 20px;
}

.objective__item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.objective__item:hover {
    background: var(--light-blue);
    transform: translateX(8px);
}

.objective__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: 10px;
    font-size: 1.25rem;
}

.objective__content h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.objective__content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ====================================
   Contact Section
   ==================================== */

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact__card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.contact__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.contact__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.contact__card h3 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.contact__card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.contact__card a {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact__card a:hover {
    color: var(--primary-gold);
}

.contact__form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form__group {
    margin-bottom: 24px;
}

.form__group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form__group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ====================================
   Footer
   ==================================== */

.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__section h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer__link:hover {
    color: var(--primary-gold);
    padding-left: 4px;
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ====================================
   Scroll to Top Button
   ==================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ====================================
   Responsive Design
   ==================================== */

@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }

    .hero__title { font-size: 3rem; }
    .hero__stats { grid-template-columns: repeat(2, 1fr); }

    .founder-card-compact {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }

    .founder-photos-column {
        max-width: 500px;
        margin: 0 auto;
    }

    .founder-stats-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .journey-achievements-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-lg);
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .nav__link {
        font-size: 1.1rem;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .nav__cta {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero__title { font-size: 2.5rem; }
    .hero__stats { grid-template-columns: 1fr; gap: 30px; }
    .hero__buttons { flex-direction: column; }

    .founder-card-compact {
        padding: 30px 20px;
    }

    .founder-info-column h2 {
        font-size: 2rem !important;
    }

    .founder-info-column h4 {
        font-size: 1.1rem !important;
    }

    .founder-info-column p {
        font-size: 1rem !important;
    }

    .stat-number {
        font-size: 1.8rem !important;
    }

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

    .about__features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .phase__card {
        padding: 30px 20px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 20px;
    }

    .hero__title { font-size: 2rem; }
    .section__title { font-size: 2rem; }

    .founder-card-compact {
        padding: 24px 16px;
    }

    .founder-stats-compact {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-box-compact {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 1.6rem !important;
    }
}

/* ====================================
   Animation Utilities
   ==================================== */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Stagger animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
