/* ========================================
   HERO SECTION - MINIMAL & ELEGANT
   ======================================== */

.hero {
    position: relative;
    padding: var(--spacing-4xl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-white);
}

/* ========================================
   GRID LAYOUT
   ======================================== */

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

/* ========================================
   CONTENT
   ======================================== */

.hero__content {
    max-width: 540px;
}

/* Badge */
.hero__badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(232, 160, 191, 0.15), rgba(232, 160, 191, 0.05));
    border: 1px solid rgba(232, 160, 191, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-lg);
}

/* Title */
.hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-gray-900);
    line-height: 1.3;
    margin: 0 0 var(--spacing-md);
}

.hero__highlight {
    position: relative;
    color: var(--color-primary);
    display: inline-block;
}

.hero__highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--color-primary-light), transparent);
    border-radius: 4px;
    opacity: 0.5;
    z-index: -1;
}

/* Description */
.hero__desc {
    font-size: var(--font-size-lg);
    color: var(--color-gray-500);
    line-height: 1.8;
    margin: 0 0 var(--spacing-xl);
    max-width: 460px;
}

/* ========================================
   BUTTONS
   ======================================== */

.hero__btns {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 16px 32px;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

/* Primary Button */
.hero__btn--primary {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: #ffffff;
    border: none;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 0 0 0 rgba(232, 160, 191, 0.4);
}

.hero__btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #d4789e 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero__btn--primary span,
.hero__btn--primary i {
    position: relative;
    z-index: 1;
}

.hero__btn--primary:hover {
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 
        0 8px 25px rgba(232, 160, 191, 0.5),
        0 0 0 4px rgba(232, 160, 191, 0.2);
}

.hero__btn--primary:hover span,
.hero__btn--primary:hover i {
    color: #ffffff;
}

.hero__btn--primary:hover::before {
    opacity: 1;
}

.hero__btn--primary i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: var(--font-size-sm);
    transition: all 0.4s ease;
}

.hero__btn--primary:hover i {
    transform: translateX(-5px);
    background: rgba(255, 255, 255, 0.3);
}

/* Secondary Button */
.hero__btn--secondary {
    background: var(--color-white);
    color: var(--color-gray-700);
    border: 2px solid var(--color-gray-200);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero__btn--secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 160, 191, 0.1) 0%, rgba(255, 182, 193, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero__btn--secondary span {
    position: relative;
    z-index: 1;
}

.hero__btn--secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 160, 191, 0.15);
}

.hero__btn--secondary:hover::before {
    opacity: 1;
}

/* ========================================
   FEATURES
   ======================================== */

.hero__features {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero__feat {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-gray-500);
    font-size: var(--font-size-sm);
}

.hero__feat i {
    font-size: var(--font-size-lg);
    color: var(--color-primary);
}

/* ========================================
   VISUAL
   ======================================== */

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__img-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
}

/* Background Circle */
.hero__img-bg {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(232, 160, 191, 0.1), rgba(255, 182, 193, 0.1));
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.4; }
}

/* Image Box */
.hero__img-box {
    position: relative;
    z-index: 2;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--color-white);
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gray-50), var(--color-gray-100));
    color: var(--color-gray-300);
    font-size: 4rem;
}

/* ========================================
   STAT CARDS
   ======================================== */

.hero__stat {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.hero__stat i {
    font-size: 1.25rem;
    color: #FFB800;
}

.hero__stat--bottom i {
    color: var(--color-primary);
}

.hero__stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__stat-info strong {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-gray-900);
}

.hero__stat-info span {
    font-size: 10px;
    color: var(--color-gray-400);
}

.hero__stat--top {
    top: 10%;
    right: -10px;
}

.hero__stat--bottom {
    bottom: 15%;
    left: -10px;
    animation-delay: -1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   DECORATIVE
   ======================================== */

.hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.hero__circle--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 160, 191, 0.2), transparent 70%);
    top: -10%;
    right: -5%;
}

.hero__circle--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.15), transparent 70%);
    bottom: -5%;
    left: -3%;
}

/* ========================================
   RESPONSIVE - LARGE DESKTOP (1440px+)
   ======================================== */

