/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 100px; position: relative; overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, #eee8e0 40%, var(--cream) 100%);
}
.hero-bg-pattern {
    position: absolute; inset: 0; z-index: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(var(--red-rgb), 0.04) 0%, transparent 50%),
                       radial-gradient(circle at 20% 80%, rgba(var(--navy-rgb), 0.04) 0%, transparent 50%);
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 1;
}
.hero-content { animation: fadeInLeft 0.8s ease-out; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; background: var(--white); border-radius: var(--radius-full);
    font-size: 0.82rem; font-weight: 600; color: var(--navy);
    box-shadow: var(--shadow-sm); margin-bottom: 28px;
    border: 1px solid var(--beige);
}
.hero-badge-dot {
    width: 8px; height: 8px; background: var(--red);
    border-radius: 50%; animation: pulse 2s infinite;
}
.hero-title {
    font-family: var(--font-display); font-size: 3.4rem; font-weight: 700;
    color: var(--navy); line-height: 1.12; margin-bottom: 22px;
}
.hero-title span { color: var(--red); position: relative; }
.hero-desc {
    font-size: 1.05rem; color: var(--charcoal-light);
    line-height: 1.8; margin-bottom: 36px; max-width: 500px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
    display: flex; align-items: center; gap: 16px;
    margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--beige);
}
.hero-trust-avatars { display: flex; }
.hero-trust-avatars .avatar {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.75rem; font-weight: 700;
    border: 2px solid var(--cream); margin-left: -8px;
}
.hero-trust-avatars .avatar:first-child { margin-left: 0; }
.hero-trust-text { font-size: 0.88rem; color: var(--charcoal-light); line-height: 1.5; }
.hero-trust-text strong { color: var(--navy); }

.hero-visual { animation: fadeInRight 0.8s ease-out; position: relative; }
.hero-image-card { position: relative; }
.hero-image-card img {
    max-height: 520px; width: auto; margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(var(--navy-rgb), 0.12));
    animation: float 5s ease-in-out infinite;
}
.hero-float-card {
    position: absolute; background: white; border-radius: var(--radius-md);
    padding: 14px 18px; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 10px;
    animation: float 4s ease-in-out infinite;
}
.hero-float-card strong { font-size: 0.88rem; color: var(--navy); display: block; }
.hero-float-card small { font-size: 0.75rem; color: var(--charcoal-light); }
.hero-float-1 { top: 60px; right: -10px; animation-delay: 0.5s; }
.hero-float-2 {
    bottom: 80px; left: 0; text-align: center;
    animation-delay: 1s;
}
.hero-float-stat {
    font-family: var(--font-display); font-size: 1.5rem;
    font-weight: 700; color: var(--red);
}

