/* EDYTOWALNE KOLORY */
:root {
    --color-primary: #f59e0b;
    --color-primary-dark: #d97706;
    --color-bg-main: #f5f5f0;
    --color-bg-alt: #e8e4df;
    --color-text-dark: #1a1a1a;
    --color-text-gray: #4a4a4a;
}

/* RESET & BASE */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--color-bg-main);
    color: var(--color-text-dark);
    line-height: 1.6;
}

/* UTILITIES */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 1.5rem; 
}

.accent-bar { 
    width: 3rem; 
    height: 0.25rem; 
    background: var(--color-primary); 
    margin-bottom: 1.5rem; 
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: #000;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 700;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

:focus-visible { 
    outline: 3px solid var(--color-primary); 
    outline-offset: 2px; 
}

/* TYPOGRAPHY */
h1 { 
    font-size: 3.5rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    line-height: 1.1; 
    margin-bottom: 1.5rem; 
}

h2 { 
    font-size: 2.5rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    margin-bottom: 3rem; 
}

h3 { 
    font-size: 1.5rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    margin-bottom: 1rem; 
}

/* NAVIGATION */
nav { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    background: white; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}

.nav-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 3rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 80px; 
}

.logo { 
    font-size: 1.875rem; 
    font-weight: 900; 
    text-decoration: none; 
    color: var(--color-text-dark); 
}

.logo span { 
    color: var(--color-primary); 
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text-dark);
    position: relative;
    transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--color-text-dark);
    transition: transform 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links { 
    display: flex; 
    gap: 2rem; 
    align-items: center; 
    list-style: none; 
}

.nav-links a { 
    text-decoration: none; 
    font-size: 0.875rem; 
    font-weight: 600; 
    letter-spacing: 0.05em; 
    color: var(--color-text-dark); 
    transition: color 0.3s; 
}

.nav-links a:hover { 
    color: var(--color-primary); 
}

.lang-btn { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    padding: 0.5rem 1rem; 
    background: var(--color-primary); 
    color: #000; 
    border: none; 
    border-radius: 0.5rem; 
    font-weight: 700; 
    font-size: 0.875rem; 
    cursor: pointer; 
    transition: background 0.3s; 
}

.lang-btn:hover { 
    background: var(--color-primary-dark); 
}

/* BUTTONS */
.btn-primary { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    padding: 1rem 2rem; 
    background: var(--color-primary); 
    color: #000; 
    text-decoration: none; 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 0.875rem; 
    letter-spacing: 0.05em; 
    border-radius: 0.5rem; 
    transition: all 0.3s; 
}

.btn-primary:hover { 
    background: var(--color-primary-dark); 
    transform: scale(1.05); 
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3); 
}

.btn-secondary { 
    display: inline-block; 
    padding: 1rem 2rem; 
    border: 2px solid #000; 
    color: #000; 
    text-decoration: none; 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 0.875rem; 
    letter-spacing: 0.05em; 
    border-radius: 0.5rem; 
    transition: all 0.3s; 
}

.btn-secondary:hover { 
    background: #000; 
    color: #fff; 
}

/* SECTIONS */
section { 
    padding: 5rem 1.5rem; 
}

/* HERO */
#hero { 
    padding-top: 8rem; 
    background: linear-gradient(135deg, var(--color-bg-main) 0%, var(--color-bg-alt) 50%, var(--color-bg-main) 100%); 
    position: relative; 
    overflow: hidden; 
}

.hero-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem; 
    align-items: center; 
}

.hero-text p { 
    font-size: 1.25rem; 
    color: var(--color-text-gray); 
    margin-bottom: 2rem; 
    line-height: 1.8; 
}

.cta-buttons { 
    display: flex; 
    gap: 1rem; 
    flex-wrap: wrap; 
}

.hero-image img { 
    width: 100%; 
    height: auto; 
    border-radius: 0.5rem; 
    box-shadow: 0 25px 50px rgba(0,0,0,0.2); 
    transition: transform 0.5s; 
}

.hero-image img:hover { 
    transform: scale(1.05); 
}

.network-animation { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    opacity: 0.1; 
    pointer-events: none; 
}

/* ABOUT */
#about { 
    background: white; 
}

.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem; 
    align-items: center; 
}

.about-text p { 
    font-size: 1.125rem; 
    color: var(--color-text-gray); 
    margin-bottom: 1rem; 
    line-height: 1.8; 
}

