/* =========================================================
   HIMSCRIPT - WHY CHOOSE US
   COLOR PALETTE
   #3e4f67 - Slate Blue
   #c2995a - Gold
   #fefefe - White
   #0c1d31 - Deep Navy
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {
    --slate: #3e4f67;
    --gold: #c2995a;
    --white: #fefefe;
    --navy: #0c1d31;
    --light-bg: #f5f7fa;
    --border: rgba(194, 153, 90, 0.25);
    --shadow: 0 20px 50px rgba(12, 29, 49, 0.12);
    --transition: all 0.4s cubic-bezier(.2,.8,.2,1);
}


/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
}

::selection {
    background: var(--gold);
    color: var(--white);
}

a {
    text-decoration: none !important;
}

.section-space {
    padding: 110px 0;
}


/* =========================================================
   HERO
========================================================= */

.why-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 30%,
        rgba(194, 153, 90, .14),
        transparent 25%),
        linear-gradient(135deg,
        var(--navy) 0%,
        #172b43 55%,
        var(--slate) 100%);
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(194, 153, 90, .18);
    pointer-events: none;
}

.orb-one {
    width: 500px;
    height: 500px;
    right: -180px;
    top: -150px;
    animation: floatOrb 8s ease-in-out infinite;
}

.orb-two {
    width: 300px;
    height: 300px;
    left: -170px;
    bottom: -120px;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

@keyframes floatOrb {

    0%,100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 17px;
    border: 1px solid rgba(194, 153, 90, .5);
    border-radius: 50px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    background: rgba(194, 153, 90, .06);
}

.badge-dot {
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 15px var(--gold);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

    0%,100% {
        box-shadow: 0 0 5px var(--gold);
    }

    50% {
        box-shadow: 0 0 20px var(--gold);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title span {
    display: block;
    color: var(--gold);
}

.gold-line {
    width: 90px;
    height: 3px;
    margin: 25px 0;
    background: var(--gold);
    position: relative;
}

.gold-line:after {
    content: "";
    position: absolute;
    left: 0;
    top: -4px;
    width: 35px;
    height: 11px;
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
}

.hero-subtitle {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-description {
    max-width: 680px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(254,254,254,.82);
}

.secondary-text {
    font-size: 15px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    padding: 14px 26px;
    border-radius: 5px;
    background: var(--gold);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    border: 1px solid var(--gold);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(194,153,90,.25);
}

.btn-gold:hover {
    color: var(--navy);
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
}


/* =========================================================
   HERO QUALITY CARD
========================================================= */

.hero-quality-card {
    position: relative;
    padding: 45px 38px;
    margin-left: 35px;
    border: 1px solid rgba(194,153,90,.4);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,.25);
    animation: cardFloat 5s ease-in-out infinite;
}

@keyframes cardFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.quality-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 15px;
    color: var(--gold);
    background: rgba(194,153,90,.12);
    font-size: 30px;
}

.quality-small {
    display: block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
}

.quality-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    line-height: 1.3;
}

.quality-content h3 strong {
    color: var(--gold);
}

.quality-content p {
    margin-top: 20px;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
}

.quality-decoration {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 7px;
}

.quality-decoration span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 780px;
    margin: auto;
}

.section-tag,
.trust-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.section-heading h2 {
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 700;
}

.section-heading h2 span {
    color: var(--gold);
}

.heading-line {
    width: 65px;
    height: 3px;
    margin: 20px auto;
    background: var(--gold);
}

.section-heading p {
    color: var(--slate);
    font-size: 16px;
    line-height: 1.8;
}

.light-heading h2 {
    color: var(--white);
}

.light-heading p {
    color: rgba(255,255,255,.68);
}


/* =========================================================
   AI SECTION
========================================================= */

.more-than-ai {
    background: var(--white);
}


/* =========================================================
   AI VISUAL
========================================================= */

.ai-visual {
    min-height: 430px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(194,153,90,.4);
}

.circle-large {
    width: 360px;
    height: 360px;
    background: rgba(62,79,103,.03);
    animation: rotateCircle 20s linear infinite;
}

.circle-medium {
    width: 260px;
    height: 260px;
    background: rgba(194,153,90,.05);
}

