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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
.text-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

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

/* Buttons */
.cta-button {
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.cta-button-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.cta-button-secondary:hover {
    background-color: white;
    color: #2563eb;
    transform: translateY(-2px);
}

/* Navigation */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-logo .logo-button {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: opacity 0.2s;
}

.nav-logo .logo-button:hover {
    opacity: 0.8;
}

.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }
}

.nav-links {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-left: 2.5rem;
}

.nav-link {
    color: #374151;
    background: none;
    border: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-cta-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-cta-desktop {
        display: block;
    }
}

.nav-mobile-toggle {
    display: block;
}

@media (min-width: 768px) {
    .nav-mobile-toggle {
        display: none;
    }
}

.mobile-menu-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #374151;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-button.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-button.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-mobile-menu {
    display: none;
    background-color: white;
    border-top: 1px solid #e5e7eb;
}

.nav-mobile-menu.active {
    display: block;
}

.nav-mobile-content {
    padding: 0.5rem 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-mobile-link {
    color: #374151;
    background: none;
    border: none;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
    text-align: left;
    width: 100%;
    text-decoration: none;
}

.nav-mobile-link:hover {
    color: #2563eb;
}

.mobile-cta {
    margin-top: 1rem;
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding-top: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-background-elements {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-bg-circle-1 {
    top: 25%;
    left: 25%;
    width: 8rem;
    height: 8rem;
    background-color: #2563eb;
}

.hero-bg-circle-2 {
    bottom: 25%;
    right: 25%;
    width: 12rem;
    height: 12rem;
    background-color: #059669;
}

.hero-container {
    padding: 5rem 1rem;
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-button {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
}

.hero-button:hover {
    transform: translateY(-2px);
}

.hero-button-primary {
    background-color: #2563eb;
    color: white;
}

.hero-button-primary:hover {
    background-color: #1d4ed8;
}

.hero-button-secondary {
    border: 2px solid #2563eb;
    color: #2563eb;
    background: transparent;
}

.hero-button-secondary:hover {
    background-color: #2563eb;
    color: white;
}

.hero-button-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s;
}

.hero-button:hover .hero-button-icon {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
}

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

.hero-stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.hero-visual {
    position: relative;
    animation: slideUp 0.6s ease-out;
}

.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.hero-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.hero-card:hover {
    transform: translateY(-4px);
}

.hero-card-2 {
    margin-top: 2rem;
}

.hero-card-3 {
    grid-column: span 2;
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.hero-card-icon {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.hero-card-2 .hero-card-icon {
    color: #059669;
}

.hero-card-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.hero-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.hero-card-trend {
    font-size: 0.875rem;
    color: #059669;
}

.hero-progress-bar {
    width: 100%;
    background-color: #e5e7eb;
    border-radius: 9999px;
    height: 0.75rem;
    margin-bottom: 0.5rem;
}

.hero-progress-fill {
    background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    height: 0.75rem;
    border-radius: 9999px;
    width: 80%;
}

.hero-card-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-button {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s;
}

.scroll-button:hover {
    color: #2563eb;
}

.scroll-button svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: white;
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-top: 2rem;
}

.about-stat {
    text-align: left;
}

.about-stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    color: #6b7280;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

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

.feature-card {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease-in-out;
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #6b7280;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-description {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.service-features li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background-color: #059669;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.service-link {
    color: #2563eb;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
}

.service-link:hover {
    color: #1d4ed8;
}

.service-link svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s;
}

.service-link:hover svg {
    transform: translateX(4px);
}

.services-cta {
    text-align: center;
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.services-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.services-cta-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Cases Section */
.cases-section {
    padding: 5rem 0;
    background-color: white;
}

.cases-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.case-card {
    background-color: #f9fafb;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.case-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.case-header {
    background-color: white;
    border-bottom: 1px solid #f3f4f6;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.case-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
}

.case-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.case-icon-blue {
    background-color: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.case-icon-green {
    background-color: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.case-icon-purple {
    background-color: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

.case-content {
    padding: 1.5rem;
}

.case-result {
    margin-bottom: 1rem;
}

.case-number {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.case-icon-blue + .case-content .case-number {
    color: #2563eb;
}

.case-icon-green + .case-content .case-number {
    color: #059669;
}

.case-icon-purple + .case-content .case-number {
    color: #9333ea;
}

.case-metric {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-description {
    color: #6b7280;
    line-height: 1.6;
}

.cases-cta {
    text-align: center;
    background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    padding: 2rem;
    border-radius: 1rem;
    color: white;
}

.cases-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cases-cta-description {
    color: rgba(219, 234, 254, 1);
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cases-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cases-cta-buttons {
        flex-direction: row;
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

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

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: none;
}

.form-submit {
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.form-submit svg {
    width: 1rem;
    height: 1rem;
}

.form-success {
    text-align: center;
    padding: 2rem;
    display: none;
}

.form-success.active {
    display: block;
}

.form-success svg {
    width: 4rem;
    height: 4rem;
    color: #059669;
    margin: 0 auto 1rem;
}

.form-success h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: #6b7280;
}

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

.contact-info-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

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

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

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-info-icon-blue {
    background-color: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.contact-info-icon-green {
    background-color: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.contact-info-icon-linkedin {
    background-color: rgba(0, 119, 181, 0.1);
    color: #0077b5;
}

.contact-info-label {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.contact-info-link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-link:hover {
    color: #1d4ed8;
}

.contact-guarantee {
    background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    padding: 2rem;
    border-radius: 1rem;
    color: white;
}

.contact-guarantee-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-guarantee-description {
    color: rgba(219, 234, 254, 1);
    margin-bottom: 1rem;
}

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

.contact-guarantee-list li {
    color: rgba(219, 234, 254, 1);
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    max-width: 24rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #374151;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    text-decoration: none;
    color: white;
}

.footer-social-link:hover {
    background-color: #2563eb;
}

.footer-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-links-title,
.footer-contact-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links-list,
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link,
.footer-contact-link {
    color: #d1d5db;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 0;
    text-decoration: none;
}

.footer-link:hover,
.footer-contact-link:hover {
    color: white;
}

.footer-contact-cta {
    padding-top: 0.5rem;
}

.footer-cta-button {
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.footer-cta-button:hover {
    background-color: #1d4ed8;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

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

.footer-legal-link {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-legal-link:hover {
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(-50%, 0, 0);
    }
    40%, 43% {
        transform: translate3d(-50%, -10px, 0);
    }
    70% {
        transform: translate3d(-50%, -5px, 0);
    }
    90% {
        transform: translate3d(-50%, -2px, 0);
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .hero-container {
        padding: 3rem 1rem;
    }
    
    .about-section,
    .services-section,
    .cases-section,
    .contact-section {
        padding: 3rem 0;
    }
}