.quote-box { 
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%); 
    padding: 2rem; 
    border-radius: 0.5rem; 
    border-left: 4px solid var(--color-primary); 
}

.quote-box blockquote { 
    font-size: 1.5rem; 
    font-style: italic; 
    color: var(--color-text-dark); 
    margin-bottom: 1rem; 
}

.quote-box p { 
    color: #6b7280; 
    font-weight: 600; 
}

.about-image { 
    margin-top: 1.5rem; 
}

.about-image img { 
    width: 100%; 
    height: auto; 
    border-radius: 0.5rem; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    transition: box-shadow 0.3s; 
}

.about-image img:hover { 
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); 
}

/* FOUNDER SECTION */
#founder {
    background: var(--color-bg-alt);
}

.founder-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
}

.founder-sidebar {
    position: sticky;
    top: 100px;
}

.founder-photo {
    margin-bottom: 2rem;
}

.founder-photo img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.founder-photo img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.founder-stats {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.founder-stats .stat-item {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 2px solid var(--color-bg-alt);
}

.founder-stats .stat-item:last-child {
    border-bottom: none;
}

.founder-stats .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.founder-stats .stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-gray);
}

.founder-companies {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.founder-companies p {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
}

.founder-companies .company-list {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-gray);
    line-height: 1.8;
}

.founder-content {
    background: white;
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.founder-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 1.125rem;
    color: var(--color-text-gray);
    margin-bottom: 2rem;
    font-weight: 600;
}

.founder-section {
    margin-bottom: 2rem;
}

.founder-section h4 {
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.founder-section p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-gray);
    margin-bottom: 1rem;
}

.founder-list {
    list-style: none;
    margin-top: 1rem;
}

.founder-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.founder-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 900;
    font-size: 1.25rem;
}

.founder-list strong {
    display: block;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.25rem;
}

.founder-list span {
    font-size: 1rem;
    color: var(--color-text-gray);
    line-height: 1.7;
}

.founder-promise {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--color-primary);
    margin-top: 2rem;
}

.founder-promise h4 {
    font-size: 1.125rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.founder-promise p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    font-weight: 600;
}

.founder-cta {
    margin-top: 2rem;
    text-align: center;
}

/* TESTIMONIALS CAROUSEL */
.founder-testimonials {
    margin-top: 4rem;
    background: white;
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.testimonials-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0;
}

.linkedin-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #0077b5;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.linkedin-profile-link:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.linkedin-profile-link svg {
    width: 20px;
    height: 20px;
}

.testimonials-carousel {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
}

.testimonial-nav:hover {
    background: var(--color-primary-dark);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.testimonial-nav:active {
    transform: scale(0.95);
}

.testimonial-nav svg {
    width: 24px;
    height: 24px;
    color: #000;
}

.testimonial-content {
    flex: 1;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.02) 100%);
    border-radius: 0.5rem;
    border-left: 4px solid var(--color-primary);
    transition: opacity 0.3s ease;
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-gray);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.testimonial-author span {
    font-size: 0.9375rem;
    color: var(--color-text-gray);
}

.testimonial-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0077b5;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s;
    padding: 0.5rem 0;
}

.testimonial-link:hover {
    color: #005885;
    gap: 0.75rem;
}

.testimonial-link svg {
    width: 16px;
    height: 16px;
}

.testimonial-progress {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--color-primary);
    width: 0%;
    transition: width 0.1s linear;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.indicator-dot:hover {
    background: #9ca3af;
    transform: scale(1.2);
}

.indicator-dot.active {
    background: var(--color-primary);
    width: 32px;
    border-radius: 6px;
}

.testimonials-counter {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-gray);
    margin-left: 0.5rem;
}

/* SOLUTIONS */
#solutions { 
    background: var(--color-bg-alt); 
}

.solutions-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem; 
}

.solution-card { 
    background: white; 
    padding: 2rem; 
    border-radius: 0.5rem; 
    transition: all 0.3s; 
}

.solution-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); 
}

.solution-card svg { 
    width: 3rem; 
    height: 3rem; 
    color: var(--color-primary); 
    margin-bottom: 1rem; 
    transition: transform 0.3s; 
}

.solution-card:hover svg { 
    transform: scale(1.1) rotate(5deg); 
}

.solution-card h3 { 
    font-size: 1.25rem; 
}

