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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a2e;
    overflow-x: hidden;
    letter-spacing: -0.01em;
    background: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    color: #1a1a2e;
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 0.875rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a2e;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
    color: #0066cc;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.cta-button {
    background: #0066cc;
    color: white !important;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: #0052a3;
    transform: translateY(-1px);
}

.language-switcher {
    padding: 0.4rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    color: #4a5568 !important;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.language-switcher:hover {
    border-color: #0066cc;
    color: #0066cc !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 24px;
    height: 2px;
    background-color: #1a1a2e;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: #fafbfc;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-container:has(.hero-content:only-child) {
    grid-template-columns: 1fr;
    max-width: 800px;
    text-align: center;
}

.hero-container:has(.hero-content:only-child) .value-points {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.hero-container:has(.hero-content:only-child) .hero-cta {
    margin-top: 2rem;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.highlight {
    color: #0066cc;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    margin-bottom: 1rem;
}

/* Value Points */
.value-points {
    margin-bottom: 2rem;
}

.value-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.value-point i {
    color: #22c55e;
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.value-point span {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.5;
}

.hero-note {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.btn-primary {
    background: #0066cc;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
}

.hero-stats-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.stat-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-item:first-child {
    padding-top: 0;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

/* Code Preview Card */
.code-preview-card {
    background: #1e1e2e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.code-preview-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.code-header {
    background: #2d2d3f;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dots .dot.red {
    background: #ff5f56;
}

.code-dots .dot.yellow {
    background: #ffbd2e;
}

.code-dots .dot.green {
    background: #27ca40;
}

.code-filename {
    color: #888;
    font-size: 0.8rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.code-content {
    padding: 1.25rem;
    margin: 0;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #cdd6f4;
    overflow-x: auto;
}

.code-content code {
    font-family: inherit;
}

.code-keyword {
    color: #cba6f7;
}

.code-function {
    color: #f9e2af;
}

.code-comment {
    color: #6c7086;
    font-style: italic;
}

/* Network / Client Logos */
.network {
    padding: 3rem 0;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
}

.logos-intro {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.logo-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-carousel::before,
.logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.company-logos {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll-logos 20s linear infinite;
    width: max-content;
}

.company-logos:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    height: 40px;
    width: 120px;
    min-width: 120px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.company-logo {
    max-height: 40px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Audience Section */
.audience-section {
    padding: 80px 0;
    background: #ffffff;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.audience-card {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.audience-card.is-for {
    background: #f0fdf4;
    border-color: #86efac;
}

.audience-card.not-for {
    background: #fef2f2;
    border-color: #fca5a5;
}

.audience-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.audience-card.is-for h3 {
    color: #166534;
}

.audience-card.is-for h3 i {
    color: #22c55e;
}

.audience-card.not-for h3 {
    color: #991b1b;
}

.audience-card.not-for h3 i {
    color: #ef4444;
}

.audience-card ul {
    list-style: none;
    padding: 0;
}

.audience-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.audience-card.is-for li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.audience-card.not-for li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: #fafbfc;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.problems-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.problem-card {
    background: white;
    padding: 1.75rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.problem-card:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: #fee2e2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #dc2626;
    font-size: 1.25rem;
}

.problem-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.problem-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Outcomes Section */
.outcomes-section {
    padding: 80px 0;
    background: #ffffff;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.outcomes-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.outcome-card {
    background: #f0f9ff;
    padding: 1.75rem;
    border-radius: 10px;
    border: 1px solid #bae6fd;
    position: relative;
}

.outcome-number {
    position: absolute;
    top: -12px;
    left: 20px;
    width: 28px;
    height: 28px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.outcome-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    color: #1a1a2e;
}

.outcome-card p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.outcomes-cta {
    text-align: center;
    margin-top: 3rem;
}

/* How It Works Section */
.how-section {
    padding: 80px 0;
    background: #fafbfc;
}

.how-timeline {
    max-width: 700px;
    margin: 3rem auto;
}

/* Horizontal How Steps */
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.how-step {
    text-align: center;
    position: relative;
}

.how-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -1rem;
    width: calc(2rem);
    height: 2px;
    background: #e5e7eb;
}

.step-number {
    width: 44px;
    height: 44px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.step-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 48px;
    width: 2px;
    height: calc(100% - 48px);
    background: #e5e7eb;
}

.timeline-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.timeline-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.timeline-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.format-options {
    margin-top: 4rem;
    text-align: center;
}

.format-options h3 {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.format-card {
    background: white;
    padding: 1.75rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.format-card i {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.format-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.format-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Trainers Section */
.trainers-section {
    padding: 80px 0;
    background: #ffffff;
}

.trainer-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.principle-card {
    background: #fafbfc;
    padding: 1.75rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.principle-card i {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.principle-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
}

.principle-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.credentials-section {
    margin-top: 4rem;
    padding: 2rem;
    background: #fafbfc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.credentials-section h3 {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.credential-item i {
    color: #22c55e;
    margin-top: 0.2rem;
}

.credential-item span {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #1a1a2e;
    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #e2e8f0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    margin: 0 0 0.15rem 0;
    color: white;
    font-size: 0.95rem;
}

.author-info span {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fafbfc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
    line-height: 1.4;
}

.faq-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-content-wrapper.contact-centered {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
}

.contact-centered .contact-form {
    text-align: center;
}

.contact-centered .contact-form h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.contact-centered .contact-intro {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-centered .form-group {
    text-align: left;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.contact-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.benefit-item i {
    color: #22c55e;
}

.benefit-item span {
    color: #4a5568;
    font-size: 0.95rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: #0066cc;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin: 0 0 0.25rem 0;
    color: #1a1a2e;
    font-size: 0.95rem;
}

.contact-item p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    background: #fafbfc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.contact-form h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
    font-family: inherit;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

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

.btn-submit {
    width: 100%;
    background: #0066cc;
    color: white;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit:hover {
    background: #0052a3;
}

.form-note {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #e2e8f0;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.35rem;
    color: #0066cc;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.9rem;
}

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

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #0066cc;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom p {
    color: #64748b;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Legal Pages */
.legal-page {
    padding: 0;
    background: #fafbfc;
    min-height: 100vh;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.legal-content h2 {
    font-size: 1.35rem;
    color: #1a1a2e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.legal-content ul {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.4rem;
}

.legal-content a {
    color: #0066cc;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-stats-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .code-preview-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .code-preview-card:hover {
        transform: none;
    }
    
    .value-points {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-grid,
    .outcomes-grid,
    .trainer-principles,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-grid-4,
    .outcomes-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .how-step:not(:last-child)::after {
        display: none;
    }
    
    .format-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.75rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.85rem;
    }
    
    .problems-grid-4,
    .outcomes-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .how-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2rem auto;
    }
    
    .company-logos {
        gap: 2rem;
    }
    
    .logo-item {
        width: 100px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 1.65rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .problem-card,
    .outcome-card,
    .faq-item,
    .format-card,
    .principle-card {
        padding: 1.25rem;
    }
}
