/* ============================================================
   REK Strategies LLC - Master Stylesheet
   Dark Navy & Black Design | White Text | Red Accents
   ============================================================ */

/* ----- CSS Reset & Base ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #B22234;
}

ul {
    list-style: none;
}

/* ----- Container ----- */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
}

/* ----- Section Shared Styles ----- */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B22234;
    margin-bottom: 12px;
    border: 1px solid rgba(178, 34, 52, 0.3);
    padding: 6px 18px;
    border-radius: 4px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 1.05rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.divider-line {
    display: block;
    width: 60px;
    height: 1px;
    background: rgba(178, 34, 52, 0.4);
}

.divider-diamond {
    color: #B22234;
    font-size: 0.6rem;
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: #B22234;
    color: #FFFFFF;
    border-color: #B22234;
}

.btn-primary:hover {
    background: transparent;
    color: #B22234;
    border-color: #B22234;
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #FFFFFF;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 18px 44px;
    font-size: 1.05rem;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.logo:hover {
    color: #FFFFFF;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.main-nav a:hover {
    color: #B22234;
}

.nav-cta {
    background: #B22234;
    color: #FFFFFF !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: transparent !important;
    color: #B22234 !important;
    outline: 2px solid #B22234;
    outline-offset: -2px;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #0A1F44 50%, #000000 100%);
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(178, 34, 52, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10, 31, 68, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 7px 18px;
    border-radius: 4px;
    margin-bottom: 28px;
}

.hero-content h1 {
    margin-bottom: 20px;
    color: #FFFFFF;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Hero Stats */
.hero-stat-bar {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #B22234;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual / Graphic */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-graphic {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 420px;
}

/* Abstract Growth Bars */
.graphic-grid {
    position: absolute;
    bottom: 80px;
    left: 20px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    z-index: 1;
}

.graphic-bar {
    width: 28px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, #0A1F44, rgba(10, 31, 68, 0.4));
    transition: height 0.3s ease;
}

.bar-1 { height: 60px; }
.bar-2 { height: 100px; }
.bar-3 { height: 140px; }
.bar-4 { height: 110px; }
.bar-5 { height: 170px; }

/* Line Chart */
.graphic-line-chart {
    position: absolute;
    top: 60px;
    right: 10px;
    width: 280px;
    z-index: 2;
    opacity: 0.8;
}

.graphic-line-chart svg {
    width: 100%;
    height: auto;
}

/* Floating Dots */
.graphic-dots {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1;
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(178, 34, 52, 0.5);
}

.dot-1 { top: 0; right: 0; }
.dot-2 { top: 40px; right: 60px; width: 4px; height: 4px; background: rgba(255, 255, 255, 0.3); }
.dot-3 { top: 80px; right: 20px; width: 8px; height: 8px; background: rgba(178, 34, 52, 0.3); }
.dot-4 { top: 20px; right: 100px; width: 4px; height: 4px; background: rgba(255, 255, 255, 0.2); }
.dot-5 { top: 100px; right: 80px; width: 5px; height: 5px; background: rgba(178, 34, 52, 0.4); }

/* Shield Graphic */
.graphic-shield {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 70px;
    opacity: 0.6;
    z-index: 3;
}

.graphic-shield svg {
    width: 100%;
    height: auto;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    background: #0A1F44;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.about-text .btn {
    margin-top: 12px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 24px 28px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(178, 34, 52, 0.3);
    transform: translateX(4px);
}

.stat-card i {
    font-size: 1.5rem;
    color: #B22234;
    margin-bottom: 12px;
}

.stat-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    background: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    background: rgba(10, 31, 68, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 36px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #B22234;
    transition: height 0.4s ease;
}

.service-card:hover {
    background: rgba(10, 31, 68, 0.7);
    border-color: rgba(178, 34, 52, 0.3);
    transform: translateY(-4px);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(178, 34, 52, 0.12);
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.3rem;
    color: #B22234;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card > p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
    line-height: 1.65;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: #B22234;
    font-size: 0.75rem;
}

/* ============================================================
   WHY REK STRATEGIES
   ============================================================ */
.why-section {
    background: #0A1F44;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
}

.why-card:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(178, 34, 52, 0.2);
    transform: translateY(-3px);
}

.why-card:nth-last-child(-n+2) {
    grid-column: span 1;
}

/* Center the last card if odd number */
.why-card:last-child:nth-child(odd) {
    grid-column: 2 / 3;
}

.why-number {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(178, 34, 52, 0.25);
    line-height: 1;
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
}

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-section {
    background: #000000;
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.founder-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-portrait {
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-portrait i {
    font-size: 5rem;
    color: #FFFFFF;
    opacity: 0.8;
    z-index: 2;
    position: relative;
}

.portrait-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(178, 34, 52, 0.3);
    z-index: 1;
}

.portrait-accent {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 0;
}

.founder-content h3 {
    font-size: 2rem;
    margin-bottom: 6px;
}

.founder-title {
    display: block;
    font-size: 1rem;
    color: #B22234;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.founder-divider {
    width: 60px;
    height: 2px;
    background: #B22234;
    margin-bottom: 24px;
}

.founder-content p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.founder-quote {
    border-left: 3px solid #B22234;
    padding: 16px 20px;
    margin-top: 24px;
    background: rgba(178, 34, 52, 0.06);
    border-radius: 0 6px 6px 0;
}

.founder-quote i {
    color: #B22234;
    font-size: 1rem;
    margin-right: 8px;
    opacity: 0.6;
}

.founder-quote {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    line-height: 1.7;
}

/* ============================================================
   MISSION & VALUES
   ============================================================ */
.mission-section {
    background: #0A1F44;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.mission-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(178, 34, 52, 0.2);
    transform: translateY(-3px);
}

.value-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(178, 34, 52, 0.1);
    border-radius: 50%;
}

.value-icon i {
    font-size: 1.3rem;
    color: #B22234;
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
}

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.who-section {
    background: #000000;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.who-card {
    background: rgba(10, 31, 68, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.who-card:hover {
    background: rgba(10, 31, 68, 0.5);
    border-color: rgba(178, 34, 52, 0.2);
    transform: translateY(-3px);
}

.who-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(178, 34, 52, 0.1);
    border-radius: 12px;
}

.who-icon i {
    font-size: 1.4rem;
    color: #B22234;
}

.who-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.who-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
}

/* ============================================================
   CALL TO ACTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, #0A1F44 0%, #000000 100%);
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid rgba(178, 34, 52, 0.15);
    border-bottom: 1px solid rgba(178, 34, 52, 0.15);
}

.cta-content {
    max-width: 700px;
}

.cta-content h2 {
    margin-bottom: 20px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-content p {
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    background: #000000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-email-card {
    background: rgba(10, 31, 68, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 32px;
    text-align: center;
}

.contact-email-card i {
    font-size: 2rem;
    color: #B22234;
    margin-bottom: 16px;
}

.contact-email-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.contact-email-card a {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 500;
    word-break: break-all;
}

.contact-email-card a:hover {
    color: #B22234;
}

.contact-availability {
    background: rgba(10, 31, 68, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px 24px;
}

.contact-availability p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(10, 31, 68, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.required {
    color: #B22234;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #B22234;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 3px rgba(178, 34, 52, 0.1);
}

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

/* Form Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 3rem;
    color: #B22234;
    margin-bottom: 16px;
}

.form-success h3 {
    margin-bottom: 12px;
}

.form-success p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 48px 0 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

.footer-brand h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.footer-links ul {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: #B22234;
}

.footer-middle {
    text-align: center;
    padding-bottom: 24px;
}

.footer-email {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-email i {
    color: #B22234;
}

.footer-email:hover {
    color: #B22234;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stat-bar {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .why-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .founder-divider {
        margin: 0 auto 24px;
    }

    .founder-quote {
        text-align: left;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 20px 24px;
        transform: translateY(-110%);
        opacity: 0;
        transition: all 0.4s ease;
        pointer-events: none;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav a {
        font-size: 1rem;
        display: block;
        padding: 8px 0;
    }

    .nav-cta {
        display: inline-block;
        text-align: center;
        padding: 12px 24px;
    }

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

    .hero-stat-bar {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .hero-stat {
        align-items: center;
    }

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

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

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

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

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
    }
}