.solution-card p { 
    color: var(--color-text-gray); 
    line-height: 1.8; 
}

.solutions-link { 
    text-align: center; 
    margin-top: 3rem; 
}

.solutions-link a { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    color: var(--color-primary-dark); 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 1.125rem; 
    letter-spacing: 0.05em; 
    text-decoration: none; 
}

/* OFFER */
#offer { 
    background: white; 
}

.offer-banner { 
    width: 100%; 
    height: 16rem; 
    object-fit: cover; 
    border-radius: 0.5rem; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    margin-bottom: 3rem; 
}

.offer-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 2rem; 
}

.offer-card { 
    background: #f9fafb; 
    border-left: 4px solid var(--color-primary); 
    padding: 2rem; 
    border-radius: 0.5rem; 
    transition: all 0.3s; 
}

.offer-card:hover { 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
}

.offer-card svg { 
    width: 2.5rem; 
    height: 2.5rem; 
    color: var(--color-primary); 
    margin-bottom: 1rem; 
}

.offer-card h3 { 
    font-size: 1.5rem; 
}

.offer-card .lead { 
    font-size: 1.125rem; 
    color: var(--color-text-gray); 
    margin-bottom: 1.5rem; 
    line-height: 1.8; 
}

.offer-card ul { 
    list-style: none; 
}

.offer-card li { 
    display: flex; 
    gap: 0.75rem; 
    margin-bottom: 0.75rem; 
    color: var(--color-text-gray); 
    line-height: 1.8; 
}

.offer-card li::before { 
    content: ""; 
    width: 0.5rem; 
    height: 0.5rem; 
    background: var(--color-primary); 
    border-radius: 50%; 
    flex-shrink: 0; 
    margin-top: 0.5rem; 
}

/* PROCESS */
#process { 
    background: var(--color-bg-alt); 
}

.process-banner { 
    width: 100%; 
    height: 16rem; 
    object-fit: cover; 
    border-radius: 0.5rem; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    margin-bottom: 3rem; 
}

.process-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 1.5rem; 
    margin-bottom: 4rem; 
}

.process-card { 
    background: white; 
    padding: 1.5rem; 
    border-radius: 0.5rem; 
    transition: all 0.3s; 
}

.process-card:hover { 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
}

.process-number { 
    font-size: 4rem; 
    font-weight: 900; 
    color: var(--color-primary); 
    opacity: 0.2; 
    margin-bottom: 1rem; 
}

.process-card h3 { 
    font-size: 1.25rem; 
}

.process-card p { 
    color: var(--color-text-gray); 
    line-height: 1.8; 
}

.stats-box { 
    background: linear-gradient(135deg, white 0%, #f9fafb 100%); 
    padding: 2rem; 
    border-radius: 0.5rem; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); 
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem; 
    margin-top: 2rem; 
}

.stat { 
    text-align: center; 
}

.stat-number { 
    font-size: 3rem; 
    font-weight: 900; 
    color: var(--color-primary); 
    margin-bottom: 0.5rem; 
    transition: transform 0.3s; 
}

.stat:hover .stat-number { 
    transform: scale(1.1); 
}

.stat-label { 
    color: var(--color-text-gray); 
    font-weight: 600; 
    text-transform: uppercase; 
    font-size: 0.875rem; 
    letter-spacing: 0.05em; 
}

/* CONTACT */
#contact { 
    background: white; 
}

.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem; 
}

.form-group { 
    margin-bottom: 1.5rem; 
}

.form-group label { 
    display: block; 
    font-size: 0.875rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    margin-bottom: 0.5rem; 
}

.form-group input, 
.form-group textarea { 
    width: 100%; 
    padding: 0.75rem 1rem; 
    background: #f9fafb; 
    border: 2px solid #e5e7eb; 
    border-radius: 0.5rem; 
    font-size: 1rem; 
    transition: border-color 0.3s; 
}

.form-group input:focus, 
.form-group textarea:focus { 
    outline: none; 
    border-color: var(--color-primary); 
}

.form-group textarea { 
    resize: none; 
    min-height: 120px; 
}

.submit-btn { 
    width: 100%; 
    padding: 1rem 2rem; 
    background: var(--color-primary); 
    color: #000; 
    border: none; 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 0.875rem; 
    letter-spacing: 0.05em; 
    border-radius: 0.5rem; 
    cursor: pointer; 
    transition: background 0.3s; 
}

