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

html {
    scroll-behavior: smooth;
}

:root {
    /* Paleta Woomoza */
    --primary-color: #92131a;
    --primary-light: #BF1922;
    --primary-dark: #6b0e13;
    --accent-color: #BF1922;
    --dark-color: #111111;
    --gray-dark: #2a2a2a;
    --white: #ffffff;
    
    /* Cores de texto */
    --text-color: #2a2a2a;
    --text-light: #666666;
    --text-lighter: #999999;
    
    /* Fundos */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Limitar largura do conteúdo principal */
main {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 2.75rem; font-weight: 700; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* ===========================
   Header & Navigation
   =========================== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1.25rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 80px;
    width: auto;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}

.navbar-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.navbar-toggler {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-toggler span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

.navbar-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.navbar-menu .btn {
    margin-left: 1rem;
    white-space: nowrap;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.01em;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(191, 25, 34, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--dark-color);
    border-color: var(--border-color);
}

.btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    color: var(--dark-color);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(191, 25, 34, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.animated-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 25, 34, 0.05) 0%, transparent 70%);
    filter: blur(40px);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 10%;
    animation: float 20s ease-in-out infinite;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: 5%;
    animation: float 25s ease-in-out infinite reverse;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 20%;
    animation: float 30s ease-in-out infinite;
}

.animated-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191, 25, 34, 0.1), transparent);
    transform-origin: left;
}

.line-1 {
    width: 500px;
    top: 20%;
    left: -100px;
    animation: slide 15s linear infinite;
}

.line-2 {
    width: 400px;
    top: 60%;
    right: -100px;
    animation: slide 20s linear infinite reverse;
}

.line-3 {
    width: 600px;
    top: 80%;
    left: 10%;
    animation: slide 25s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(200%);
        opacity: 0;
    }
}

.hero-bg {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--gray-100);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
}

.hero-badge i {
    color: var(--primary-color);
    font-size: 1rem;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    line-height: 1.5;
    font-weight: 600;
}

.hero-form {
    margin: 0 auto;
    max-width: 650px;
}

.form-input-group {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 6px;
    overflow: hidden;
}

.form-input-hero {
    flex: 1;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 0;
    outline: none;
    font-family: inherit;
}

.form-input-hero:focus {
    border-color: var(--primary-color);
}

.btn-hero {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0;
    border: none;
    white-space: nowrap;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 500;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* ===========================
   Clients Section
   =========================== */
.clients-section {
    background: var(--gray-50);
    padding: 4rem 0;
    text-align: center;
}

.clients-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.clients-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2.5rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
    opacity: 0.6;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: opacity 0.3s ease;
}

.client-logo i {
    font-size: 2.5rem;
    color: var(--gray-dark);
}

.client-logo:hover {
    opacity: 1;
}

/* ===========================
   Stats Section
   =========================== */
.stats-section {
    background: var(--white);
    padding: 5rem 0;
}

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

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

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

/* ===========================
   Services Overview
   =========================== */
