:root {
    --gold: #e0c297;
    --bg: #0a1215;
    --panel: #0c1418;
    --muted: #b5c0c7;
    --rad: 24px;
    --line: #1a2429;
}

.mobile-br {
    display: none;
}

@media (max-width: 680px) {
    .mobile-br {
        display: block;
    }
}

.actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta {
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 600;
    transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

.cta.gold {
    background: var(--gold);
    color: #1a1a1a;
    border-color: transparent;
}

.container {
    width: min(1280px, 92%);
    margin-inline: auto;
}

.head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 20px 0 40px;
    position: relative;
    direction: rtl;
}

.head h2 {
    color: var(--gold);
    font-family: "Peyda", sans-serif;
    letter-spacing: 0;
    font-size: 30px;
    font-weight: 800;
    position: relative;
    margin: 0 auto;
    line-height: 1.7;
}

.head h2::after {
    content: "";
    position: absolute;
    bottom: -12px;
    right: 50%;
    transform: translateX(50%);
    width: 104px;
    height: 2.5px;
    background: linear-gradient(270deg, var(--gold), transparent);
}

.about-intro {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--rad);
    padding: 48px 60px;
    margin: 52px 0;
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.42);
    position: relative;
    overflow: hidden;
    background: linear-gradient(225deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.005));
    direction: rtl;
    text-align: right;
}

.about-intro::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(270deg, var(--gold), transparent);
}

.about-intro p {
    margin: 0 0 22px;
    font-size: 18.5px;
    line-height: 2.15;
    color: var(--muted);
    clear: both;
    display: block;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-intro strong {
    color: #fff;
}

.about-text {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--rad);
    padding: 48px 80px;
    margin: 52px 0;
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.42);
    position: relative;
    overflow: hidden;
    background: linear-gradient(225deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));
    direction: rtl;
    text-align: right;
}

.about-text::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(270deg, var(--gold), transparent);
}

.about-text::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(224, 194, 151, 0.1), transparent 70%);
    pointer-events: none;
}

.about-text p {
    margin: 0 0 26px;
    font-size: 18.5px;
    line-height: 2.15;
    color: var(--muted);
    clear: both;
    position: relative;
    z-index: 1;
    display: block;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: #fff;
}

.brand-slogan {
    text-align: center;
    margin: 30px 0;
    font-family: "Peyda", sans-serif;
    font-size: 22px;
    color: var(--gold);
    letter-spacing: 0;
    font-weight: 900;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
    line-height: 1.8;
    direction: rtl;
}

.timeline {
    position: relative;
    padding: 40px 0;
    direction: rtl;
}

.timeline::before {
    content: "";
    position: absolute;
    right: 50%;
    top: 5%;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), transparent);
    transform: translateX(50%);
    opacity: 0.75;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(224, 194, 151, 0.35);
}

.timeline .head {
    margin-bottom: 14px;
}

.timeline-item {
    position: relative;
    margin: 36px 0;
    width: 50%;
    padding: 0 28px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
}

.timeline-item.revealed {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.timeline-item:nth-child(odd) {
    right: 0;
    text-align: left;
}

.timeline-item:nth-child(even) {
    right: 50%;
    text-align: right;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 16px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    border: 5px solid var(--bg);
    box-shadow: 0 0 20px rgba(224, 194, 151, 0.6);
    z-index: 2;
}

.timeline-item:nth-child(odd)::before {
    left: -40px;
}

.timeline-item:nth-child(even)::before {
    right: -40px;
}

.timeline-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--rad);
    padding: 22px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    perspective: 1500px;
    direction: rtl;
}

.timeline-card:hover {
    transform: translateY(-10px) rotateX(8deg);
    box-shadow: 0 36px 64px rgba(0, 0, 0, 0.65), 0 0 30px rgba(224, 194, 151, 0.4);
}