.submit-btn:hover { 
    background: var(--color-primary-dark); 
}

.contact-info { 
    background: #f9fafb; 
    padding: 2rem; 
    border-radius: 0.5rem; 
}

.contact-info h4 { 
    font-size: 1.25rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    margin-bottom: 1rem; 
}

.contact-info p { 
    color: var(--color-text-gray); 
    line-height: 1.8; 
    margin-bottom: 1.5rem; 
}

.contact-item { 
    display: flex; 
    gap: 0.75rem; 
    margin-bottom: 1rem; 
}

.contact-item svg { 
    width: 1.25rem; 
    height: 1.25rem; 
    color: var(--color-primary); 
    flex-shrink: 0; 
    margin-top: 0.25rem; 
}

.contact-item-label { 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 0.875rem; 
    letter-spacing: 0.05em; 
}

.contact-item-value { 
    color: var(--color-text-gray); 
}

.contact-item-value a {
    color: var(--color-text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-value a:hover {
    color: var(--color-primary);
}

.contact-image { 
    margin-top: 1.5rem; 
}

.contact-image img { 
    width: 100%; 
    border-radius: 0.5rem; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}

/* FOOTER */
footer { 
    background: #1a1a1a; 
    color: white; 
    padding: 3rem 1.5rem; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 2rem; 
    margin-bottom: 2rem; 
}

.footer-brand { 
    font-size: 1.875rem; 
    font-weight: 900; 
    margin-bottom: 1rem; 
}

.footer-brand span { 
    color: var(--color-primary); 
}

.footer-desc { 
    color: #9ca3af; 
    line-height: 1.8; 
}

.footer-title { 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    margin-bottom: 1rem; 
}

.footer-links { 
    list-style: none; 
}

.footer-links li { 
    margin-bottom: 0.5rem; 
}

.footer-links a { 
    color: #9ca3af; 
    text-decoration: none; 
    transition: color 0.3s; 
}

.footer-links a:hover { 
    color: var(--color-primary); 
}

.footer-bottom { 
    padding-top: 2rem; 
    border-top: 1px solid #374151; 
    text-align: center; 
    color: #6b7280; 
    font-size: 0.875rem; 
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: none;
        gap: 1.5rem;
    }

    .nav-links.is-open {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
    }

    .hero-grid, 
    .about-grid, 
    .solutions-grid, 
    .offer-grid, 
    .contact-grid, 
    .footer-grid { 
        grid-template-columns: 1fr; 
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat {
        padding: 1.5rem 1rem;
        border-bottom: 2px solid var(--color-bg-alt);
    }
    
    .stat:last-child {
        border-bottom: none;
    }

    h1 { 
        font-size: 2rem;
        line-height: 1.2;
    }

    h2 { 
        font-size: 2rem; 
    }
    
    #hero {
        padding-top: 6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    section {
        padding: 3rem 1rem;
    }

    /* FOUNDER - Mobile */
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-sidebar {
        position: static;
    }

    .founder-photo {
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .founder-stats {
        max-width: 400px;
        margin: 0 auto 1.5rem;
    }

    .founder-companies {
        max-width: 400px;
        margin: 0 auto;
    }

    .founder-content {
        padding: 1.5rem;
    }

    .founder-content h3 {
        font-size: 1.75rem;
    }

    /* TESTIMONIALS - Mobile */
    .founder-testimonials {
        padding: 1.5rem;
    }
    
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .testimonials-header h3 {
        font-size: 1.5rem;
    }
    
    .linkedin-profile-link {
        width: 100%;
        justify-content: center;
    }
    
    .testimonials-carousel {
        flex-direction: column;
        min-height: 300px;
        gap: 1rem;
    }
    
    .testimonial-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
    }
    
    .testimonial-nav.prev {
        left: -10px;
    }
    
    .testimonial-nav.next {
        right: -10px;
    }
    
    .testimonial-content {
        padding: 1rem;
        width: 100%;
    }
    
    .testimonial-text p {
        font-size: 0.9375rem;
    }
    
    .testimonial-author strong {
        font-size: 1rem;
    }
    
    .testimonial-author span {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 1.75rem;
    }

    .founder-content h3 {
        font-size: 1.5rem;
    }

    .founder-section h4 {
        font-size: 1.125rem;
    }
}