.circle-small {
    width: 145px;
    height: 145px;
    background: var(--navy);
    color: var(--gold);
    font-size: 45px;
    box-shadow: 0 20px 50px rgba(12,29,49,.25);
}

@keyframes rotateCircle {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.floating-icon {
    position: absolute;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--white);
    color: var(--gold);
    font-size: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    animation: floatingIcon 4s ease-in-out infinite;
}

.icon-one {
    top: 45px;
    right: 100px;
}

.icon-two {
    left: 65px;
    top: 160px;
    animation-delay: 1s;
}

.icon-three {
    right: 70px;
    bottom: 45px;
    animation-delay: 2s;
}

@keyframes floatingIcon {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* =========================================================
   CONTENT ITEMS
========================================================= */

.content-panel {
    padding-left: 30px;
}

.content-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(62,79,103,.08);
    box-shadow: 0 10px 35px rgba(12,29,49,.05);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(25px);
}

.content-item.show-card {
    opacity: 1;
    transform: translateY(0);
}

.content-item:hover {
    transform: translateX(8px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.content-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--navy);
    color: var(--gold);
}

.content-item h4 {
    margin-bottom: 7px;
    font-size: 18px;
    font-weight: 700;
}

.content-item p {
    margin: 0;
    color: var(--slate);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   DIFFERENCE SECTION
========================================================= */

.difference-section {
    position: relative;
    padding: 110px 0;
    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--slate)
        );
    overflow: hidden;
}

.difference-section:before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(194,153,90,.08);
    left: -300px;
    top: 100px;
}

.difference-section:after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 1px solid rgba(194,153,90,.08);
    right: -220px;
    bottom: -150px;
}


/* =========================================================
   EXPERIENCE CARD
========================================================= */

.experience-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 35px 45px;
    margin: 60px auto 55px;
    max-width: 900px;
    border: 1px solid rgba(194,153,90,.45);
    border-radius: 15px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
}

.experience-number {
    padding-right: 30px;
    color: var(--gold);
    font-size: 70px;
    line-height: 1;
    font-weight: 800;
    border-right: 1px solid rgba(194,153,90,.35);
}

.experience-number span {
    font-size: 35px;
}

.experience-text {
    padding-left: 30px;
}

.experience-text span {
    display: block;
    color: rgba(255,255,255,.55);
    font-size: 10px;
    letter-spacing: 2px;
}

.experience-text strong {
    display: block;
    margin-top: 5px;
    color: var(--white);
    font-size: 20px;
}

.experience-text p {
    margin: 8px 0 0;
    color: rgba(255,255,255,.65);
    font-size: 13px;
}

.experience-icon {
    margin-left: auto;
    color: rgba(194,153,90,.25);
    font-size: 70px;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.feature-grid {
    position: relative;
    z-index: 2;
}

.feature-card {
    position: relative;
    min-height: 315px;
    padding: 32px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(8px);
    overflow: hidden;
    opacity: 0;
    transform: translateY(35px);
    transition: var(--transition);
}

.feature-card.show-card {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(194,153,90,.65);
    background: rgba(194,153,90,.08);
    box-shadow: 0 25px 55px rgba(0,0,0,.2);
}

.feature-number {
    position: absolute;
    right: 20px;
    top: 15px;
    color: rgba(194,153,90,.15);
    font-size: 45px;
    font-weight: 800;
}

.feature-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 13px;
    background: rgba(194,153,90,.12);
    color: var(--gold);
    font-size: 22px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--navy);
    transform: rotateY(180deg);
}

.feature-card h4 {
    color: var(--white);
    font-size: 19px;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   QUALITY PROCESS
========================================================= */

.quality-section {
    padding: 110px 0;
    background: var(--light-bg);
}

.process-row {
    position: relative;
}

.process-row:before {
    content: "";
    position: absolute;
    left: 16.66%;
    right: 16.66%;
    top: 58px;
    height: 1px;
    background: rgba(194,153,90,.35);
}

.process-card {
    position: relative;
    z-index: 2;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    background: var(--white);
    border: 1px solid rgba(62,79,103,.08);
    box-shadow: 0 10px 35px rgba(12,29,49,.06);
    transition: var(--transition);
}

.process-card:hover,
.active-process {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.process-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    border: 6px solid var(--light-bg);
    font-size: 24px;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
}

.process-card > span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.process-card h4 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 700;
}