.services-overview {
    background: var(--white);
    padding: 6rem 0;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-overview-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--gray-50);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-overview-card:hover {
    background: var(--white);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.service-overview-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.service-overview-card:hover .service-overview-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.service-overview-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.service-overview-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===========================
   Portfolio Visual
   =========================== */
.portfolio-visual {
    background: var(--gray-50);
    padding: 6rem 0;
}

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

.portfolio-item {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.portfolio-item.large {
    grid-column: span 3;
    grid-row: span 2;
}

.portfolio-item.wide {
    grid-column: span 3;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.placeholder-image i {
    font-size: 3rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.portfolio-item:hover .placeholder-image i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.placeholder-image h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.placeholder-image p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

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

.section-intro h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-intro p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   Sections
   =========================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.section-header h2 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

.section-header p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-color);
    color: var(--dark-color);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(191, 25, 34, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===========================
   Service Cards
   =========================== */
.differentials-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.differential-card {
    text-align: left;
    padding: 2.5rem 2rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.differential-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.differential-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
    line-height: 1;
}

.differential-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.differential-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* ===========================
   Service Detail Pages
   =========================== */
.service-detail {
    padding: 60px 0;
}

.service-detail.alt {
    background: var(--gray-50);
}

.service-detail-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.service-detail-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--gray-100);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
    font-size: 2.5rem;
}

.service-detail-text h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.service-detail-text h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 0.625rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
}

.check-list i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* ===========================
   Solutions
   =========================== */
.solutions-section {
    background: var(--white);
    padding: 6rem 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.resource-card {
    display: block;
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.resource-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: var(--gray-50);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.resource-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.resource-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.0625rem;
    margin: 0;
}

.solution-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.solution-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Service Detail */
.solution-detail {
    padding: 60px 0;
}

.solution-detail.alt {
    background: var(--gray-50);
}

.solution-icon-large {
    width: 88px;
    height: 88px;
    margin: 0 auto 2rem;
    background: var(--gray-100);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
    font-size: 2.5rem;
}

.solution-detail-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.solution-detail-content h2 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.solution-detail-content h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.solution-features {
    margin-top: 3rem;
    text-align: left;
}

.solution-features h4 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
}

.feature-item i {
    color: var(--gray-dark);
    font-size: 1.5rem;
}

/* ===========================
   Process Section
   =========================== */
.process-section {
    padding: 5rem 0;
    background: var(--white);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 3rem auto 0;
    position: relative;
    gap: 1rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.875rem;
}

.timeline-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Legacy process steps for other pages */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
}

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

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

.process-step h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

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

/* ===========================
   About Section
   =========================== */
.about-section {
    padding: 3rem 0;
}

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

.about-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.about-content p:last-child {
    margin-bottom: 0;
}

.mission-vision-values {
    background: transparent;
    padding: 4rem 0;
    border-top: 1px solid #e5e5e5;
}

.mvv-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mvv-item h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.mvv-item p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.mvv-values ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mvv-values li {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    position: relative;
    padding-left: 1rem;
}

.mvv-values li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #999;
}

.why-choose {
    padding: 60px 0;
}

/* Responsive MVV Simple */
@media (max-width: 768px) {
    .mvv-simple {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .mission-vision-values {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .mvv-simple {
        gap: 2rem;
    }
    
    .mvv-item h3 {
        font-size: 0.8125rem;
    }
    
    .mvv-item p,
    .mvv-values li {
        font-size: 0.9375rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--gray-100);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
    font-size: 1.75rem;
}

.feature-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info-section h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
    font-size: 1.125rem;
}

.contact-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #D1FAE5;
    border: 1px solid #10B981;
    color: #065F46;
}

