/* ===== CSS VARIABLES ===== */
:root {
    --primary: #0076AF;
    --secondary: #EB008B;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #ffffff;
    --bg-dark: #0a0a0a;
    --border-light: rgba(0, 0, 0, 0.1);
    --border-dark: rgba(255, 255, 255, 0.1);
    --gray-50: #f9fafb;
    --gray-100: #f3f3f5;
    --gray-200: #ececf0;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===== DARK MODE ===== */
body.dark-mode {
    --bg-light: #0a0a0a;
    --text-dark: #f5f5f5;
    --border-light: rgba(255, 255, 255, 0.1);
    --gray-50: #1a1a1a;
    --gray-100: #262626;
    --gray-200: #3a3a3a;
    --gray-300: #4a4a4a;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    transition: var(--transition);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.4;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

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

a:hover {
    opacity: 0.8;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-fluid {
    padding: 0 1.5rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

body.dark-mode .navbar {
    background-color: rgba(10, 10, 10, 0.95);
}

.navbar-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.logo-company {
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 600;
}

.navbar-desktop {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.theme-toggle {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    transform: scale(1.1);
}

.navbar-mobile {
    display: none;
    gap: 0.5rem;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-dark);
}

.navbar-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

@media (max-width: 768px) {
    .navbar-desktop {
        display: none;
    }

    .navbar-mobile {
        display: flex;
    }

    .navbar-mobile-menu.open {
        display: flex;
    }

    .logo-text {
        display: none;
    }
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background-color: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

body.dark-mode .section-header p {
    color: var(--gray-400);
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding-top: 8rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-profile-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-name {
    color: var(--primary);
    font-size: 1.75rem;
}

.title-company {
    color: var(--secondary);
    font-size: 1.75rem;
}

.hero-description {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
}

body.dark-mode .hero-description {
    color: var(--gray-400);
}

.highlight-text {
    color: var(--secondary);
    font-weight: 600;
}

.hero-benefits {
    background: linear-gradient(135deg, rgba(0, 118, 175, 0.1) 0%, rgba(235, 0, 139, 0.1) 100%);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}

.hero-benefits h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #005a8a;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #c70070;
    transform: translateY(-2px);
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    transition: var(--transition);
}

body.dark-mode .service-card {
    background: #141414;
    border-color: var(--border-light);
}

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

.service-card h3 {
    margin: 1rem 0;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

body.dark-mode .service-card p {
    color: var(--gray-400);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-details {
    list-style: none;
}

.service-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
    font-size: 0.9rem;
}

body.dark-mode .service-details li {
    color: var(--gray-300);
}

.service-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.approach-box {
    background: linear-gradient(135deg, rgba(0, 118, 175, 0.05) 0%, rgba(235, 0, 139, 0.05) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.approach-box h3 {
    margin-bottom: 1rem;
}

.approach-box p {
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
}

body.dark-mode .approach-box p {
    color: var(--gray-300);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: var(--gray-50);
}

.profile-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    text-align: center;
}

.profile-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
}

.profile-intro h3 {
    margin-bottom: 0.5rem;
}

.profile-intro p {
    color: var(--gray-600);
}

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

.about-column h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    text-align: justify;
}

body.dark-mode .about-text p {
    color: var(--gray-300);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* ===== TIMELINE ===== */
.timeline-section {
    margin-top: 3rem;
}

.timeline-section h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.timeline {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}

body.dark-mode .timeline {
    background: #141414;
    border-color: var(--border-light);
}

.timeline-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
}

.timeline-item[open] {
    border-color: var(--border-light);
}

.timeline-summary {
    padding: 1.25rem;
    background: var(--gray-50);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.timeline-summary:hover {
    background: var(--gray-100);
}

.timeline-summary-primary {
    border-left-color: var(--secondary);
}

.timeline-summary-secondary {
    border-left-color: var(--primary);
}

body.dark-mode .timeline-summary {
    background: #1a1a1a;
}

body.dark-mode .timeline-summary:hover {
    background: #222222;
}

.timeline-summary::-webkit-details-marker {
    display: none;
}

.timeline-dot {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    margin-top: 0.25rem;
    font-weight: 600;
    background: var(--gray-300);
}

.timeline-dot-primary {
    background-color: var(--secondary);
}

.timeline-dot-secondary {
    background-color: var(--primary);
}

.timeline-header {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timeline-title {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-dark);
}

body.dark-mode .timeline-title {
    color: var(--text-light);
}

.timeline-date {
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid var(--border-light);
}

body.dark-mode .timeline-content {
    background: #0a0a0a;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
}

.timeline-role,
.timeline-industry {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--gray-600);
}

body.dark-mode .timeline-role,
body.dark-mode .timeline-industry {
    color: var(--gray-400);
}

.timeline-summary-text {
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

body.dark-mode .timeline-summary-text {
    color: var(--gray-300);
}

.timeline-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.timeline-details h5 {
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
}

body.dark-mode .timeline-details h5 {
    color: var(--gray-400);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--gray-100);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: var(--gray-700);
}

body.dark-mode .tech-tag {
    background: #1a1a1a;
    color: var(--gray-300);
}

/* ===== EXPERTISE SECTION ===== */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.strength-card {
    background: white;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-align: center;
}

body.dark-mode .strength-card {
    background: #141414;
    border-color: var(--border-light);
}

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

.strength-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.strength-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.strength-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

body.dark-mode .strength-card p {
    color: var(--gray-400);
}

.industry-expertise {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

body.dark-mode .industry-expertise {
    background: #141414;
    border-color: var(--border-light);
}

.industry-expertise h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.industry-box {
    text-align: center;
}

.industry-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.industry-name {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.industry-years {
    color: var(--gray-600);
    font-size: 0.85rem;
}

body.dark-mode .industry-years {
    color: var(--gray-400);
}

.technologies-section,
.programming-section {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

body.dark-mode .technologies-section,
body.dark-mode .programming-section {
    background: #141414;
    border-color: var(--border-light);
}

.technologies-section h3,
.programming-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tech-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tech-badge {
    padding: 0.5rem 1rem;
    border: 2px solid;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.philosophy-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 50%, var(--secondary) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
}

.philosophy-quote {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

body.dark-mode .contact-form {
    background: #141414;
    border-color: var(--border-light);
}

.contact-form h3 {
    margin-bottom: 0.5rem;
}

.form-description {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

body.dark-mode .form-description {
    color: var(--gray-400);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 118, 175, 0.1);
}

.form-disclaimer {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
}

body.dark-mode .form-disclaimer {
    background: #1a1a1a;
    color: var(--gray-400);
}

.form-disclaimer a {
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(0, 118, 175, 0.2);
}

body.dark-mode .contact-card {
    background: #141414;
    border-color: var(--border-light);
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

body.dark-mode .card-description {
    color: var(--gray-400);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.contact-details {
    flex-grow: 1;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-benefits-box,
.availability-box {
    background: linear-gradient(135deg, rgba(0, 118, 175, 0.05) 0%, rgba(235, 0, 139, 0.05) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.contact-benefits-box h3,
.availability-box h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefits-list-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefits-list-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

body.dark-mode .benefits-list-contact li {
    color: var(--gray-300);
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.45rem;
}

.availability-box p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

body.dark-mode .availability-box p {
    color: var(--gray-300);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding: 5rem 0;
}

.legal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

.legal-content {
    margin-top: 2rem;
}

.legal-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 1.5rem;
}

body.dark-mode .legal-card {
    background: #141414;
    border-color: var(--border-light);
}

.legal-card h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.legal-card h3 {
    margin-bottom: 0.75rem;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.legal-card p {
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
}

body.dark-mode .legal-card p {
    color: var(--gray-300);
}

.legal-box {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    margin: 1rem 0;
}

body.dark-mode .legal-box {
    background: #1a1a1a;
}

.legal-box p {
    margin-bottom: 0.5rem;
}

.legal-box-bordered {
    border: 2px solid var(--border-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.legal-highlight-box {
    background: linear-gradient(135deg, rgba(0, 118, 175, 0.05) 0%, rgba(235, 0, 139, 0.05) 100%);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    margin: 1rem 0;
}

.legal-highlight-box ul {
    margin-left: 1.5rem;
}

.legal-highlight-box li {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

body.dark-mode .legal-highlight-box li {
    color: var(--gray-300);
}

.legal-subsection {
    margin-bottom: 1.5rem;
}

.legal-footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--gray-600);
    border-top: 1px solid var(--border-light);
}

body.dark-mode .legal-footer {
    color: var(--gray-400);
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-2 { margin-top: 0.5rem; }

/* ===== FOOTER ===== */
.footer {
    position: sticky;
    bottom: 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    padding: 2rem 0;
    text-align: center;
    color: var(--gray-600);
    z-index: 100;
}

body.dark-mode .footer {
    border-top-color: var(--border-light);
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.separator {
    color: var(--gray-400);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 640px) {
    section {
        padding: 3rem 0;
    }

    .hero-profile-image,
    .profile-image {
        width: 150px;
        height: 150px;
    }

    .title-name,
    .title-company {
        font-size: 1.25rem;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1rem; }

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

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

    .tech-cloud {
        gap: 0.5rem;
    }

    .tech-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

