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

:root {
    --bg-dark: #000000;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-color: #333333;
    --pink: #FD5A93;
    --cyan: #4793AA;
    --green: #009D68;
    --purple: #7B43C4;
    --purple-light: #A44EFF;
    --purple-glow: #C691FF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 64px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1384px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-name {
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
}

.logo-surname {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-item {
    padding: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.menu-item:hover {
    opacity: 0.8;
}

.menu-item.active {
    border-bottom: 2px solid var(--text-white);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background: var(--text-white);
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-whatsapp img {
    width: 20px;
    height: 22px;
}

.btn-whatsapp span {
    font-size: 14px;
    font-weight: 600;
    color: #0D0D0D;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 110px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 840px;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1512px;
    margin: 0 auto;
    padding: 80px 76px;
    min-height: calc(100vh - 110px);
    background-color: #010101;
}

.hero-text {
    max-width: 802px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    width: fit-content;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.status-badge span {
    font-size: 16px;
    font-weight: 500;
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.22;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    height: 45px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--text-white);
    color: #1F1F1F;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 510px;
    height: auto;
    object-fit: cover;
}

.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-indicator img {
    width: 48px;
    height: 48px;
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.22;
    text-align: center;
    margin-bottom: 40px;
}

/* Services Section */
.services {
    padding: 80px 64px;
    max-width: 1512px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    gap: 24px;
}

.service-card {
    flex: 1;
    background: #000000;
    border: 1px solid #333333;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-card-inner {
    padding: 32px;
    display: flex;
    gap: 16px;
}

.service-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.service-icon {
    width: 32px;
    height: 32px;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-info h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-white);
}

.service-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-muted);
    min-height: 66px;
}

.service-features-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 16px;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-feature svg {
    flex-shrink: 0;
}

.service-feature span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-muted);
}

.btn-service-new {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 24px;
    height: 45px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 100px;
    background: transparent;
    border: 1px solid;
    transition: all 0.3s ease;
}

.btn-pink-new {
    border-color: #FD5A93;
    color: #FD5A93;
}

.btn-pink-new:hover {
    background: #FD5A93;
    color: #000000;
}

.btn-cyan-new {
    border-color: #3C8396;
    color: #3C8396;
}

.btn-cyan-new:hover {
    background: #3C8396;
    color: #000000;
}

.btn-green-new {
    border-color: #009D68;
    color: #009D68;
}

.btn-green-new:hover {
    background: #009D68;
    color: #000000;
}

/* Legacy button styles for pricing */
.btn-service {
    width: 100%;
    background: transparent;
    border: 1px solid;
}

.btn-pink {
    border-color: var(--pink);
    color: var(--pink);
}

.btn-pink:hover {
    background: var(--pink);
    color: var(--bg-dark);
}

.btn-cyan {
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn-cyan:hover {
    background: var(--cyan);
    color: var(--bg-dark);
}

.btn-green {
    border-color: var(--green);
    color: var(--green);
}

.btn-green:hover {
    background: var(--green);
    color: var(--bg-dark);
}

/* Pricing Section */
.pricing {
    padding: 40px 64px 80px;
    max-width: 1512px;
    margin: 0 auto;
}

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

.pricing-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-header {
    position: relative;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-header.premium {
    background: rgba(0, 0, 0, 0.7);
}

.pricing-icon {
    width: 32px;
    height: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.22;
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.14;
}

.badge-cyan {
    background: var(--cyan);
    color: #232222;
}

.badge-green {
    background: var(--green);
    color: #222222;
}

.badge-purple {
    background: var(--purple);
    color: var(--text-white);
}

.badge-dark {
    background: transparent;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #0B0B0B;
}

.pricing-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 0;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-feature img {
    width: 20px;
    height: 20px;
}

.pricing-feature span {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-muted);
}

.pricing-divider {
    height: 1px;
    background: var(--border-color);
}

.pricing-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.price-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
}

.btn-pricing {
    width: 100%;
}

.btn-pink-outline {
    background: transparent;
    border: 1px solid var(--pink);
    color: var(--pink);
}

.btn-pink-outline:hover {
    background: var(--pink);
    color: var(--bg-dark);
}

.btn-cyan-solid {
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
}

.btn-cyan-solid:hover {
    background: var(--cyan);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(71, 147, 170, 0.3);
}

.btn-green-solid {
    background: transparent;
    border: 1px solid var(--green);
    color: var(--green);
}

.btn-green-solid:hover {
    background: var(--green);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 157, 104, 0.3);
}

/* Consultation Section */
.consultation {
    padding: 40px 64px 80px;
    max-width: 1512px;
    margin: 0 auto;
}

.consultation-card {
    position: relative;
    background: linear-gradient(135deg, rgba(29, 41, 61, 1) 0%, rgba(15, 23, 43, 1) 100%);
    border-radius: 16px;
    padding: 32px;
    overflow: hidden;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.04);
}