@media (min-width: 1440px) {
    .hero__content {
        max-width: 600px;
    }
    
    .hero__img-wrap {
        max-width: 480px;
    }
    
    .hero__stat--top {
        right: -30px;
    }
    
    .hero__stat--bottom {
        left: -30px;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP (1200px - 1439px)
   ======================================== */

@media (min-width: 1200px) and (max-width: 1439px) {
    .hero__grid {
        gap: var(--spacing-2xl);
    }
    
    .hero__img-wrap {
        max-width: 400px;
    }
}

/* ========================================
   RESPONSIVE - SMALL DESKTOP (1024px - 1199px)
   ======================================== */

@media (min-width: 1024px) and (max-width: 1199px) {
    .hero {
        padding: var(--spacing-3xl) 0;
    }
    
    .hero__grid {
        gap: var(--spacing-xl);
    }
    
    .hero__content {
        max-width: 450px;
    }
    
    .hero__title {
        font-size: 2.4rem;
    }
    
    .hero__desc {
        font-size: var(--font-size-base);
    }
    
    .hero__img-wrap {
        max-width: 360px;
    }
    
    .hero__stat {
        padding: 10px 14px;
    }
    
    .hero__stat--top {
        right: 0;
    }
    
    .hero__stat--bottom {
        left: 0;
    }
}

/* ========================================
   RESPONSIVE - TABLET LANDSCAPE (900px - 1023px)
   ======================================== */

@media (min-width: 900px) and (max-width: 1023px) {
    .hero {
        padding: var(--spacing-2xl) 0;
        min-height: auto;
    }
    
    .hero__grid {
        gap: var(--spacing-lg);
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__desc {
        font-size: var(--font-size-sm);
    }
    
    .hero__btn {
        padding: 12px 22px;
        font-size: var(--font-size-sm);
    }
    
    .hero__img-wrap {
        max-width: 320px;
    }
    
    .hero__stat {
        padding: 8px 12px;
    }
    
    .hero__stat i {
        font-size: 1rem;
    }
    
    .hero__stat-info strong {
        font-size: var(--font-size-xs);
    }
    
    .hero__stat-info span {
        font-size: 8px;
    }
}

/* ========================================
   RESPONSIVE - TABLET (768px - 899px)
   ======================================== */

@media (min-width: 768px) and (max-width: 899px) {
    .hero {
        padding: var(--spacing-2xl) 0;
        min-height: auto;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .hero__content {
        order: 2;
        max-width: 100%;
    }
    
    .hero__visual {
        order: 1;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__desc {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__btns {
        justify-content: center;
    }
    
    .hero__features {
        justify-content: center;
    }
    
    .hero__img-wrap {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero__stat--top {
        right: 10%;
        top: 5%;
    }
    
    .hero__stat--bottom {
        left: 10%;
        bottom: 5%;
    }
    
    .hero__circle--1 {
        width: 300px;
        height: 300px;
    }
    
    .hero__circle--2 {
        width: 200px;
        height: 200px;
    }
}

/* ========================================
   RESPONSIVE - LARGE MOBILE (640px - 767px)
   ======================================== */

@media (min-width: 640px) and (max-width: 767px) {
    .hero {
        padding: var(--spacing-xl) 0;
        min-height: auto;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .hero__content {
        order: 2;
    }
    
    .hero__visual {
        order: 1;
    }
    
    .hero__badge {
        padding: 6px 12px;
        font-size: var(--font-size-xs);
    }
    
    .hero__title {
        font-size: 1.8rem;
    }
    
    .hero__desc {
        font-size: var(--font-size-sm);
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__btns {
        justify-content: center;
        gap: var(--spacing-sm);
    }
    
    .hero__btn {
        padding: 12px 20px;
        font-size: var(--font-size-sm);
    }
    
    .hero__features {
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .hero__feat {
        font-size: var(--font-size-xs);
    }
    
    .hero__img-wrap {
        max-width: 260px;
        margin: 0 auto;
    }
    
    .hero__stat {
        padding: 8px 12px;
    }
    
    .hero__stat i {
        font-size: 1rem;
    }
    
    .hero__stat-info strong {
        font-size: var(--font-size-xs);
    }
    
    .hero__stat-info span {
        font-size: 8px;
    }
    
    .hero__stat--top {
        right: 5%;
        top: 0;
    }
    
    .hero__stat--bottom {
        left: 5%;
        bottom: 0;
    }
    
    .hero__circle--1 {
        width: 250px;
        height: 250px;
    }
    
    .hero__circle--2 {
        width: 180px;
        height: 180px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (480px - 639px)
   ======================================== */

@media (min-width: 480px) and (max-width: 639px) {
    .hero {
        padding: var(--spacing-lg) 0;
        min-height: auto;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .hero__content {
        order: 2;
    }
    
    .hero__visual {
        order: 1;
    }
    
    .hero__badge {
        padding: 5px 10px;
        font-size: 11px;
        margin-bottom: var(--spacing-md);
    }
    
    .hero__title {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero__desc {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-md);
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__btns {
        justify-content: center;
        gap: 10px;
        margin-bottom: var(--spacing-md);
    }
    
    .hero__btn {
        padding: 10px 18px;
        font-size: var(--font-size-xs);
    }
    
    .hero__features {
        justify-content: center;
        gap: var(--spacing-sm);
    }
    
    .hero__feat {
        font-size: 10px;
    }
    
    .hero__feat i {
        font-size: var(--font-size-base);
    }
    
    .hero__img-wrap {
        max-width: 220px;
        margin: 0 auto;
    }
    
    .hero__img-bg {
        inset: -15px;
    }
    
    .hero__stat {
        padding: 6px 10px;
        gap: 6px;
    }
    
    .hero__stat i {
        font-size: 0.9rem;
    }
    
    .hero__stat-info strong {
        font-size: 10px;
    }
    
    .hero__stat-info span {
        font-size: 7px;
    }
    
    .hero__stat--top {
        right: 0;
        top: -5px;
    }
    
    .hero__stat--bottom {
        left: 0;
        bottom: -5px;
    }
    
    .hero__circle--1 {
        width: 200px;
        height: 200px;
    }
    
    .hero__circle--2 {
        width: 150px;
        height: 150px;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (375px - 479px)
   ======================================== */

@media (min-width: 375px) and (max-width: 479px) {
    .hero {
        padding: var(--spacing-lg) 0;
        min-height: auto;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .hero__content {
        order: 2;
    }
    
    .hero__visual {
        order: 1;
    }
    
    .hero__badge {
        padding: 6px 12px;
        font-size: 10px;
        margin-bottom: var(--spacing-md);
    }
    
    .hero__title {
        font-size: 1.4rem;
        margin-bottom: var(--spacing-xs);
        line-height: 1.4;
    }
    
    .hero__highlight::after {
        height: 5px;
        bottom: 2px;
    }
    
    .hero__desc {
        font-size: 12px;
        margin-bottom: var(--spacing-md);
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }
    
    .hero__btns {
        justify-content: center;
        gap: 10px;
        margin-bottom: var(--spacing-md);
        flex-direction: column;
        align-items: stretch;
        padding: 0 var(--spacing-lg);
    }
    
    .hero__btn {
        padding: 12px 20px;
        font-size: 11px;
        border-radius: 50px;
        justify-content: center;
        min-height: 44px;
    }
    
    .hero__btn--primary i {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .hero__features {
        justify-content: center;
        gap: var(--spacing-sm);
        flex-wrap: wrap;
    }
    
    .hero__feat {
        font-size: 10px;
        gap: 4px;
    }
    
    .hero__feat i {
        font-size: var(--font-size-base);
    }
    
    .hero__img-wrap {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .hero__img-bg {
        inset: -12px;
    }
    
    .hero__img-box {
        border-width: 3px;
    }
    
    .hero__stat {
        padding: 6px 10px;
        gap: 6px;
        border-radius: var(--radius-lg);
    }
    
    .hero__stat i {
        font-size: 0.9rem;
    }
    
    .hero__stat-info strong {
        font-size: 10px;
    }
    
    .hero__stat-info span {
        font-size: 7px;
    }
    
    .hero__stat--top {
        right: -5px;
        top: 5%;
    }
    
    .hero__stat--bottom {
        left: -5px;
        bottom: 5%;
    }
    
    .hero__circle--1 {
        width: 160px;
        height: 160px;
    }
    
    .hero__circle--2 {
        width: 120px;
        height: 120px;
    }
}

/* ========================================
   RESPONSIVE - EXTRA SMALL MOBILE (< 375px)
   ======================================== */

@media (max-width: 374px) {
    .hero {
        padding: var(--spacing-md) 0;
        min-height: auto;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .hero__content {
        order: 2;
    }
    
    .hero__visual {
        order: 1;
    }
    
    .hero__badge {
        padding: 5px 10px;
        font-size: 9px;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero__title {
        font-size: 1.2rem;
        margin-bottom: 6px;
        line-height: 1.4;
    }
    
    .hero__highlight::after {
        height: 4px;
        bottom: 1px;
    }
    
    .hero__desc {
        font-size: 10px;
        margin-bottom: var(--spacing-sm);
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }
    
    .hero__btns {
        justify-content: center;
        gap: 8px;
        margin-bottom: var(--spacing-sm);
        flex-direction: column;
        align-items: stretch;
        padding: 0 var(--spacing-md);
    }
    
    .hero__btn {
        padding: 10px 16px;
        font-size: 10px;
        border-radius: 40px;
        justify-content: center;
        min-height: 40px;
    }
    
    .hero__btn--primary i {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
    
    .hero__btn--secondary {
        border-width: 1.5px;
    }
    
    .hero__features {
        justify-content: center;
        gap: var(--spacing-xs);
        flex-wrap: wrap;
    }
    
    .hero__feat {
        font-size: 9px;
        gap: 3px;
    }
    
    .hero__feat i {
        font-size: var(--font-size-sm);
    }
    
    .hero__img-wrap {
        max-width: 170px;
        margin: 0 auto;
    }
    
    .hero__img-bg {
        inset: -10px;
    }
    
    .hero__img-box {
        border-width: 2px;
    }
    
    .hero__stat {
        padding: 5px 8px;
        gap: 5px;
        border-radius: var(--radius-md);
    }
    
    .hero__stat i {
        font-size: 0.8rem;
    }
    
    .hero__stat-info strong {
        font-size: 9px;
    }
    
    .hero__stat-info span {
        font-size: 6px;
    }
    
    .hero__stat--top {
        right: 0;
        top: 0;
    }
    
    .hero__stat--bottom {
        left: 0;
        bottom: 0;
    }
    
    .hero__circle--1 {
        width: 120px;
        height: 120px;
    }
    
    .hero__circle--2 {
        width: 100px;
        height: 100px;
    }
}

/* ========================================
   LANDSCAPE MOBILE
   ======================================== */

@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        padding: var(--spacing-md) 0;
        min-height: auto;
    }
    
    .hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
        text-align: right;
    }
    
    .hero__content {
        order: 1;
    }
    
    .hero__visual {
        order: 2;
    }
    
    .hero__title {
        font-size: 1.4rem;
    }
    
    .hero__desc {
        font-size: var(--font-size-xs);
    }
    
    .hero__btn {
        padding: 8px 14px;
        font-size: 10px;
    }
    
    .hero__features {
        gap: var(--spacing-sm);
    }
    
    .hero__feat {
        font-size: 9px;
    }
    
    .hero__img-wrap {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .hero__stat {
        display: none;
    }
}

/* ========================================
   TOUCH DEVICES
   ======================================== */

@media (hover: none) {
    .hero__btn {
        -webkit-tap-highlight-color: transparent;
    }
    
    .hero__btn--primary:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(232, 160, 191, 0.4);
        color: #ffffff;
    }
    
    .hero__btn--primary:hover::before {
        opacity: 0;
    }
    
    .hero__btn--primary:active {
        transform: scale(0.96);
        box-shadow: 0 2px 10px rgba(232, 160, 191, 0.5);
    }
    
    .hero__btn--primary:active::before {
        opacity: 1;
    }
    
    .hero__btn--primary:active span,
    .hero__btn--primary:active i {
        color: #ffffff;
    }
    
    .hero__btn--secondary:hover {
        transform: none;
        border-color: var(--color-gray-200);
        color: var(--color-gray-700);
    }
    
    .hero__btn--secondary:hover::before {
        opacity: 0;
    }
    
    .hero__btn--secondary:active {
        transform: scale(0.96);
        border-color: var(--color-primary);
        color: var(--color-primary);
        background: rgba(232, 160, 191, 0.08);
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .hero__img-bg,
    .hero__stat,
    .hero__btn,
    .hero__btn i {
        animation: none !important;
        transition: none !important;
    }
}

/* ========================================
   PRINT
   ======================================== */

@media print {
    .hero {
        min-height: auto;
        padding: 20px 0;
        background: none;
    }
    
    .hero__decor,
    .hero__stat,
    .hero__img-bg {
        display: none !important;
    }
    
    .hero__img-box {
        border: 1px solid #ccc;
        border-radius: 8px;
    }
}
