/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed header */
}

/* Scroll Reveal Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
                transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Hero section should be visible immediately */
.hero.fade-in-section {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered fade-in for individual items */
.fade-in-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
                transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #999999;
    --accent-bg: #14213D;
    --text-primary: #000000;
    --text-secondary: #14213D;
    --text-tertiary: #999999;
    --accent-color: #FCA311;
    --dark-navy: #14213D;
    --bright-orange: #FCA311;
    --light-gray: #E5E5E5;
    --black: #000000;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 69px; /* Account for fixed header height */
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #ffd580);
    z-index: 9999;
    transition: width 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 10px rgba(252, 163, 17, 0.5);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    height: 69px;
    display: flex;
    align-items: center;
}

.header .container {
    max-width: 100%;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 960px;
    gap: 40px;
    margin: 0 auto;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.nav {
    display: flex;
    gap: 15px;
}

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    align-items: end;
}

.nav a:hover {
    background-color: var(--secondary-bg);
    color: var(--black);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    margin-left: auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 69px;
        right: 0;
        background-color: var(--primary-bg);
        flex-direction: column;
        width: 300px;
        padding: 24px;
        gap: 8px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav a {
        padding: 12px 16px;
        font-size: 16px;
    }
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(252, 163, 17, 0.03) 0%, transparent 50%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -3px;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-navy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-tertiary);
    font-weight: 600;
    margin-bottom: 48px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: -0.3px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--black);
    color: var(--primary-bg);
    font-size: 17px;
    font-weight: 500;
    padding: 18px 52px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.2px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 163, 17, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), #ffd580);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-button:hover {
    background-color: var(--dark-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    transform: scaleX(1);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Features Section */
.features {
    padding: 50px 0;
    background-color: #FAFAFA;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 44px;
    background-color: var(--primary-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    border-top: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), #ffd580);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    background-color: var(--primary-bg);
    border-color: rgba(252, 163, 17, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: var(--black);
}

.feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    letter-spacing: -0.1px;
}

/* Section Titles */
.section-title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-tertiary);
    margin-bottom: 0px;
    max-width: 700px;
}

/* Inspirational Section */
.inspirational {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 200px;
    background:
        linear-gradient(135deg, rgba(252, 163, 17, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    background-size: 100% 100%, 100% 100%;
}

.inspirational::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    opacity: 0.8;
    z-index: 10;
    box-shadow: 0 0 20px rgba(252, 163, 17, 0.3);
}

.inspirational::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    opacity: 0.8;
    z-index: 10;
    box-shadow: 0 0 20px rgba(252, 163, 17, 0.3);
}

/* Carousel as Background */
.carousel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 0;
    opacity: 1;
}

.carousel-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0) 35%,
        rgba(0,0,0,0) 65%,
        rgba(0,0,0,0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.carousel-track {
    display: flex;
    gap: 16px;
    width: fit-content;
    flex-shrink: 0;
}

/* Row 1: Perfumes & Cosmetics - Moving Left (Fast) */
.carousel-track-1 {
    animation: scroll-left 40s linear infinite;
}

/* Row 2: Food Items - Moving Right (Medium) */
.carousel-track-2 {
    animation: scroll-right 50s linear infinite;
}

/* Row 3: Accessories - Moving Left (Slow) */
.carousel-track-3 {
    animation: scroll-left 60s linear infinite;
}

.carousel-item {
    flex-shrink: 0;
    width: 280px;
    height: 180px;
    background-color: var(--secondary-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

/* Remove placeholder text since we have real images */
.carousel-item::before {
    content: none;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-33.33%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Content Overlay */
.inspirational-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.inspirational-overlay .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 24px;
}

.inspirational-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.80);
    padding: 48px 48px;
    border-radius: 20px;
    box-shadow:
        0 0 0 1px rgba(252, 163, 17, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(252, 163, 17, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.inspirational-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    opacity: 0.8;
}

.inspirational-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 163, 17, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

/* Typography tuned to match the new inspirational overlay design */
.inspirational-content .section-title {
    text-align: center;
    color: var(--text-primary);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1.5px;
    text-shadow: none;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-navy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.inspirational-content .section-subtitle {
    text-align: center;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.4;
    text-shadow: none;
    position: relative;
    z-index: 1;
    opacity: 0.85;
}

/* Kicker line above the button */
.section-kicker {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 24px 0 12px;
    text-shadow: none;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inspirational-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.inspirational-buttons .btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff9800 100%);
    color: var(--black);
    font-weight: 600;
    padding: 18px 40px;
    font-size: 17px;
    box-shadow:
        0 0 0 1px rgba(252, 163, 17, 0.3),
        0 8px 24px rgba(252, 163, 17, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.inspirational-buttons .btn-primary::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.inspirational-buttons .btn-primary::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
}

.inspirational-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #ff9800 0%, var(--accent-color) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 0 1px rgba(252, 163, 17, 0.5),
        0 12px 36px rgba(252, 163, 17, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Floating Decorative Accents */
.floating-accent {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.accent-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float-1 20s ease-in-out infinite;
}

.accent-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 8%;
    animation: float-2 15s ease-in-out infinite;
}

.accent-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation: float-3 18s ease-in-out infinite;
}

.accent-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 20%;
    animation: float-4 22s ease-in-out infinite;
}

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

@keyframes float-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-40px, -30px) scale(1.15);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -50px) scale(1.2);
    }
}

