@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700;800&display=swap');

.ll-fashion-hero {
    --ll-pink: #fde8e8;
    --ll-red: #e63946;
    --ll-black: #000000;
    
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: radial-gradient(circle at top right, var(--ll-pink) 0%, #ffffff 50%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 20px;
    position: relative;
}

.ll-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    width: 100%;
}

/* Typography */
.ll-label {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ll-highlight { color: var(--ll-red); }

.ll-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 10vw, 130px);
    margin: 0 0 30px 0;
    line-height: 0.9;
    display: flex;
    align-items: center;
}

.ll-pill-box {
    background: var(--ll-black);
    color: #fff;
    padding: 10px 40px;
    border-radius: 100px;
    margin-left: -5px;
}

.ll-description {
    font-size: 18px;
    color: #444;
    max-width: 450px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Button */
.ll-btn-shop {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--ll-black);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.ll-btn-shop:hover { transform: scale(1.05); }

.ll-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.ll-btn-secondary,
.ll-btn-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 26px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.12);
    color: var(--ll-black);
    background: #ffffff;
    transition: transform 0.3s ease, filter 0.2s ease;
}

.ll-btn-tertiary {
    background: rgba(0,0,0,0.06);
}

.ll-btn-secondary:hover,
.ll-btn-tertiary:hover {
    transform: scale(1.03);
    filter: brightness(0.98);
}

/* Bottom Stats */
.ll-footer-stats {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 80px;
}

.ll-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--ll-black);
}

.ll-stat-label { color: var(--ll-red); font-weight: 600; }

.ll-preview-box { display: flex; align-items: center; gap: 15px; }

.ll-video-thumb {
    width: 100px; height: 60px;
    background: #222; border-radius: 30px;
    display: flex; align-items: center; justify-content: center;
}

.ll-play-btn {
    width: 0; height: 0; 
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid white;
}

/* Visuals */
.ll-visual { position: relative; }

.ll-img-placeholder {
    background: #eee;
    display: flex; align-items: center; justify-content: center;
    color: #999; font-size: 12px;
}

.ll-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.main-cutout { width: 100%; height: 700px; border-radius: 20px; }
.sub-circle { 
    width: 250px; height: 250px; 
    border-radius: 50%; 
    border: 8px solid white;
    position: absolute;
    bottom: -50px; left: -100px;
}

.ll-star {
    position: absolute;
    font-size: 32px;
    color: var(--ll-red);
}

.star-1 { top: -20px; left: 20%; }
.star-2 { top: 40%; right: 10%; color: black;}
.star-3 { bottom: 10%; left: 0; }

.ll-rotating-text {
    position: absolute;
    right: -50px; top: 10%;
    width: 150px; height: 150px;
    animation: rotateText 20s linear infinite;
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ll-rotating-text path { fill: none; }
.ll-rotating-text text { font-size: 10px; font-weight: bold; letter-spacing: 2px; }

/* Responsive */
@media (max-width: 992px) {
    .ll-container { grid-template-columns: 1fr; text-align: center; }
    .ll-content { display: flex; flex-direction: column; align-items: center; }
    .ll-title { justify-content: center; font-size: 60px; }
    .ll-sub-img-wrapper { display: none; }
    .ll-footer-stats { flex-direction: column; gap: 30px; }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.nx-excellence-v3 {
    font-family: 'Inter', sans-serif;
    padding: 100px 20px;
    background-color: #ffffff;
    color: #1a1a1a;
}

.nx-container {
    max-width: 1200px;
    margin: 0 auto;
}

.nx-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.nx-main-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.nx-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Grid */
.nx-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card Styling */
.nx-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.nx-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.nx-card-top {
    padding: 30px;
    flex: 1;
}

.nx-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.nx-card-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.nx-card-link {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000;
    padding-bottom: 2px;
}

/* Bottom Graphic */
.nx-card-graphic {
    width: 100%;
    height: 120px;
    overflow: hidden;
    margin-top: auto;
}

.nx-card-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Soft curve effect as seen in image */
    clip-path: ellipse(80% 100% at 50% 100%);
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .nx-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .nx-grid { grid-template-columns: 1fr; }
    .nx-main-title { font-size: 32px; }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.hr-features-section {
    font-family: 'Inter', sans-serif;
    padding: 80px 20px;
    background-color: #ffffff;
    color: #1a1a1a;
}

.hr-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hr-feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.hr-feature-row:last-child {
    margin-bottom: 0;
}

/* Modifier for alternating layout */
.hr-feature-row.hr-reverse {
    flex-direction: row-reverse;
}

.hr-feature-image {
    flex: 1;
}

.hr-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.hr-feature-content {
    flex: 1;
}

.hr-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hr-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hr-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.hr-bullets li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #4b5563;
    font-size: 15px;
}

.hr-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #9ca3af;
    font-weight: bold;
}