/* ===== CLIENTS MARQUEE ===== */
.clients-marquee {
    padding: 40px 0; background: var(--white);
    border-top: 1px solid var(--beige); border-bottom: 1px solid var(--beige);
}
.clients-label {
    text-align: center; font-size: 0.82rem; font-weight: 600;
    color: var(--charcoal-light); text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 24px;
}
.marquee-wrapper { overflow: hidden; position: relative; }
.marquee-wrapper::before, .marquee-wrapper::after {
    content: ''; position: absolute; top: 0; width: 120px;
    height: 100%; z-index: 2;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.marquee-track {
    display: flex; gap: 48px; animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-item {
    font-family: var(--font-display); font-size: 1.1rem;
    font-weight: 700; color: var(--beige); white-space: nowrap;
    letter-spacing: 1px;
}

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.about-image-wrapper { position: relative; }
.about-image-wrapper img {
    border-radius: var(--radius-xl); max-height: 480px; margin: 0 auto;
    box-shadow: var(--shadow-xl);
}
.about-experience-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--red); color: white;
    border-radius: var(--radius-lg); padding: 20px 24px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: var(--shadow-red);
}
.about-exp-number {
    font-family: var(--font-display); font-size: 2rem; font-weight: 700;
}
.about-exp-label { font-size: 0.8rem; line-height: 1.3; font-weight: 600; }
.about-text {
    font-size: 0.95rem; color: var(--charcoal-light);
    line-height: 1.8; margin-bottom: 16px;
}
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.about-feature {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px; background: var(--cream); border-radius: var(--radius-md);
}
.about-feature-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: rgba(var(--red-rgb), 0.1); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; color: var(--red);
}
.about-feature strong { font-size: 0.92rem; color: var(--navy); display: block; margin-bottom: 2px; }
.about-feature p { font-size: 0.82rem; color: var(--charcoal-light); margin: 0; }

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px 28px; transition: var(--transition);
    border: 1px solid var(--beige); position: relative; overflow: hidden;
}
.service-card::after {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--red), var(--navy));
    transform: scaleX(0); transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px); box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card-number {
    font-family: var(--font-display); font-size: 2.5rem;
    font-weight: 700; color: rgba(var(--navy-rgb), 0.06);
    position: absolute; top: 16px; right: 20px;
}
.service-card-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: white; margin-bottom: 20px;
}
.service-card-title {
    font-family: var(--font-display); font-size: 1.15rem;
    font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.service-card-desc { font-size: 0.88rem; color: var(--charcoal-light); line-height: 1.7; margin-bottom: 16px; }
.service-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.85rem; font-weight: 600; color: var(--red);
    transition: var(--transition);
}
.service-card-link:hover { gap: 10px; }

/* ===== WORKFLOW ===== */
.workflow { background: var(--navy); color: white; }
.workflow-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.workflow-step { text-align: center; padding: 24px 16px; position: relative; }
.workflow-step-num {
    font-family: var(--font-display); font-size: 0.85rem;
    font-weight: 700; color: white;
    width: 40px; height: 40px; background: var(--red);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px;
    box-shadow: var(--shadow-red);
}
.workflow-step-img {
    width: 150px; height: 150px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
}
.workflow-step-img img {
    max-width: 100%; max-height: 100%;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}