@keyframes float-4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-25px, 35px) scale(1.05);
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--black);
    color: var(--primary-bg);
    font-size: 16px;
    font-weight: 500;
    padding: 16px 36px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.2px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 163, 17, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), #ffd580);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary:hover {
    background-color: var(--dark-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18), 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover::after {
    transform: scaleX(1);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Button Icon Styling */
.btn-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cta-button:hover .btn-icon,
.btn-primary:hover .btn-icon {
    transform: scale(1.1);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    padding: 16px 36px;
    border: 1.5px solid var(--black);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.2px;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: var(--border-radius);
    background-color: var(--black);
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--primary-bg);
    border-color: var(--black);
}

.btn-secondary:hover::before {
    width: 100%;
    height: 100%;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, #FAFAFA 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.faq .section-title {
    text-align: center;
    margin-bottom: 24px;
}

.faq .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 16px auto 0;
    border-radius: 2px;
}

.faq-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-tertiary);
    font-weight: 500;
    max-width: 600px;
    margin: 16px auto 0;
    letter-spacing: -0.2px;
}

.faq-list {
    max-width: 840px;
    margin: 48px auto 0;
}

.faq-item {
    background-color: var(--primary-bg);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item:hover {
    border-color: rgba(252, 163, 17, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.faq-item[open] {
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(252, 163, 17, 0.12);
}

.faq-item summary {
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--text-primary);
    letter-spacing: -0.3px;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 2px;
}

.faq-item[open] .faq-question::before {
    height: 60%;
}

.faq-question:hover {
    color: var(--dark-navy);
}

.faq-item[open] .faq-question {
    color: var(--black);
    padding-bottom: 16px;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(252, 163, 17, 0.08);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item:hover .faq-icon {
    background-color: rgba(252, 163, 17, 0.15);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

.faq-answer {
    padding: 0 28px 24px 28px;
    animation: slideDown 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 1px solid rgba(252, 163, 17, 0.1);
    margin-top: 8px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: -0.1px;
    padding-top: 12px;
}

/* FAQ Collapsible */
.faq-hidden {
    max-height: 0 !important;
    opacity: 0;
    overflow: hidden;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    transition: max-height 0.4s ease,
                opacity 0.3s ease,
                margin 0.4s ease;
    pointer-events: none;
}

.faq-item:not(.faq-hidden) {
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.4s ease,
                opacity 0.3s ease;
}

.faq-toggle-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-top: 0;
    border-top: none;
}

.faq-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary);
    padding: 12px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.5;
    position: relative;
}

.faq-toggle-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-toggle-btn:hover {
    opacity: 1;
    transform: translateY(2px);
}

.faq-toggle-btn:hover::before {
    opacity: 1;
}

.faq-toggle-btn .toggle-icon {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.faq-toggle-btn.expanded .toggle-icon {
    transform: rotate(180deg);
}

.faq-toggle-btn:active {
    transform: scale(0.9) translateY(2px);
}

/* Subtle pulse animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

.faq-toggle-btn:not(.expanded) {
    animation: pulse 2s ease-in-out infinite;
}

/* Newsletter Section */
.newsletter {
    padding: 70px 0;
    background: radial-gradient(ellipse at bottom, rgba(252, 163, 17, 0.03) 0%, transparent 50%);
    position: relative;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-content .section-title {
    margin: 0 auto 20px;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.newsletter-content .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.newsletter-content .section-subtitle {
    margin: 0 auto 48px;
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-tertiary);
    font-weight: 600;
    max-width: 600px;
    letter-spacing: -0.2px;
}

.message {
    max-width: 500px;
    margin: 0 auto 32px;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    letter-spacing: -0.2px;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.success {
    background: linear-gradient(135deg, rgba(252, 163, 17, 0.1) 0%, rgba(252, 163, 17, 0.05) 100%);
    color: var(--black);
    border: 1px solid rgba(252, 163, 17, 0.3);
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 20px rgba(252, 163, 17, 0.15);
}

.message.error {
    background: linear-gradient(135deg, rgba(114, 28, 36, 0.08) 0%, rgba(114, 28, 36, 0.04) 100%);
    color: #721c24;
    border: 1px solid rgba(114, 28, 36, 0.3);
    border-left: 4px solid #721c24;
    box-shadow: 0 4px 20px rgba(114, 28, 36, 0.1);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.newsletter-input {
    width: 100%;
    max-width: 400px;
    padding: 18px 24px;
    font-size: 16px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background-color: var(--primary-bg);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: -0.1px;
    text-align: center;
}

.newsletter-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(252, 163, 17, 0.1), 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.newsletter-button {
    width: 100%;
    max-width: 400px;
    padding: 18px 48px;
    font-size: 17px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-navy) 100%);
    color: var(--primary-bg);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.3px;
    position: relative;
    overflow: hidden;
}

.newsletter-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 163, 17, 0.4), transparent);
    transition: left 0.6s ease;
}

