/**
 * ===========================================
 * MANLAR ESTUDIO CONTABLE - LANDING PAGE STYLES
 * Diseño Minimalista Profesional
 * ===========================================
 */

/* ============================================
   SECTION A - DARK NAVY STRIP (MINIMALIST)
   ============================================ */

.navy-strip {
    background: #1e3a8a;
    padding: 56px 0 180px 0;
    position: relative;
}

.navy-strip-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.navy-strip-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 40px;
}

.navy-strip-items {
    display: flex;
    justify-content: flex-start;
    gap: 80px;
}

.navy-strip-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navy-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.navy-icon-box svg {
    color: rgba(255, 255, 255, 0.85);
    width: 22px;
    height: 22px;
}

.navy-strip-item h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    margin: 0;
    letter-spacing: 0.01em;
}

/* ============================================
   SECTION B - OVERLAPPING CARD
   ============================================ */

.overlap-section {
    background: #fafbfc;
    padding: 0 0 80px 0;
    margin-top: -120px;
    position: relative;
    z-index: 2;
}

.overlap-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.overlap-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    color: #1e3a8a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.overlap-accent-line {
    width: 28px;
    height: 2px;
    background: #1e3a8a;
    margin-bottom: 24px;
}

.overlap-content p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: #64748b;
    margin: 0;
    max-width: 420px;
}

.overlap-image {
    border-radius: 8px;
    overflow: hidden;
    height: 340px;
}

.overlap-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   RESPONSIVE - MOBILE FIRST
   ============================================ */

@media (max-width: 968px) {

    /* Navy Strip */
    .navy-strip {
        padding: 60px 0 120px 0;
    }

    .navy-strip-line {
        max-width: 100%;
    }

    .navy-strip-items {
        flex-direction: column;
        gap: 40px;
        max-width: 100%;
    }

    .navy-strip-item {
        gap: 20px;
    }

    .navy-icon-box {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .navy-strip-item h3 {
        font-size: 1.25rem;
    }

    /* Overlap Card */
    .overlap-section {
        margin-top: -80px;
        padding: 0 0 80px 0;
    }

    .overlap-card {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 48px 32px;
        border-radius: 24px;
        margin: 0 auto;
        max-width: 100%;
    }

    .overlap-content h2 {
        font-size: 2rem;
    }

    .overlap-image {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .overlap-content h2 {
        font-size: 1.75rem;
    }

    .overlap-card {
        padding: 32px 24px;
    }

    .overlap-image {
        height: 320px;
    }
}

/* ============================================
   SECTION 1 - DARK VALUE STRIP
   ============================================ */

.value-strip {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 80px 0;
    position: relative;
}

.value-strip-label {
    color: #60a5fa;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.value-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
}

.value-strip-item {
    text-align: left;
}

.value-strip-icon-box {
    width: 64px;
    height: 64px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.value-strip-icon-box svg {
    color: white;
}

.value-strip-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.value-strip-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   SECTION 2 - FEATURE BLOCK (Text + Image)
   ============================================ */

.feature-block {
    padding: 120px 0;
    background: white;
}

.feature-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    transition: transform 600ms ease-out, box-shadow 600ms ease-out;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-content h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1e3a8a;
    margin-bottom: 24px;
}

.feature-accent-line {
    width: 64px;
    height: 3px;
    background: #60a5fa;
    margin-bottom: 32px;
}

.feature-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.feature-text p:last-child {
    margin-bottom: 0;
}

.feature-image-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   SECTION 3 - THREE CIRCLES
   ============================================ */

.three-circles {
    padding: 120px 0;
    background: #f9fafb;
}

.three-circles-header {
    text-align: center;
    margin-bottom: 80px;
}

.three-circles-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.three-circles-accent-line {
    width: 64px;
    height: 3px;
    background: #60a5fa;
    margin: 0 auto;
}

.three-circles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
}

.circle-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.9s ease-out forwards;
}

.circle-item:nth-child(1) {
    animation-delay: 0.2s;
}

.circle-item:nth-child(2) {
    animation-delay: 0.4s;
}

.circle-item:nth-child(3) {
    animation-delay: 0.6s;
}

.circle-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #60a5fa;
    overflow: hidden;
    margin: 0 auto 32px;
    position: relative;
    box-shadow: 0 8px 24px rgba(96, 165, 250, 0.25);
    transition: transform 500ms ease-out, box-shadow 500ms ease-out;
}

.circle-item:hover .circle-image {
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(96, 165, 250, 0.35);
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.circle-item h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.circle-accent-line {
    width: 48px;
    height: 2px;
    background: #60a5fa;
    margin: 0 auto 24px;
}

.circle-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
}

/* ============================================
   SECTION 4 - TESTIMONIAL
   ============================================ */

.testimonial-section {
    padding: 120px 0;
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: start;
}

.testimonial-left h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.testimonial-accent-line {
    width: 48px;
    height: 3px;
    background: #60a5fa;
    margin-bottom: 40px;
}

.testimonial-author {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1e3a8a;
    margin-bottom: 4px;
}

.testimonial-company {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #60a5fa;
}

.testimonial-bubble {
    background: #e0f2fe;
    border-radius: 16px;
    padding: 48px;
    position: relative;
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.08);
    transition: transform 500ms ease-out, box-shadow 500ms ease-out;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.testimonial-bubble:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.12);
}

.testimonial-text-main {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1e3a8a;
    margin-bottom: 24px;
}

.testimonial-text-secondary {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 24px;
}

.testimonial-recommendation {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
}

.testimonial-bubble strong {
    font-weight: 700;
    color: #1e3a8a;
}

/* ============================================
   SECTION 5 - FULL-WIDTH BACKGROUND CTA
   ============================================ */

.cta-background {
    background-image: url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?w=1920&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 160px 0;
    position: relative;
}

.cta-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(30, 64, 175, 0.9) 100%);
}

.cta-background-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.cta-quote {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.4;
    color: white;
    margin-bottom: 32px;
    font-style: italic;
}

.cta-author {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 4px;
}

.cta-company {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.btn-cta-bg {
    background: #10b981;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-bg:hover {
    background: #059669;
    transform: translateX(4px);
}

.btn-cta-bg svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   FOOTER REDESIGN
   ============================================ */

.footer {
    background: #1e3a8a;
    padding: 80px 0 40px;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   RESPONSIVE - MOBILE FIRST
   ============================================ */

@media (max-width: 968px) {

    /* Value Strip */
    .value-strip {
        padding: 60px 0;
    }

    .value-strip-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .value-strip-item {
        text-align: center;
    }

    .value-strip-icon-box {
        margin-left: auto;
        margin-right: auto;
    }

    /* Feature Block */
    .feature-block {
        padding: 80px 0;
    }

    .feature-card {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 48px 32px;
    }

    .feature-content h2 {
        font-size: 2rem;
    }

    /* Three Circles */
    .three-circles {
        padding: 80px 0;
    }

    .three-circles-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .three-circles-header h2 {
        font-size: 2rem;
    }

    /* Testimonial */
    .testimonial-section {
        padding: 80px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-left {
        text-align: center;
    }

    .testimonial-accent-line {
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-bubble {
        padding: 32px 24px;
    }

    /* CTA Background */
    .cta-background {
        padding: 100px 0;
    }

    .cta-quote {
        font-size: 1.75rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 640px) {
    .feature-content h2 {
        font-size: 1.75rem;
    }

    .three-circles-header h2 {
        font-size: 1.75rem;
    }

    .cta-quote {
        font-size: 1.5rem;
    }

    .circle-image {
        width: 160px;
        height: 160px;
    }
}