/* -------------------------------------------------------------------------- */
/*                              GLOBAL STYLES                                 */
/* -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #e8e2f5 0%, #f5f0ff 30%, #fff5e6 70%, #ffe0e6 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* -------------------------------------------------------------------------- */
/*                       PROCESS HERO SECTION (SECOND)                        */
/* -------------------------------------------------------------------------- */
.process-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.process-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Video Wrapper - Clean, No Border/Shadow */
.video-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.process-video {
    width: 100%;
    height: 450px;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
}

/* Hero Text Content */
.hero-text-content {
    padding: 40px 0;
}

.massive-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    color: #000000;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.emphasis-text {
    color: #000000;
    font-style: normal;
}

.hero-description {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 50px;
    max-width: 600px;
    font-weight: 400;
}

/* CTA Button */
.hero-cta-buttons {
    padding-top: 30px;
    display: flex;
    gap: 20px;
}

.btn-explore {
    padding: 18px 36px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    background: #000000;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-explore:hover {
    background: #FFFFFF;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-explore svg {
    transition: transform 0.3s ease;
}

.btn-explore:hover svg {
    transform: translateY(3px);
}

/* ---------------------- Responsive: Process Hero Section ---------------------- */
@media (max-width: 1200px) {
    .process-hero-container {
        gap: 60px;
    }

    .massive-heading {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .process-video {
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .process-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .video-wrapper {
        order: 2;
    }

    .hero-text-content {
        order: 1;
        padding: 20px 0;
    }

    .massive-heading {
        font-size: 2.2rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.15rem;
    }

    .hero-cta-buttons {
        justify-content: center;
    }

    .process-video {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .process-hero-section {
        padding: 60px 15px;
        min-height: auto;
    }

    .massive-heading {
        font-size: 1.9rem;
        letter-spacing: -1px;
        margin-bottom: 25px;
    }

    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-top: 20px;
    }

    .btn-explore {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .process-video {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .process-hero-section {
        padding: 40px 15px;
    }

    .massive-heading {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .process-video {
        height: 220px;
    }

    .btn-explore {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                       NOTION-STYLE HERO SECTION (FIRST)                    */
/* -------------------------------------------------------------------------- */
.notion-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

.notion-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Hero Visual - Video */
.hero-visual {
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 200px;
    object-fit: contain;
}

/* Hero Headline */
.hero-headline {
    margin-bottom: 20px;
}

.hero-headline h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #000000;
    margin: 0;
    letter-spacing: -2px;
}

/* Hero Content */
.hero-content {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-content .hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #37352F;
    margin: 0;
}

/* CTA Buttons */
.btn-primary-notion,
.btn-secondary-notion {
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
}

.btn-primary-notion {
    background: #2383E2;
    color: #FFFFFF;
}

.btn-primary-notion:hover {
    background: #1a6dc7;
    transform: translateY(-1px);
}

.btn-secondary-notion {
    background: #E8E8E7;
    color: #37352F;
}

.btn-secondary-notion:hover {
    background: #D3D3D1;
    transform: translateY(-1px);
}

/* ---------------------- Responsive: Notion Hero Section ---------------------- */
@media (max-width: 1024px) {
    .hero-headline h1 {
        font-size: 3.5rem;
    }

    .hero-content .hero-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .notion-hero-section {
        padding: 60px 15px;
        min-height: auto;
    }

    .hero-visual {
        margin-bottom: 15px;
    }

    .hero-video {
        max-height: 150px;
    }

    .hero-headline {
        margin-bottom: 15px;
    }

    .hero-headline h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-content {
        gap: 25px;
    }

    .hero-content .hero-description {
        font-size: 1.05rem;
        padding: 0 10px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-primary-notion,
    .btn-secondary-notion {
        width: 100%;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .notion-hero-section {
        padding: 40px 15px;
    }

    .hero-headline h1 {
        font-size: 1.8rem;
    }

    .hero-content .hero-description {
        font-size: 0.95rem;
    }

    .hero-video {
        max-height: 120px;
    }

    .btn-primary-notion,
    .btn-secondary-notion {
        padding: 11px 20px;
        font-size: 0.95rem;
    }
}


/* -------------------------------------------------------------------------- */
/*                              FAQ SECTION                                   */
/* -------------------------------------------------------------------------- */
.uf-faq-section {
    background: #FFFFFF;
    padding: 80px 20px;
}

.uf-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.uf-faq-container h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: left;
}

.uf-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* FAQ Item */
.uf-faq-item {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.uf-faq-item:last-child {
    border-bottom: none;
}

/* FAQ Question Button */
.uf-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all 0.3s ease;
}

.uf-faq-question span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.5;
    padding-right: 20px;
}

.uf-faq-question:hover span {
    color: #5B57E8;
}

/* FAQ Icon */
.uf-faq-icon {
    flex-shrink: 0;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.uf-faq-item.active .uf-faq-icon {
    transform: rotate(45deg);
    color: #5B57E8;
}

/* FAQ Answer */
.uf-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.uf-faq-item.active .uf-faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.uf-faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ---------------------- Responsive: FAQ Section ---------------------- */
@media (max-width: 768px) {
    .uf-faq-section {
        padding: 60px 15px;
    }

    .uf-faq-container h2 {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .uf-faq-question {
        padding: 20px 0;
    }

    .uf-faq-question span {
        font-size: 1rem;
    }

    .uf-faq-answer p {
        font-size: 0.95rem;
    }

    .uf-faq-item.active .uf-faq-answer {
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .uf-faq-section {
        padding: 50px 15px;
    }

    .uf-faq-container h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .uf-faq-question {
        padding: 18px 0;
    }

    .uf-faq-question span {
        font-size: 0.95rem;
        padding-right: 15px;
    }

    .uf-faq-answer p {
        font-size: 0.9rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                         CALL-TO-ACTION SECTION                             */
/* -------------------------------------------------------------------------- */
.uf-cta-section {
    background: #FFFFFF;
    padding: 80px 20px;
}

.uf-cta-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #F9E89B;
    padding: 80px 60px;
    border-radius: 20px;
    text-align: center;
}

.uf-cta-card h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.uf-cta-card p {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.uf-cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #0F9D91;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 157, 145, 0.3);
}

.uf-cta-button:hover {
    background: #0D8A7F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 157, 145, 0.4);
}

/* ---------------------- Responsive: CTA Section ---------------------- */
@media (max-width: 768px) {
    .uf-cta-section {
        padding: 60px 15px;
    }

    .uf-cta-card {
        padding: 50px 30px;
        border-radius: 16px;
    }

    .uf-cta-card h2 {
        font-size: 2rem;
    }

    .uf-cta-card p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .uf-cta-button {
        padding: 14px 32px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .uf-cta-section {
        padding: 50px 15px;
    }

    .uf-cta-card {
        padding: 40px 20px;
        border-radius: 14px;
    }

    .uf-cta-card h2 {
        font-size: 1.6rem;
    }

    .uf-cta-card p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .uf-cta-button {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                              FOOTER SECTION                                */
/* -------------------------------------------------------------------------- */
.footer-section-complete {
    background: linear-gradient(135deg, #0f2862 0%, #1c3d7a 50%, #2a5298 100%);
    color: #e8f1ff;
    font-family: 'Inter', sans-serif;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

/* Decorative Circles - Blue Gradient Design */
.circle-left,
.circle-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: rgba(65, 105, 225, 0.12);
    border: 1px solid rgba(100, 149, 237, 0.25);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
}

.circle-left::before,
.circle-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(70, 130, 255, 0.08);
    border: 1px solid rgba(100, 149, 237, 0.2);
    border-radius: 50%;
}

.circle-left::after,
.circle-right::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(135, 206, 250, 0.05);
    border: 1px solid rgba(100, 149, 237, 0.15);
    border-radius: 50%;
}

.circle-left {
    left: -200px;
}

.circle-right {
    right: -200px;
}

/* Footer Container */
.footer-container-complete {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Footer Columns */
.footer-column-complete {
    display: flex;
    flex-direction: column;
}

.footer-column-complete h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-column-complete ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column-complete ul li {
    margin-bottom: 16px;
}

.footer-column-complete ul li a {
    color: #b8d4ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    line-height: 1.6;
    display: block;
}

.footer-column-complete ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
    text-shadow: 0 0 8px rgba(100, 149, 237, 0.5);
}

/* Brand Column */
.footer-brand-complete {
    max-width: 320px;
}

.brand-header-complete {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.brand-logo-complete {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4169e1, #1e90ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

.brand-logo-complete img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.brand-header-complete h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-text-complete {
    font-size: 14px;
    color: #b8d4ff;
    margin: 0 0 8px 0;
    font-weight: 400;
}

.phone-number-complete {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 35px 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Contact Info */
.contact-info-complete {
    margin-bottom: 35px;
}

.contact-item-complete {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon-complete {
    width: 24px;
    height: 24px;
    color: #87ceeb;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-details-complete {
    flex: 1;
}

.contact-label-complete {
    color: #b8d4ff;
    font-weight: 400;
    display: block;
    margin-bottom: 2px;
    font-size: 13px;
}

.contact-value-complete {
    color: white;
    font-weight: 500;
    display: block;
    font-size: 14px;
}

/* Social Icons */
.social-icons-complete {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link-complete {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8d4ff;
    text-decoration: none;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
}

.social-link-complete:hover {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    border-color: #00bfff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.5);
}

/* Footer Bottom */
.footer-bottom-complete {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 60px;
    padding: 30px 0;
    background: rgba(15, 38, 98, 0.5);
}

.footer-bottom-container-complete {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.copyright-complete {
    font-size: 14px;
    color: #a8c8e8;
    font-weight: 400;
}

.footer-links-complete {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    flex-wrap: wrap;
}

.footer-links-complete a {
    color: #a8c8e8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links-complete a:hover {
    color: #00bfff;
    text-shadow: 0 0 8px rgba(0, 191, 255, 0.5);
}

.footer-links-complete span {
    color: #6b8bb3;
    font-weight: 300;
}

/* ---------------------- Responsive: Footer Section ---------------------- */
@media (max-width: 1024px) {
    .footer-container-complete {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        padding: 0 30px;
    }

    .circle-left,
    .circle-right {
        width: 350px;
        height: 350px;
    }

    .circle-left {
        left: -175px;
    }

    .circle-right {
        right: -175px;
    }

    .footer-bottom-container-complete {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .footer-section-complete {
        padding: 60px 0 0;
    }

    .footer-container-complete {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .circle-left,
    .circle-right {
        display: none;
    }

    .footer-brand-complete {
        max-width: 100%;
    }

    .footer-bottom-complete {
        margin-top: 50px;
        padding: 25px 0;
    }

    .footer-bottom-container-complete {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 20px;
    }

    .brand-header-complete h3 {
        font-size: 24px;
    }

    .phone-number-complete {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .contact-info-complete {
        margin-bottom: 25px;
    }

    .footer-links-complete {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-section-complete {
        padding: 50px 0 0;
    }

    .footer-container-complete {
        padding: 0 15px;
        gap: 35px;
    }

    .footer-column-complete h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-column-complete ul li {
        margin-bottom: 12px;
    }

    .footer-column-complete ul li a {
        font-size: 13px;
    }

    .brand-logo-complete {
        width: 45px;
        height: 45px;
    }

    .brand-logo-complete img {
        width: 24px;
        height: 24px;
    }

    .brand-header-complete h3 {
        font-size: 22px;
    }

    .phone-number-complete {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .contact-text-complete {
        font-size: 13px;
    }

    .contact-label-complete {
        font-size: 12px;
    }

    .contact-value-complete {
        font-size: 13px;
    }

    .social-link-complete {
        width: 38px;
        height: 38px;
    }

    .footer-bottom-complete {
        margin-top: 40px;
        padding: 20px 0;
    }

    .footer-links-complete {
        flex-direction: column;
        gap: 12px;
    }

    .footer-links-complete span {
        display: none;
    }

    .footer-bottom-container-complete {
        padding: 0 15px;
    }

    .copyright-complete {
        font-size: 13px;
    }

    .footer-links-complete a {
        font-size: 13px;
    }
}

/* -------------------------------------------------------------------------- */
/*                         ENHANCED VISUAL EFFECTS                            */
/* -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
    .circle-left,
    .circle-right {
        animation: subtleFloat 8s ease-in-out infinite alternate;
    }

    @keyframes subtleFloat {
        0% {
            transform: translateY(-50%) rotate(0deg);
            opacity: 0.5;
        }

        100% {
            transform: translateY(-52%) rotate(2deg);
            opacity: 0.7;
        }
    }
}
