@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0 16px;
    border-bottom: 1px solid #f0f0f0;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 28px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
}

.nav-links a {
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero {
    display: grid;
    grid-template-columns: 440px 1fr 370px;
    gap: 20px;
    padding: 28px 0 0;
    align-items: center;
    min-height: calc(100vh - 96px);
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-self: center;
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 560px;
    animation: scaleIn 0.8s ease-out forwards;
}

.hero-right {
    position: relative;
    padding-left: 8px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-self: center;
    width: 100%;
    max-width: 370px;
    animation: fadeInUp 0.9s ease-out forwards;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
}

.hero-title {
    font-size: 5.2rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
    margin: 0;
}

.hero-title .text-black {
    color: var(--black);
}

.hero-title .text-gold {
    color: var(--gold);
}

.hero-title-2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--black);
    margin-top: 10px;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.hero-underline {
    width: 45px;
    height: 3px;
    background: var(--gold);
    margin: 8px 0 14px;
    border-radius: 2px;
}

.hero-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 22px;
}

.feature-cards {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: #fff;
    max-width: 460px;
    margin-bottom: 24px;
    padding: 14px 16px;
}

.feature-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    transition: background-color 0.3s ease;
    cursor: default;
}

.feature-card:hover {
    background-color: #fcfaf8;
}

.feature-card:last-child {
    border-right: none;
}

.feature-icon {
    color: var(--gold);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.feature-text p {
    font-size: 0.55rem;
    color: #888;
    line-height: 1.2;
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-podcast {
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-podcast:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.offices-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.offices-label {
    font-size: 0.6rem;
    font-weight: 600;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.55;
}

.offices-list {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.office-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #444;
}

.office-icon {
    color: var(--gold);
    font-size: 0.95rem;
}

.portrait-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 100%;
    max-height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-bg {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 148, 50), 0.04);
    z-index: 1;
    pointer-events: none;
}

.circle-1 {
    width: 540px;
    height: 540px;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
}

.circle-2 {
    width: 420px;
    height: 420px;
    top: 14%;
    left: 50%;
    transform: translateX(-50%);
    border-color: rgba(201, 148, 50), 0.025);
}

.orbit-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    z-index: 2;
    width: 5px;
    height: 5px;
    opacity: 0.35;
}

.orbit-dot-1 {
    top: 75%;
    left: 6%;
}

.orbit-dot-2 {
    top: 14%;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-dot-3 {
    top: 75%;
    right: 6%;
}

.portrait-img {
    position: relative;
    z-index: 2;
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: center 10%;
    margin-top: -60px;
    transform: translateX(0) scale(1.07);
    border-radius: 12px;
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    animation: float 6s ease-in-out infinite;
    transition: transform 0.6s ease;
}

.portrait-container:hover .portrait-img {
    animation-play-state: paused;
    transform: translateX(0) scale(1.08);
}

.decor-dots-top,
.decor-dots-bottom {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(4, 4px);
    gap: 6px;
    opacity: 0.2;
}

.decor-dots-top {
    top: -4px;
    right: 4px;
    z-index: 11;
}

.decor-dots-bottom {
    bottom: 4px;
    right: 4px;
    z-index: 0;
}

.decor-dots-top span,
.decor-dots-bottom span {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.trust-badge,
.quote-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trust-badge:hover,
.quote-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.07) !important;
}

.trust-badge {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    border-radius: 18px;
    padding: 20px 26px 18px;
    text-align: center;
    min-width: 140px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.02);
    margin-top: 20px;
}

.trust-badge .star {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 4px;
    display: block;
}

.trust-badge .new-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.quote-card {
    background: #fffefc;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    padding: 38px 32px 28px;
    width: 100%;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.015);
}

.quote-card .corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--gold);
    border-style: solid;
    border-width: 0;
    opacity: 0.15;
}

.quote-card .corner-tl {
    top: 16px;
    left: 16px;
    border-top-width: 1px;
    border-left-width: 1px;
}

.quote-card .corner-tr {
    top: 16px;
    right: 16px;
    border-top-width: 1px;
    border-right-width: 1px;
}

.quote-card .corner-bl {
    bottom: 16px;
    left: 16px;
    border-bottom-width: 1px;
    border-left-width: 1px;
}

.quote-card .corner-br {
    bottom: 16px;
    right: 16px;
    border-bottom-width: 1px;
    border-right-width: 1px;
}

.quote-icon {
    color: var(--gold);
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 2px;
    transform: translateY(8px);
    display: block;
    opacity: 0.7;
}

.quote-text {
    font-size: 0.88rem;
    color: #222;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 240px;
}