.process-card p {
    color: var(--slate);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   TRUST SECTION
========================================================= */

.trust-section {
    padding: 80px 0;
    background: var(--navy);
    color: var(--white);
}

.trust-section h2 {
    max-width: 650px;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    line-height: 1.25;
}

.trust-section h2 span {
    color: var(--gold);
}

.trust-points {
    padding-left: 30px;
}

.trust-points div {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.trust-points i {
    margin-right: 13px;
    color: var(--gold);
}

.trust-points span {
    color: rgba(255,255,255,.8);
    font-size: 14px;
}


/* =========================================================
   CTA
========================================================= */

.why-cta {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: var(--white);
}

.cta-pattern {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(194,153,90,.15);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cta-pattern:before,
.cta-pattern:after {
    content: "";
    position: absolute;
    border: 1px solid rgba(194,153,90,.1);
    border-radius: 50%;
}

.cta-pattern:before {
    width: 380px;
    height: 380px;
    left: 60px;
    top: 60px;
}

.cta-pattern:after {
    width: 260px;
    height: 260px;
    left: 120px;
    top: 120px;
}

.why-cta .container {
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-size: 25px;
    box-shadow: 0 15px 35px rgba(12,29,49,.2);
}

.why-cta h2 {
    margin: 10px 0 15px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(35px, 5vw, 55px);
}

.why-cta p {
    max-width: 650px;
    margin: auto;
    color: var(--slate);
    line-height: 1.8;
}

.cta-button {
    margin-top: 30px;
}


/* =========================================================
   FOOTER
========================================================= */

.why-footer {
    padding: 35px 0;
    background: #071525;
    color: rgba(255,255,255,.6);
}

.footer-logo {
    color: var(--white);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-logo span {
    color: var(--gold);
}

.why-footer p {
    margin: 5px 0 0;
    font-size: 12px;
}

.copyright {
    color: rgba(255,255,255,.45);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .why-hero {
        padding: 100px 0;
    }

    .hero-quality-card {
        margin: 60px 0 0;
    }

    .content-panel {
        padding-left: 0;
        margin-top: 50px;
    }

    .experience-card {
        padding: 30px;
    }

    .process-row:before {
        display: none;
    }

    .process-card {
        margin-bottom: 30px;
    }

    .trust-section h2 {
        margin-bottom: 30px;
    }

    .trust-points {
        padding-left: 0;
    }

}


@media (max-width: 767px) {

    .section-space,
    .difference-section,
    .quality-section,
    .why-cta {
        padding: 75px 0;
    }

    .why-hero {
        min-height: auto;
        padding: 90px 0;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-quality-card {
        padding: 30px 25px;
    }

    .quality-content h3 {
        font-size: 25px;
    }

    .ai-visual {
        min-height: 330px;
    }

    .circle-large {
        width: 280px;
        height: 280px;
    }

    .circle-medium {
        width: 205px;
        height: 205px;
    }

    .circle-small {
        width: 115px;
        height: 115px;
        font-size: 35px;
    }

    .icon-one {
        right: 20px;
        top: 25px;
    }

    .icon-two {
        left: 15px;
        top: 120px;
    }

    .icon-three {
        right: 15px;
        bottom: 25px;
    }

    .experience-card {
        display: block;
        text-align: center;
    }

    .experience-number {
        padding: 0 0 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(194,153,90,.35);
    }

    .experience-text {
        padding: 20px 0;
    }

    .experience-icon {
        display: none;
    }

    .feature-card {
        min-height: auto;
    }

    .trust-section {
        padding: 65px 0;
    }

    .trust-section h2 {
        font-size: 32px;
    }

    .why-footer {
        text-align: center;
    }

    .copyright {
        margin-top: 20px !important;
    }

}


@media (max-width: 480px) {

    .hero-title {
        font-size: 41px;
    }

    .hero-subtitle {
        font-size: 21px;
    }

    .hero-badge {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .experience-number {
        font-size: 58px;
    }

    .feature-card {
        padding: 25px;
    }

    .content-item {
        padding: 20px;
    }

}