.workflow-step-title {
    font-family: var(--font-display); font-size: 1rem;
    font-weight: 700; margin-bottom: 8px;
}
.workflow-step-desc { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.workflow-arrow {
    position: absolute; right: -16px; top: 50%;
    transform: translateY(-50%); color: rgba(255,255,255,0.2);
    display: none;
}

/* ===== STATS ===== */
.stats-section {
    padding: 60px 0; background: var(--white);
    border-top: 1px solid var(--beige); border-bottom: 1px solid var(--beige);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; padding: 24px; }
.stat-icon {
    width: 60px; height: 60px; margin: 0 auto 16px;
    background: rgba(var(--red-rgb), 0.08); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; color: var(--red);
}
.stat-number {
    font-family: var(--font-display); font-size: 2.2rem;
    font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.stat-label { font-size: 0.88rem; color: var(--charcoal-light); font-weight: 500; }

/* ===== ADVANTAGES ===== */
.advantages { background: var(--cream); }
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.advantage-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px 24px; text-align: center;
    border: 1px solid var(--beige); transition: var(--transition);
}
.advantage-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-lg);
    border-color: rgba(var(--red-rgb), 0.2);
}
.advantage-icon {
    width: 56px; height: 56px; margin: 0 auto 18px;
    background: rgba(var(--red-rgb), 0.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--red);
    transition: var(--transition);
}
.advantage-card:hover .advantage-icon {
    background: var(--red); color: white; transform: scale(1.1);
}
.advantage-title {
    font-family: var(--font-display); font-size: 1.05rem;
    font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.advantage-desc { font-size: 0.85rem; color: var(--charcoal-light); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: var(--cream); border-radius: var(--radius-lg);
    padding: 32px; border: 1px solid var(--beige);
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-text {
    font-size: 0.92rem; color: var(--charcoal); line-height: 1.8;
    margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--navy); color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem;
}
.testimonial-name { font-size: 0.9rem; color: var(--navy); display: block; }
.testimonial-role { font-size: 0.78rem; color: var(--charcoal-light); }

/* ===== FAQ ===== */
.faq-section { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.faq-item {
    background: var(--white); border-radius: var(--radius-md);
    margin-bottom: 12px; border: 1px solid var(--beige);
    overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(var(--red-rgb), 0.2); }
.faq-item.open { border-color: var(--red); }
.faq-question {
    width: 100%; padding: 20px 24px; background: none; border: none;
    cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; gap: 16px; font-family: var(--font-primary);
    font-size: 0.92rem; font-weight: 600; color: var(--navy); text-align: left;
}
.faq-chevron { transition: var(--transition); color: var(--charcoal-light); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--red); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 24px 20px; font-size: 0.88rem;
    color: var(--charcoal-light); line-height: 1.7;
}

/* ===== CTA CONTACT ===== */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: white; position: relative; overflow: hidden; padding: 100px 0;
}
.cta-bg-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(var(--red-rgb), 0.1), transparent 50%),
                       radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03), transparent 50%);
}
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.cta-title {
    font-family: var(--font-display); font-size: 2.4rem;
    font-weight: 700; margin-bottom: 16px; line-height: 1.2;
}
.cta-desc {
    font-size: 1rem; color: rgba(255,255,255,0.75);
    line-height: 1.7; margin-bottom: 32px;
}
.cta-contact-items { display: flex; flex-direction: column; gap: 16px; }
.cta-contact-item {
    display: flex; align-items: center; gap: 16px;
    padding: 16px; background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.08);
}
.cta-contact-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: rgba(var(--red-rgb), 0.15); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; color: var(--red);
}
.cta-contact-item strong { display: block; margin-bottom: 2px; }
.cta-contact-item div:last-child { font-size: 0.88rem; color: rgba(255,255,255,0.8); }

.cta-form-wrapper {
    background: var(--white); border-radius: var(--radius-xl);
    padding: 40px; box-shadow: var(--shadow-xl);
}
.cta-form-title {
    font-family: var(--font-display); font-size: 1.3rem;
    font-weight: 700; color: var(--navy); margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: 0.82rem; font-weight: 600;
    color: var(--navy); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1px solid var(--beige);
    border-radius: var(--radius-sm); font-family: var(--font-primary);
    font-size: 0.9rem; color: var(--charcoal);
    background: var(--cream); transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--red); box-shadow: 0 0 0 3px rgba(var(--red-rgb), 0.1);
}
.form-group textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.8); padding: 80px 0 0; }
.footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 40px; margin-bottom: 16px; filter: brightness(10); }
.footer-brand-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: white; border-color: var(--red); }
.footer-heading {
    font-family: var(--font-display); font-size: 0.95rem;
    font-weight: 700; color: white; margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 0.88rem; color: rgba(255,255,255,0.5);
    transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--red); padding-left: 4px; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.88rem; color: rgba(255,255,255,0.5);
    margin-bottom: 14px; line-height: 1.5;
}
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; font-size: 0.82rem; color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: var(--transition-fast); }
.footer-bottom-links a:hover { color: var(--red); }

/* ===== RESPONSIVE ===== */
@media (min-width: 1025px) {
    .workflow-arrow { display: block; }
}
@media (max-width: 1024px) {
    .hero-title { font-size: 2.6rem; }
    .hero-grid { gap: 40px; }
    .workflow-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-image-card img { max-height: 300px; }
    .hero-float-card { display: none; }
    .hero-title { font-size: 2rem; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-experience-badge { right: 10px; bottom: -10px; }
    .services-grid { grid-template-columns: 1fr; }
    .workflow-grid { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-layout { grid-template-columns: 1fr; gap: 32px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .cta-title { font-size: 1.8rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .hero-trust { flex-direction: column; text-align: center; }
    .footer-top { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
}