.quote-signature {
    max-width: 130px;
    height: auto;
    margin-bottom: 16px;
    opacity: 0.85;
    margin-left: -4px;
}

.quote-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.quote-footer-line {
    width: 36px;
    height: 1.5px;
    background: var(--gold);
    border-radius: 1px;
}

.quote-footer-text {
    font-size: 0.7rem;
    font-weight: 400;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quote-footer-text .bold-name {
    font-weight: 700;
    color: var(--black);
}

.quote-footer-text .role-line {
    color: #666;
    font-size: 0.6rem;
}

@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 360px 1fr 330px;
        gap: 16px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-title-2 {
        font-size: 1.4rem;
    }

    .circle-1 {
        width: 460px;
        height: 460px;
    }

    .circle-2 {
        width: 360px;
        height: 360px;
    }

    .portrait-img {
        margin-top: -50px;
        transform: translateX(0) scale(1.05);
    }

    .hero-right {
        max-width: 330px;
    }
}

@media (max-width: 992px) {
    nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-links {
        gap: 24px;
        font-size: 0.85rem;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 24px;
        min-height: auto;
    }

    .hero-center {
        min-height: 360px;
    }

    .portrait-container {
        max-height: 360px;
        height: 360px;
        max-width: 100%;
    }

    .portrait-img {
        height: 120%;
        margin-top: -30px;
        transform: translateX(0) scale(1);
    }

    .portrait-container:hover .portrait-img {
        transform: scale(1.02);
    }

    .circle-1 {
        width: 360px;
        height: 360px;
    }

    .circle-2 {
        width: 280px;
        height: 280px;
    }

    .orbit-dot-1 {
        top: 76%;
        left: 5%;
    }

    .orbit-dot-2 {
        top: 12%;
    }

    .orbit-dot-3 {
        top: 76%;
        right: 5%;
    }

    .hero-right {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding-left: 0;
        max-width: 100%;
    }

    .trust-badge,
    .quote-card {
        flex: 1;
        min-width: 240px;
        max-width: 360px;
    }

    .trust-badge {
        margin-top: 0;
    }

    .decor-dots-top,
    .decor-dots-bottom {
        display: none;
    }

    .hero-title {
        font-size: 3.6rem;
    }

    .hero-title-2 {
        font-size: 1.4rem;
    }

    .hero-desc,
    .quote-text {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-title-2 {
        font-size: 1.15rem;
    }

    .hero-subtitle {
        font-size: 0.55rem;
        letter-spacing: 1.5px;
    }

    .hero-desc {
        font-size: 0.82rem;
    }

    .feature-cards {
        flex-direction: column;
        padding: 12px 16px;
        gap: 8px;
        border-radius: 8px;
    }

    .feature-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding: 8px 0;
    }

    .feature-card:last-child {
        border-bottom: none;
    }

    .cta-row {
        gap: 18px;
    }

    .offices-row {
        gap: 12px;
        align-items: flex-start;
    }

    .offices-label {
        font-size: 0.5rem;
    }

    .offices-list {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .office-item {
        font-size: 0.72rem;
        line-height: 1.5;
    }

    .office-icon {
        font-size: 0.85rem;
        margin-top: 2px;
    }

    .hero-center {
        min-height: 280px;
    }

    .portrait-container {
        max-height: 280px;
        height: 280px;
    }

    .portrait-img {
        height: 130%;
        margin-top: -20px;
    }

    .portrait-container:hover .portrait-img {
        transform: scale(1.02);
    }

    .circle-1 {
        width: 260px;
        height: 260px;
    }

    .circle-2 {
        width: 200px;
        height: 200px;
    }

    .orbit-dot-1,
    .orbit-dot-2,
    .orbit-dot-3 {
        display: none;
    }

    .hero-right {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .trust-badge,
    .quote-card {
        width: 100%;
        max-width: 100%;
        min-width: unset;
    }

    .quote-card {
        padding: 24px 20px 18px;
    }

    .quote-signature {
        max-width: 90px;
        margin-left: 0;
    }

    .nav-links {
        gap: 16px;
        font-size: 0.75rem;
    }

    .nav-logo {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-title-2 {
        font-size: 1rem;
    }

    .hero-center {
        min-height: 220px;
    }

    .portrait-container {
        max-height: 220px;
        height: 220px;
    }

    .portrait-img {
        height: 140%;
        margin-top: -10px;
    }

    .circle-1 {
        width: 200px;
        height: 200px;
    }

    .circle-2 {
        width: 160px;
        height: 160px;
    }

    .quote-card {
        padding: 20px 16px 14px;
    }

    .quote-text {
        font-size: 0.72rem;
    }

    .quote-signature {
        max-width: 75px;
    }
}