.alert-error {
    background: #FEE2E2;
    border: 1px solid #EF4444;
    color: #991B1B;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: var(--white);
    position: relative;
    color: var(--dark-color);
    text-align: center;
    padding: 5rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.cta-section::before {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(191, 25, 34, 0.3);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.25rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
}

.footer-section p {
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.2s ease;
    text-decoration: none;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.contact-info i {
    color: rgba(255,255,255,0.7);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}

/* ===========================
   Utility Classes
   =========================== */
.text-center {
    text-align: center;
}

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .navbar-toggler {
        display: flex;
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
    
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .navbar-nav a {
        padding: 1.25rem 1.5rem;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        font-size: 1.0625rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-nav a:last-child {
        border-bottom: none;
    }
    
    .navbar-nav a.active {
        background: var(--gray-50);
        color: var(--primary-color);
    }
    
    .navbar-nav a:active {
        background: var(--gray-100);
    }
    
    .navbar-menu .btn {
        margin: 1rem 1.5rem;
        width: calc(100% - 3rem);
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .solution-item {
        padding: 2rem 0;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline-marker {
        margin-bottom: 0.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
    }
    
    .service-detail-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    section {
        padding: 60px 0;
    }
    
    .services-section,
    .services-overview,
    .differentials-section {
        padding: 4rem 0;
    }
    
    /* Neil Patel style responsive */
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-overview-grid,
    .differentials-grid,
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.125rem;
    }
    
    .form-input-group {
        flex-direction: column;
    }
    
    .form-input-hero {
        border: 1px solid var(--border-color);
        border-radius: 6px 6px 0 0;
    }
    
    .btn-hero {
        border-radius: 0 0 6px 6px;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section ul {
        display: inline-block;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Neil Patel style mobile */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stats-grid,
    .services-overview-grid,
    .differentials-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.875rem;
    }
    
    .cta-content p {
        font-size: 1.0625rem;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-group .btn {
        width: 100%;
    }
    
    .form-input-hero {
        font-size: 0.9375rem;
        padding: 1rem 1.25rem;
    }
    
    .btn-hero {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
    }
    
    /* Footer mobile small */
    .footer-content {
        gap: 2rem;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
}

/* =================================================================
   Services Media Layout
   ================================================================= */

.services-media {
    padding: 4rem 0;
}

.service-media-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.service-media-item:last-child {
    margin-bottom: 0;
}

.service-media-item.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.service-media-item.reverse .service-media-image {
    order: 2;
}

.service-media-item.reverse .service-media-content {
    order: 1;
}

.service-media-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
}

.service-media-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    position: relative;
}

.service-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.service-image-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.service-media-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.service-media-content > p {
    font-size: 1.0625rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features i {
    color: #dc2626;
    font-size: 1.125rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-media-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
}

.service-media-content .btn i {
    font-size: 1rem;
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .service-media-item,
    .service-media-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
        margin-bottom: 3rem;
    }
    
    .service-media-item.reverse .service-media-image {
        order: 1;
    }
    
    .service-media-item.reverse .service-media-content {
        order: 2;
    }
    
    .service-media-content h2 {
        font-size: 1.625rem;
    }
    
    .service-image-placeholder i {
        font-size: 4rem;
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .services-media {
        padding: 2rem 0;
    }
    
    .service-media-item {
        padding: 0;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .service-media-content h2 {
        font-size: 1.375rem;
    }
    
    .service-media-content > p {
        font-size: 1rem;
    }
    
    .service-features li {
        font-size: 0.9375rem;
    }
    
    .service-image-placeholder i {
        font-size: 3rem;
    }
    
    .service-media-content .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

/* =================================================================
   Solutions Showcase Layout
   ================================================================= */

.solutions-showcase {
    padding: 3rem 0;
}

.solution-card {
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.solution-card.featured {
    border: 1px solid #666;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 1.5rem;
    background: #333;
    color: #fff;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.featured-badge i {
    font-size: 0.75rem;
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.solution-icon i {
    font-size: 1.75rem;
    color: #333;
}

.solution-title-group h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.125rem;
    letter-spacing: -0.01em;
}

.solution-tagline {
    font-size: 0.9375rem;
    color: #666;
    font-weight: 500;
    margin: 0;
}

.solution-description {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.solution-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    background: #f5f5f5;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.feature-badge:hover {
    background: #e9ecef;
    transform: translateX(2px);
}

.feature-badge i {
    color: #555;
    font-size: 0.9375rem;
    flex-shrink: 0;
}

.feature-badge span {
    font-size: 0.875rem;
    color: #333;
    font-weight: 500;
}

.solution-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.solution-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 0.625rem;
    padding-left: 0;
}

.solution-benefits li:last-child {
    margin-bottom: 0;
}

.solution-benefits i {
    color: #555;
    font-size: 0.9375rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.solution-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
}

.solution-card .btn i {
    font-size: 0.875rem;
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .solution-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .solution-header {
        gap: 0.875rem;
    }
    
    .solution-icon {
        width: 52px;
        height: 52px;
    }
    
    .solution-icon i {
        font-size: 1.5rem;
    }
    
    .solution-title-group h2 {
        font-size: 1.25rem;
    }
    
    .solution-tagline {
        font-size: 0.875rem;
    }
    
    .solution-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .solutions-showcase {
        padding: 2rem 0;
    }
    
    .solution-card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .solution-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .solution-icon {
        width: 48px;
        height: 48px;
    }
    
    .solution-icon i {
        font-size: 1.25rem;
    }
    
    .solution-title-group h2 {
        font-size: 1.125rem;
    }
    
    .solution-description {
        font-size: 0.875rem;
    }
    
    .feature-badge {
        padding: 0.5rem 0.75rem;
    }
    
    .solution-benefits li {
        font-size: 0.875rem;
    }
    
    .solution-card .btn {
        width: 100%;
        justify-content: center;
    }
    
    .featured-badge {
        right: 1rem;
        font-size: 0.6875rem;
        padding: 0.25rem 0.75rem;
    }
}