.milestone {
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
    direction: ltr;
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.size-tile {
    position: relative;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.size-tile.revealed {
    opacity: 1;
    transform: none;
}

.size-tile:hover {
    transform: scale(1.12) translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55), 0 0 28px rgba(224, 194, 151, 0.4);
    border-color: var(--gold);
}

.size-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(224, 194, 151, 0.22), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.size-tile:hover::before {
    opacity: 1;
}

.size-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(225deg, transparent, rgba(224, 194, 151, 0.12));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.size-tile:hover::after {
    opacity: 1;
}

.size-tile span {
    position: relative;
    font-size: 14px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0;
    z-index: 2;
    direction: ltr;
}

.animated-hero {
    height: 52dvh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(to bottom, rgba(10, 18, 21, 0.84), rgba(10, 18, 21, 0.97)), radial-gradient(circle at 32% 42%, rgba(224, 194, 151, 0.12), transparent 44%), radial-gradient(circle at 68% 68%, rgba(224, 194, 151, 0.09), transparent 46%), radial-gradient(circle at 50% 18%, rgba(224, 194, 151, 0.045), transparent 50%), var(--bg);
    direction: rtl;
}

.animated-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(224, 194, 151, 0.035) 1px, transparent 1px), linear-gradient(180deg, rgba(224, 194, 151, 0.025) 1px, transparent 1px);
    background-size: 78px 78px;
    opacity: 0.32;
    pointer-events: none;
    z-index: 0;
    animation: heroGridMove 30s linear infinite;
}

.animated-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 35% 45%, rgba(224, 194, 151, 0.11), transparent 46%), radial-gradient(circle at 65% 70%, rgba(224, 194, 151, 0.08), transparent 48%);
    pointer-events: none;
    z-index: 1;
    animation: heroGlow 20s ease-in-out infinite;
}

@keyframes heroGridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 78px 78px;
    }
}

@keyframes heroGlow {

    0%,
    100% {
        opacity: 0.72;
    }

    50% {
        opacity: 1;
    }
}

.animated-hero__pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.animated-hero__content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0 18px;
    direction: rtl;
}

.animated-hero__eyebrow {
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 0;
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: none;
    line-height: 1.8;
}

.animated-hero__title {
    font-family: "Peyda", sans-serif;
    font-size: clamp(34px, 5.6vw, 68px);
    line-height: 1.35;
    margin: 0 0 14px;
    color: #fff;
    font-weight: 900;
}

.animated-hero__desc {
    font-size: 15px;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 2;
    display: block;
}

.hero-card {
    position: absolute;
    width: 92px;
    height: 92px;
    border-radius: 26px;
    border: 1px solid rgba(224, 194, 151, 0.2);
    background: linear-gradient(135deg, rgba(224, 194, 151, 0.105), rgba(255, 255, 255, 0.025)), rgba(12, 20, 24, 0.28);
    backdrop-filter: blur(2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28), inset 0 1px 6px rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 27px;
    opacity: 0;
    animation: heroCardFloat 22s ease-in-out infinite;
}

.hero-card i {
    transform: translateY(1px);
    text-shadow: 0 0 18px rgba(224, 194, 151, 0.28);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 19px;
    border: 1px solid rgba(224, 194, 151, 0.1);
}

.hero-card--1 {
    top: 16%;
    right: 8%;
    animation-delay: 0s;
}

.hero-card--2 {
    top: 65%;
    right: 15%;
    animation-delay: 4s;
}

.hero-card--3 {
    top: 18%;
    left: 10%;
    animation-delay: 8s;
}

.hero-card--4 {
    top: 66%;
    left: 16%;
    animation-delay: 12s;
}

.hero-card--5 {
    top: 48%;
    right: 61%;
    animation-delay: 16s;
}

@keyframes heroCardFloat {
    0% {
        transform: translate3d(0, 44px, 0) scale(0.86) rotate(-4deg);
        opacity: 0;
    }

    18% {
        opacity: 0.42;
    }

    50% {
        transform: translate3d(-18px, -28px, 0) scale(1.03) rotate(4deg);
        opacity: 0.66;
    }

    82% {
        opacity: 0.28;
    }

    100% {
        transform: translate3d(14px, -72px, 0) scale(0.86) rotate(-4deg);
        opacity: 0;
    }
}

.hero-line {
    position: absolute;
    height: 1px;
    width: 280px;
    background: linear-gradient(90deg, transparent, rgba(224, 194, 151, 0.42), transparent);
    opacity: 0;
    animation: heroLineFlow 18s ease-in-out infinite;
}

