/* ==============================
   RESET & BASE
   ============================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #facc15;
    --color-secondary: #fbbf24;
    --color-accent: #f59e0b;
    --color-dark: #0a0a0a;
    --color-text: #f5f5f5;
    --color-text-muted: #a3a3a3;
    --gradient-hero: linear-gradient(135deg, #facc15 0%, #f59e0b 50%, #fbbf24 100%);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--color-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    height: 100%;
}

.container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==============================
   TOP BANNER
   ============================== */
.top-banner {
    position: fixed;
    top: 0;
    left: -10px;
    right: 0;
    z-index: 1001;
    padding: 10px 24px;
    background: var(--color-primary);
    color: var(--color-dark);
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    rotate: 2deg;
    margin-top: 40px;
    width: calc(100vw + 20px);

    span {
        white-space: nowrap;
    }
}

/* ==============================
   HERO
   ============================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__layout {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero__top {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero__text {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.hero__greeting {
    font-size: 1.1rem;
    color: var(--color-secondary);
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero__name {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__title {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0;
}

.hero__description {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 48px 0;
    line-height: 1.7;
}

.hero__image {
    flex-shrink: 0;
}

.hero__image img {
    width: 250px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px 50px 20px 50px;
    border: 4px solid var(--color-primary);
    box-shadow: 0 0 40px rgba(250, 204, 21, 0.2);
}

.hero__photo-standard {
    display: block;
}

.hero__photo-small {
    display: none;
}

/* Hero background shapes */
.hero__bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.shape--1 {
    width: 500px;
    height: 500px;
    background: var(--color-primary);
    top: -100px;
    right: -100px;
}

.shape--2 {
    width: 400px;
    height: 400px;
    background: var(--color-secondary);
    bottom: -50px;
    left: -100px;
}

.shape--3 {
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shape--4, .shape--5, .shape--6 {
    background: var(--color-accent);
    transform: translate(-50%, -50%);
}

.shape--4 {
    width: 50px;
    height: 50px;
    top: 10%;
    left: 30%;
    animation-delay: 0s;
    animation: floatReverse 10s ease-in-out infinite;
    filter: blur(20px);
}

.shape--5 {
    width: 20px;
    height: 20px;
    top: 15%;
    left: 20%;
    animation-delay: 0s;
    animation: orbit 12s linear infinite;
    filter: blur(5px);
}

.shape--6 {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 12%;
    animation-delay: 0s;
    animation: pulse 4s ease-in-out infinite;
    filter: blur(20px);
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(30px) scale(1.05); }
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(40px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

/* ==============================
   SCROLL ANIMATIONS
   ============================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================
   FIXED FOOTER
   ============================== */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 0.85rem;
}

.fixed-footer a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.fixed-footer a:hover {
    color: var(--color-primary);
}

.fixed-footer__dot {
    color: var(--color-text-muted);
}

/* ==============================
   HERO CTA
   ============================== */
.hero__cta-wrap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.hero__cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient-hero);
    color: var(--color-dark);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 20px 10px 20px 10px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(250, 204, 21, 0.4);
}

/* ==============================
   HERO SERVICES
   ============================== */
.hero__services {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.hero__service {
    padding: 8px 16px;
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.25);
    border-radius: 10px 15px 10px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    flex: 1;
    text-align: center;
}

/* ==============================
   RESPONSIVE — TABLETS (≤991px)
   ============================== */
@media (max-width: 991px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
        gap: 48px;
    }

    .hero__top {
        gap: 32px;
    }

    .hero__image img {
        width: 200px;
        height: 320px;
    }
}

/* ==============================
   RESPONSIVE — TABLETS & MOBILE (≤767px)
   ============================== */
@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
        gap: 36px;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .hero__top {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .hero__text {
        text-align: center;
        align-items: center;
    }

    .hero__description {
        margin: 32px 0;
        max-width: 100%;
    }

    .hero__image img {
        width: 180px;
        height: 280px;
    }

    .hero__services {
        justify-content: center;
    }

    .hero__cta-wrap {
        justify-content: center;
    }

    .top-banner {
        font-size: 0.85rem;
        padding: 8px 16px;
        margin-top: 32px;
    }

    .fixed-footer {
        gap: 6px;
        padding: 10px 16px;
    }

    .shape--1 {
        width: 300px;
        height: 300px;
    }

    .shape--2 {
        width: 250px;
        height: 250px;
    }

    .shape--3 {
        width: 200px;
        height: 200px;
    }
}

/* ==============================
   RESPONSIVE — SMALL MOBILE (≤575px)
   ============================== */
@media (max-width: 575px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
        gap: 28px;
    }

    .hero {
        padding-top: 120px;
    }

    .hero__greeting {
        font-size: 0.95rem;
    }

    .hero__title {
        font-size: 0.9rem;
    }

    .hero__description {
        font-size: 0.95rem;
        margin: 24px 0;
    }

    .hero__image img {
        width: 150px;
        height: 240px;
        border-radius: 16px 40px 16px 40px;
    }

    .hero__cta {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .hero__services {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .hero__service {
        width: 100%;
        max-width: 280px;
        text-align: center;
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .top-banner {
        font-size: 0.8rem;
        margin-top: 24px;
    }

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

    .shape--2 {
        width: 180px;
        height: 180px;
    }

    .shape--3 {
        width: 120px;
        height: 120px;
    }
}


/* ==============================
   RESPONSIVE — SMALL HEIGHT
   ============================== */
@media (max-height: 850px) {
    .top-banner {
        padding: 8px 16px;
        font-size: 0.9rem;
        rotate: 0.5deg;
        margin-top: 10px;
    }

    .hero__top {
        gap: 16px;
    }

    .container {
        gap: 16px;
    }

    .hero__description {
        font-size: 0.8rem;
    }

    .hero__service {
        padding: 4px 8px;
        font-size: 0.8rem;
    }

    .fixed-footer {
        font-size: 0.6rem;
    }
}

@media (max-height: 800px) and (max-width: 600px) {
    .hero__image img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }

    .hero__photo-standard {
        display: none;
    }

    .hero__photo-small {
        display: block;
    }
}

@media (max-aspect-ratio: 172/441) {
    .hero__image img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }

    .hero__photo-standard {
        display: none;
    }

    .hero__photo-small {
        display: block;
    }
}


@media (min-height: 800px) and (max-height: 1000px) {
    .top-banner {
        font-size: 1rem;
    }
}