/* Lilac Button */
.hr-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #a78bfa; /* Lilac / Purple color from image */
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hr-btn:hover {
    background-color: #8b5cf6;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hr-feature-row, 
    .hr-feature-row.hr-reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hr-title {
        font-size: 32px;
    }

    .hr-bullets li {
        padding-left: 0;
    }
    
    .hr-bullets li::before {
        display: none;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.gp-features-grid {
    font-family: 'Inter', sans-serif;
    padding: 100px 20px;
    background-color: #ffffff;
    color: #0b1130;
}

.gp-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.gp-header {
    text-align: center;
    margin-bottom: 70px;
}

.gp-badge {
    color: #5e3bee;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.gp-headline {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Grid */
.gp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 25px;
}

/* Card */
.gp-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f2f4f8;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.gp-icon {
    width: 32px;
    height: 32px;
    color: #5e3bee;
    margin-bottom: 25px;
}

.gp-icon svg {
    width: 100%;
    height: 100%;
}

.gp-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    color: #0b1130;
}

/* Responsive */
@media (max-width: 1024px) {
    .gp-grid { grid-template-columns: repeat(2, 1fr); }
    .gp-headline { font-size: 32px; }
}

@media (max-width: 600px) {
    .gp-grid { grid-template-columns: 1fr; }
    .gp-header { margin-bottom: 40px; }
}

/* Unique prefix: ms-faq */
.ms-faq-v4 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 80px 20px;
    background-color: #fff;
    color: #1a1a1a;
}

.ms-faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Styles */
.ms-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.ms-faq-intro p {
    margin: 0;
    font-size: 16px;
    color: #777;
    line-height: 1.4;
}

.ms-faq-main-title {
    font-family: "Playfair Display", "Georgia", serif; /* Serif font for the title */
    font-style: italic;
    font-size: 80px;
    margin: 0;
    font-weight: 400;
}

.ms-faq-main-title span {
    font-size: 40px;
    vertical-align: middle;
    margin-left: 10px;
    font-style: normal;
}

/* List Styles */
.ms-faq-list {
    border-bottom: 1px solid #e0e0e0;
}

.ms-faq-item {
    border-top: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.ms-faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.ms-faq-question {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Plus/X Icon */
.ms-faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.ms-faq-icon::before,
.ms-faq-icon::after {
    content: '';
    position: absolute;
    background-color: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.4s ease;
}

.ms-faq-icon::before { width: 100%; height: 1.5px; }
.ms-faq-icon::after { width: 1.5px; height: 100%; }

/* Content Grid Layout */
.ms-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split column to push text to right */
}

.ms-faq-answer {
    grid-column: 2; /* Forces answer to the right side */
    padding: 0 0 40px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    max-width: 450px;
}

/* Active State */
.ms-faq-item.active .ms-faq-content {
    max-height: 1000px;
    transition: max-height 0.8s cubic-bezier(1, 0, 1, 0);
}

.ms-faq-item.active .ms-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.ms-faq-item.active .ms-faq-icon::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .ms-faq-main-title { font-size: 50px; }
    .ms-faq-content { grid-template-columns: 1fr; }
    .ms-faq-answer { grid-column: 1; padding: 0 0 30px 0; }
    .ms-faq-question { font-size: 16px; max-width: 80%; }
}