.hero-line--1 {
    top: 31%;
    right: 10%;
    transform: rotate(-18deg);
    animation-delay: 2s;
}

.hero-line--2 {
    top: 64%;
    left: 9%;
    transform: rotate(18deg);
    animation-delay: 7s;
}

.hero-line--3 {
    top: 48%;
    right: 50%;
    width: 230px;
    transform: rotate(0deg);
    animation-delay: 12s;
}

@keyframes heroLineFlow {
    0% {
        opacity: 0;
        transform: translateX(36px) rotate(-18deg);
    }

    38% {
        opacity: 0.48;
    }

    72% {
        opacity: 0.18;
    }

    100% {
        opacity: 0;
        transform: translateX(-42px) rotate(-18deg);
    }
}

.animated-hero--contact .hero-card {
    border-radius: 24px;
}

.animated-hero--about .hero-card {
    border-radius: 50%;
}

.animated-hero--about .hero-card::before {
    border-radius: 50%;
}

.animated-hero--blog .hero-card,
.animated-hero--category .hero-card {
    border-radius: 22px;
}

.animated-hero--blog .hero-card::before,
.animated-hero--category .hero-card::before {
    border-radius: 16px;
}

.contact-hero.animated-hero,
.about-hero.animated-hero,
.blog-hero.animated-hero,
.category-hero.animated-hero {
    height: 52dvh;
    min-height: 380px;
    display: flex;
    place-items: unset;
    background: linear-gradient(to bottom, rgba(10, 18, 21, 0.84), rgba(10, 18, 21, 0.97)), radial-gradient(circle at 32% 42%, rgba(224, 194, 151, 0.12), transparent 44%), radial-gradient(circle at 68% 68%, rgba(224, 194, 151, 0.09), transparent 46%), radial-gradient(circle at 50% 18%, rgba(224, 194, 151, 0.045), transparent 50%), var(--bg);
}

.contact-hero.animated-hero::before,
.about-hero.animated-hero::before,
.blog-hero.animated-hero::before,
.category-hero.animated-hero::before {
    background: linear-gradient(90deg, rgba(224, 194, 151, 0.035) 1px, transparent 1px), linear-gradient(180deg, rgba(224, 194, 151, 0.025) 1px, transparent 1px);
    background-size: 78px 78px;
}

@media (max-width: 1024px) {
    .timeline::before {
        right: 32px;
        left: auto;
        transform: none;
    }

    .timeline-item {
        width: 100%;
        right: 0 !important;
        left: auto !important;
        text-align: right !important;
        padding-right: 68px;
        padding-left: 0;
    }

    .timeline-item::before {
        right: 12px !important;
        left: auto !important;
    }

    .size-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    }
}

@media (max-width: 767px) {

    .animated-hero,
    .contact-hero.animated-hero,
    .about-hero.animated-hero,
    .blog-hero.animated-hero,
    .category-hero.animated-hero {
        height: 46dvh;
        min-height: 320px;
    }

    .animated-hero__title {
        font-size: 40px;
    }

    .animated-hero__desc {
        font-size: 13px;
    }

    .hero-card {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        font-size: 20px;
    }

    .hero-card::before {
        inset: 9px;
        border-radius: 13px;
    }

    .animated-hero--about .hero-card,
    .animated-hero--about .hero-card::before {
        border-radius: 50%;
    }

    .hero-line {
        width: 180px;
    }

    .hero-card--1 {
        right: 3%;
    }

    .hero-card--2 {
        right: 8%;
    }

    .hero-card--3 {
        left: 4%;
    }

    .hero-card--4 {
        left: 8%;
    }

    .hero-card--5 {
        right: 58%;
    }
}

@media (max-width: 640px) {

    .about-intro,
    .about-text {
        padding: 30px 24px;
        margin: 34px 0;
    }

    .about-intro p,
    .about-text p {
        font-size: 15.5px;
        line-height: 2.05;
    }

    .brand-slogan {
        font-size: 19px;
    }

    .size-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 12px;
    }

    .size-tile {
        height: 86px;
    }

    .head h2 {
        font-size: 28px;
    }

    .head h2::after {
        width: 60px;
    }
}