.consultation-glow {
    position: absolute;
    width: 496px;
    height: 431px;
    top: 0;
    right: 396px;
    background: rgba(173, 70, 255, 0.2);
    filter: blur(128px);
    border-radius: 50%;
    pointer-events: none;
}

.consultation-inner {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 24px;
    padding: 16px;
}

.consultation-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.consultation-badges {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-container {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(164, 78, 255, 0.7);
    border-radius: 16px;
}

.badge-purple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    height: 25px;
    background: #7B43C4;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
}

.badge-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 2px 8px;
    height: 25px;
    background: #FFFFFF;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #0B0B0B;
}

.consultation-title-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.consultation-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.11;
    color: var(--text-white);
}

.consultation-minutes {
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
    color: var(--text-white);
}

.consultation-desc {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-muted);
}

.ideal-for-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ideal-for-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ideal-for-header span {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-white);
}

.ideal-for-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ideal-for-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ideal-for-item svg {
    flex-shrink: 0;
}

.ideal-for-item span {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-muted);
}

.btn-consultation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    height: 45px;
    background: #7B43C4;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-consultation:hover {
    background: #8B53D4;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(123, 67, 196, 0.4);
}

/* Empresas Section */
.empresas {
    padding: 40px 64px;
    text-align: center;
    max-width: 1512px;
    margin: 0 auto;
}

.empresas .section-title {
    margin-bottom: 40px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
}

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

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #000000 0%, transparent 100%);
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 64px;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

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

.empresa-logo {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%) brightness(2);
    flex-shrink: 0;
}

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

/* Project Section */
.project {
    padding: 40px 64px 80px;
    max-width: 1512px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    background: linear-gradient(135deg, rgba(27, 27, 27, 1) 0%, rgba(29, 0, 47, 1) 100%);
    border-radius: 16px;
    padding: 32px;
    overflow: hidden;
}

.project-glow {
    position: absolute;
    width: 496px;
    height: 431px;
    top: 150px;
    left: 216px;
    background: rgba(87, 87, 87, 0.2);
    filter: blur(128px);
    border-radius: 50%;
    pointer-events: none;
}

.project-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
}

.project-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-label {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.11;
}

.project-logo {
    padding: 8px 16px;
}

.project-logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-muted);
}

.project-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.project-desc {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-muted);
}

.deliverables {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.deliverables-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.deliverables-header span {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.deliverables-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.deliverable-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.deliverable-item svg,
.deliverable-item img {
    flex-shrink: 0;
}

.deliverable-icon {
    width: 24px;
    height: 24px;
}

.deliverable-item span {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-muted);
}

.deliverable-item.highlight span {
    color: rgba(255, 255, 255, 0.9);
}

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

.result-label {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-muted);
}

.result p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-muted);
}

.project-preview {
    width: 700px;
    flex-shrink: 0;
}

.preview-placeholder {
    width: 100%;
    height: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-muted);
}

.project-preview-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
}

/* CTA Section */
.cta {
    padding: 40px 64px 80px;
    max-width: 1512px;
    margin: 0 auto;
}

.cta-card {
    background: transparent;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.22;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-muted);
}

.btn-cta {
    background: var(--text-white);
    color: var(--bg-dark);
    flex-shrink: 0;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 20px 64px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1384px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-img {
    width: 60px;
    height: 59px;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-name {
    font-size: 24px;
    font-weight: 400;
    line-height: 0.83;
}

.footer-surname {
    font-size: 24px;
    font-weight: 700;
    line-height: 0.83;
}

.copyright {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.22;
}

.btn-whatsapp-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background: var(--text-white);
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-whatsapp-footer img {
    width: 20px;
    height: 22px;
}

.btn-whatsapp-footer span {
    font-size: 14px;
    font-weight: 600;
    color: #0D0D0D;
}

.btn-whatsapp-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        flex-wrap: wrap;
    }
    
    .service-card {
        flex: 1 1 calc(50% - 12px);
        min-width: 300px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-content {
        flex-direction: column;
    }
    
    .project-preview {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .header {
        padding: 15px 32px;
    }
    
    .menu {
        display: none;
    }
    
    .hero-content {
        flex-direction: column;
        padding: 40px 32px;
    }
    
    .hero-image {
        width: 100%;
        text-align: center;
    }
    
    .hero-image img {
        width: 100%;
        max-width: 400px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .services,
    .pricing,
    .consultation,
    .project,
    .cta {
        padding: 40px 32px;
    }
    
    .services-grid {
        flex-direction: column;
    }
    
    .service-card {
        flex: 1 1 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-name,
    .logo-surname {
        font-size: 18px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services,
    .pricing,
    .consultation,
    .project,
    .cta {
        padding: 30px 20px;
    }
    
    .consultation-title h3 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.service-card,
.pricing-card,
.consultation-card,
.project-card,
.cta-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Smooth scrolling indicator hover */
.scroll-indicator:hover {
    opacity: 0.7;
}