.newsletter-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--accent-color);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.newsletter-button:hover {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--black) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.12);
}

.newsletter-button:hover::before {
    left: 100%;
}

.newsletter-button:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.newsletter-button:active {
    transform: translateY(-1px);
}

.newsletter-note {
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    padding: 50px 0 40px;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    color: var(--primary-bg);
    border-top: 2px solid var(--accent-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.footer .logo {
    color: var(--primary-bg);
}

.footer .logo img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-nav {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-tagline {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 4px;
    word-break: break-all;
}

.footer-email svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    min-width: 16px;
}

.footer-email:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-bg);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-bg);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(252, 163, 17, 0.3);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 810px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .inspirational {
        min-height: 500px;
    }

    .carousel-wrapper {
        gap: 12px;
        padding: 0;
    }

    .carousel-track {
        gap: 12px;
    }

    .carousel-item {
        width: 220px;
        height: 140px;
    }

    .inspirational-overlay .container {
        padding: 30px 24px;
    }

    .inspirational-content {
        padding: 32px 28px;
        border-radius: 16px;
    }

    .inspirational-content .section-title {
        font-size: 32px;
    }

    .inspirational-content .section-subtitle {
        font-size: 18px;
    }

    .section-kicker {
        font-size: 14px;
        margin: 20px 0 10px;
    }

    .floating-accent {
        display: none;
    }

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

    .footer-brand {
        align-items: center;
        width: 100%;
    }

    .footer-nav {
        flex-direction: column;
        gap: 24px;
        width: 100%;
        align-items: center;
    }

    .footer-section {
        align-items: center;
        width: 100%;
    }

    .footer-links {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-nav {
        gap: 32px;
    }

    .footer-email {
        font-size: 13px;
    }

    .faq-question {
        font-size: 17px;
        padding: 20px 20px;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
}

@media (max-width: 390px) {
    .hero-title {
        font-size: 36px;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .cta-button {
        font-size: 16px;
        padding: 14px 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .inspirational {
        min-height: 400px;
    }

    .carousel-wrapper {
        gap: 10px;
        padding: 0;
    }

    .carousel-track {
        gap: 10px;
    }

    .carousel-item {
        width: 180px;
        height: 115px;
        border-radius: 8px;
    }

    /* Speed up animations on small screens for better visual */
    .carousel-track-1 {
        animation: scroll-left 30s linear infinite;
    }

    .carousel-track-2 {
        animation: scroll-right 35s linear infinite;
    }

    .carousel-track-3 {
        animation: scroll-left 40s linear infinite;
    }

    .inspirational-content {
        padding: 28px 20px;
        border-radius: 12px;
    }

    .inspirational-content .section-title {
        font-size: 28px;
    }

    .inspirational-content .section-subtitle {
        font-size: 16px;
    }

    .section-kicker {
        font-size: 13px;
        margin: 16px 0 8px;
    }

    .inspirational-buttons .btn-primary {
        padding: 16px 32px;
        font-size: 16px;
    }

    .inspirational-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-nav {
        gap: 20px;
    }

    .footer-email {
        font-size: 12px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 16px;
    }

    .faq-answer {
        padding: 0 16px 18px 16px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-subtitle {
        font-size: 16px;
    }
}

/* About Page Styles */
/* New layout to match the provided About page mock */
/* About Page Styles */
.about-page {
    background: var(--primary-bg);
}

/* Hero Section */
.about-hero-section {
    padding: 80px 0 60px;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(252, 163, 17, 0.03) 0%, transparent 50%);
    position: relative;
}

.about-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-kicker {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.about-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
}

/* Story Section */
.about-story-section {
    padding: 60px 0;
    background: #FAFAFA;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-section-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.about-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.about-text {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 24px;
    padding-left: 20px;
    border-left: 3px solid var(--accent-color);
}

.about-visual-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-visual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.visual-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.visual-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.visual-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Mission Section */
.about-mission-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.about-mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.mission-statement {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.mission-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.value-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.value-item:hover {
    border-color: rgba(252, 163, 17, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.value-item:hover::before {
    height: 100%;
}

.value-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.value-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Vision Section */
.about-vision-section {
    padding: 70px 0;
    background: radial-gradient(ellipse at bottom, rgba(252, 163, 17, 0.03) 0%, transparent 50%);
}

.about-vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.vision-text {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.team-note {
    margin-top: 48px;
    padding: 32px;
    background: rgba(252, 163, 17, 0.05);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.team-note p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
}

.about-footer-legal {
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.about-footer-legal p {
    font-size: 13px;
    color: var(--text-tertiary);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 980px) {
    .about-hero-title {
        font-size: 42px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-values {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mission-statement {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 60px 0 40px;
    }

    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-subtitle {
        font-size: 18px;
    }

    .about-section-title {
        font-size: 28px;
    }

    .vision-title {
        font-size: 28px;
    }

    .mission-statement {
        font-size: 26px;
    }
}


/* Features Alt Layout (image-text alternating) */
.features.features-alt {
    padding: 60px 0;
}

.features-alt .feature-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.features-alt .feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}

/* Layout follows HTML order - no forced grid-column */

.features-alt .feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center; /* center the text block within its column */
}

.features-alt .feature-text .feature-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.features-alt .feature-text .feature-description {
    font-size: 22px;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 480px;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.features-alt .feature-visual .visual-tile {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Fallback for older browsers to avoid broken tiles */
    min-height: 340px;
    background: #f2f2f2;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-alt .feature-visual .feature-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
}

/* Centered simple shapes to echo the mock */
.features-alt .shape { display: inline-block; }
.features-alt .shape-square {
    width: 70px; height: 70px; background: #ffffff; border-radius: 10px;
}
.features-alt .shape-circle {
    width: 84px; height: 84px; background: #ffffff; border-radius: 50%;
}
.features-alt .shape-triangle {
    width: 0; height: 0; border-left: 46px solid transparent; border-right: 46px solid transparent; border-bottom: 80px solid #ffffff;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .features-alt .feature-rows {
        gap: 40px;
    }

    .features-alt .feature-row {
        display: block;
        position: relative;
        width: 100%;
        padding-bottom: 100%; /* 1:1 aspect ratio */
    }

    .features-alt .feature-visual {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .features-alt .feature-visual .visual-tile {
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1;
    }

    .features-alt .feature-text {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
        color: white;
        padding: 40px 24px 24px;
        max-width: 100%;
        z-index: 2;
        border-radius: 0 0 12px 12px;
    }

    .features-alt .feature-text .feature-title {
        color: white;
        font-size: 28px;
    }

    .features-alt .feature-text .feature-description {
        color: rgba(255, 255, 255, 0.9);
        max-width: none;
        font-size: 16px;
    }
}

/* Tweaks: center text blocks inward and make shapes robust */
.features-alt .shape { display: inline-block; flex: 0 0 auto; }

/* Equal padding for text */
.features-alt .feature-row .feature-text { padding: 40px 60px; }

/* Keep text width comfortable */
.features-alt .feature-text { max-width: 520px; }

@media (max-width: 1200px) {
    .features-alt .feature-row .feature-text { padding: 60px 60px; }
}

@media (max-width: 768px) {
    .features-alt .feature-row .feature-text { padding: 40px 24px 24px; }
    .features-alt .feature-text { max-width: none; }
}