* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    color: #285b75;
    background-color: #fff;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

.hero-section:hover .hero-image {
    transform: scale(1.1);
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.7) 50%, 
        transparent 100%);
}

/* Animated particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(249, 180, 42, 0.3);
    border-radius: 50%;
    opacity: 0;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 70%;
    animation: float 20s infinite ease-in-out 2s;
}

.particle:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 80%;
    animation: float 18s infinite ease-in-out 4s;
}

.particle:nth-child(4) {
    width: 70px;
    height: 70px;
    top: 70%;
    left: 20%;
    animation: float 22s infinite ease-in-out 1s;
}

.particle:nth-child(5) {
    width: 50px;
    height: 50px;
    top: 30%;
    left: 60%;
    animation: float 19s infinite ease-in-out 3s;
}

.particle:nth-child(6) {
    width: 30px;
    height: 30px;
    top: 80%;
    left: 50%;
    animation: float 16s infinite ease-in-out 5s;
}

.particle:nth-child(7) {
    width: 65px;
    height: 65px;
    top: 15%;
    left: 40%;
    animation: float 21s infinite ease-in-out 2.5s;
}

.particle:nth-child(8) {
    width: 45px;
    height: 45px;
    top: 50%;
    left: 30%;
    animation: float 17s infinite ease-in-out 1.5s;
}
.feature-item img {
  width: 36px;      
  height: 36px;
  object-fit: contain;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-container {
    max-width: 1400px;
    margin-left: 0;
    margin-right: auto;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 48rem;
    text-align: left;
    margin-left: 0 !important;
    opacity: 0;
    transform: translateX(-60px);
    animation: waveSlide 1.4s ease-out forwards;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(249, 180, 42, 0.1);
    border: 1px solid rgba(249, 180, 42, 0.2);
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease-out;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #f9b42a;
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #f9b42a;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #285b75;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: waveSlide 1.6s ease-out forwards, titleWave 1.8s ease-in-out;
}

.gradient-text {
    background: linear-gradient(135deg, #f9b42a 0%, #fabb1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

/* Add a shimmer effect to the gradient text */
.gradient-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    20% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #285b75;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    justify-content: flex-start;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    height: 4rem;
    padding: 0 3rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Fix for button clickability */
.btn {
    pointer-events: auto;
}

.btn-hero {
    background: linear-gradient(135deg, #f06228, #f09a25);
    color: white;
    box-shadow: 0 4px 14px rgba(249, 180, 42, 0.3);
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fabb1c 0%, #f9b42a 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-hero:hover::before {
    opacity: 1;
}

.btn-hero:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(249, 180, 42, 0.4);
}

.btn-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-hero:hover .btn-arrow {
    transform: translateX(3px);
}

/* Pulse animation for primary button */
.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 180, 42, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(249, 180, 42, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 180, 42, 0);
    }
}

.btn-outline {
    border: 2px solid #285b75;
    background: transparent;
    color: #285b75;
    overflow: visible;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #285b75;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    transform: scaleX(1);
}

.btn-outline:hover {
    color: white;
    transform: translateY(-2px);
}

/* Podcast Button with Waveform Animation */
.podcast-btn {
    position: relative;
    overflow: visible;
}

.mic-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.mic-icon {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.waveform {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 0;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
    z-index: 1;
}

.podcast-btn:hover .waveform {
    width: 120px;
    opacity: 1;
}

.podcast-btn:hover .mic-icon {
    transform: scale(1.1);
}

.wave-bar {
    width: 3px;
    height: 3px;
    background-color: #f9b42a;
    border-radius: 3px;
    opacity: 0;
    transform: scaleY(0.5);
}

.podcast-btn:hover .wave-bar {
    opacity: 1;
    animation: wave 1.5s infinite ease-in-out;
}

.podcast-btn:hover .wave-bar:nth-child(1) { animation-delay: 0.05s; }
.podcast-btn:hover .wave-bar:nth-child(2) { animation-delay: 0.1s; }
.podcast-btn:hover .wave-bar:nth-child(3) { animation-delay: 0.15s; }
.podcast-btn:hover .wave-bar:nth-child(4) { animation-delay: 0.2s; }
.podcast-btn:hover .wave-bar:nth-child(5) { animation-delay: 0.25s; }
.podcast-btn:hover .wave-bar:nth-child(6) { animation-delay: 0.3s; }
.podcast-btn:hover .wave-bar:nth-child(7) { animation-delay: 0.35s; }
.podcast-btn:hover .wave-bar:nth-child(8) { animation-delay: 0.4s; }
.podcast-btn:hover .wave-bar:nth-child(9) { animation-delay: 0.45s; }
.podcast-btn:hover .wave-bar:nth-child(10) { animation-delay: 0.5s; }
.podcast-btn:hover .wave-bar:nth-child(11) { animation-delay: 0.55s; }
.podcast-btn:hover .wave-bar:nth-child(12) { animation-delay: 0.6s; }
.podcast-btn:hover .wave-bar:nth-child(13) { animation-delay: 0.65s; }
.podcast-btn:hover .wave-bar:nth-child(14) { animation-delay: 0.7s; }
.podcast-btn:hover .wave-bar:nth-child(15) { animation-delay: 0.75s; }
.podcast-btn:hover .wave-bar:nth-child(16) { animation-delay: 0.8s; }
.podcast-btn:hover .wave-bar:nth-child(17) { animation-delay: 0.85s; }
.podcast-btn:hover .wave-bar:nth-child(18) { animation-delay: 0.9s; }
.podcast-btn:hover .wave-bar:nth-child(19) { animation-delay: 0.95s; }
.podcast-btn:hover .wave-bar:nth-child(20) { animation-delay: 1.0s; }

@keyframes wave {
    0%, 100% {
        height: 3px;
        transform: scaleY(0.5);
    }
    50% {
        height: 20px;
        transform: scaleY(1);
    }
}

/* Floating animation for secondary button */
.floating-btn {
    animation: float-btn 3s ease-in-out infinite;
}

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

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(40, 91, 117, 0.1);
    justify-content: flex-start;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #f9b42a;
    margin-bottom: 0.25rem;
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f9b42a;
    transition: width 1s ease;
}

.stat-item:hover .stat-number::after {
    width: 100%;
}

.stat-label {
    font-size: 0.875rem;
    color: #285b75;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.scroll-indicator-inner {
    width: 2rem;
    height: 3rem;
    border-radius: 9999px;
    border: 2px solid rgba(40, 91, 117, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-dot {
    width: 0.375rem;
    height: 0.75rem;
    border-radius: 9999px;
    background: #f9b42a;
    animation: pulse 2s ease-in-out infinite;
}

/* Brand Card Section - More Compact Version */
.brand-card-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform-origin: top center;
}

.brand-card.refined {
    width: 85%;
    max-width: 1000px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 15px 30px rgba(40, 91, 117, 0.08);
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s ease;
}

.brand-card.refined.show {
    transform: translateY(0);
    opacity: 1;
}

/* Brand card visibility states */
.brand-card-section.show-card {
    transform: translateY(0);
    opacity: 1;
}

.brand-card-section.hide-card {
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
}

.brand-section-title {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 25px;
    color: #285b75;
}

.brand-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    margin-bottom: 30px;
    align-items: center;
}

.brand-text {
    font-size: 16px;
    line-height: 1.6;
    color: #285b75;
}

.brand-quote {
    padding-left: 20px;
    border-left: 4px solid #f9b42a;
}

.brand-quote p {
    font-size: 15px;
    line-height: 1.5;
    font-style: italic;
    color: #285b75;
}

.refined-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}

.feature-item {
    text-align: center;
}

.feature-item svg {
    width: 24px;
    margin-bottom: 8px;
    filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.feature-item p {
    font-size: 13px;
    font-weight: 500;
    color: #285b75;
    line-height: 1.4;
}

.feature-dot {
    width: 5px;
    height: 5px;
    background: #f9b42a;
    border-radius: 50%;
    opacity: 0.6;
}

/* Why Section */
/* Why Section Enhanced */
.why-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 120px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    overflow: visible;

    /* REMOVE card look */
    background: none;
    border-radius: 0;
    box-shadow: none;

    /* KEEP spacing consistency */
    padding: 0 20px;
}

/* Animated background orbs */
.why-bg-orbs {
    opacity: 0.15;
    filter: blur(80px);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f9b42a, #fabb1c);
    top: -100px;
    right: -100px;
    animation: float-orb 20s infinite ease-in-out;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #fabb1c, #f9b42a);
    bottom: -50px;
    left: 20%;
    animation: float-orb 15s infinite ease-in-out 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #285b75, #f9b42a);
    top: 50%;
    left: -50px;
    animation: float-orb 18s infinite ease-in-out 4s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(40px, 10px) scale(1.02);
    }
}

/* Connection lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.why-tag {
    color: #f9b42a;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s forwards 0.2s;
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #285b75;
    margin: 15px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s forwards 0.4s;
}

.why-title span {
    background: linear-gradient(135deg, #f9b42a 0%, #fabb1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Animated gradient text */
.why-title span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    20% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.why-subtext {
    font-size: 18px;
    color: #285b75;
    max-width: 500px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s forwards 0.6s;
}

/* Enhanced Quote Styling */
.why-quote {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, rgba(249, 180, 42, 0.15) 0%, rgba(250, 187, 28, 0.15) 100%);
    padding: 28px 32px;
    border-radius: 16px;
    margin-top: 28px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 8px 24px rgba(40, 91, 117, 0.1);
    position: relative;
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateX(-50px);
    animation: slide-in-right 0.8s forwards 0.8s;
}

@keyframes slide-in-right {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.why-quote:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(40, 91, 117, 0.15);
}

.why-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #f9b42a, #fabb1c);
}

.why-quote::after {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 120px;
    color: rgba(249, 180, 42, 0.1);
    font-family: 'Playfair Display', serif;
    z-index: 0;
}

.why-quote p {
    font-size: 20px;
    color: #285b75;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

.why-quote p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #f9b42a, #fabb1c);
    animation: expand-line 1.5s forwards 1.5s;
}

@keyframes expand-line {
    to {
        width: 100%;
    }
}

/* Quote icon — keep it solid and readable */
.why-quote .text-xl {
    font-size: 32px;
    color: #f9b42a;   /* solid premium orange */
    background: none;
    -webkit-text-fill-color: initial;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Progress indicator */
.progress-container {
    opacity: 0;
    pointer-events: none;
}

.progress-bar {
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, #f9b42a, #fabb1c);
    border-radius: 4px;
    transition: height 0.3s ease;
}

/* Enhanced Why Items */
.why-item {
    background: #fff;
    padding: 20px 24px;
    margin: 20px 0;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 8px 20px rgba(40, 91, 117, 0.06);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.why-item.active {
    opacity: 1;
    transform: translateX(0);
}

/* 3D tilt effect on hover */
.why-item:hover {
    transform: translateY(-5px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 15px 30px rgba(40, 91, 117, 0.1);
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 180, 42, 0.05) 0%, rgba(250, 187, 28, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.why-item:hover::before {
    opacity: 1;
}

.why-emoji {
    font-size: 32px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    position: relative;
}

/* Glowing halo effect */
.why-emoji::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(249, 180, 42, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.why-item:hover .why-emoji::after {
    opacity: 1;
}

.why-item:hover .why-emoji {
    transform: scale(1.2) rotate(10deg);
}

.why-content {
    flex-grow: 1;
}

.why-content p {
    font-size: 16px;
    color: #285b75;
    margin: 0;
    line-height: 1.6;
    position: relative;
    display: inline-block;
}

/* Animated underline */
.why-content p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #f9b42a, #fabb1c);
    transition: width 0.3s ease;
}

.why-item:hover .why-content p::after {
    width: 100%;
}

.why-detail {
    margin-top: 8px;
    font-size: 14px;
    color: #f9b42a;
    font-weight: 500;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.why-item:hover .why-detail {
    opacity: 1;
    max-height: 20px;
}

/* Animation keyframes */
@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Zigzag Section */
.zigzag-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 100px 8%;
    gap: 50px;
}

.text-left {
    width: 35%;
}

.tag {
    font-size: 18px;
    color: #f9b42a;
    font-weight: 600;
}

.title {
    font-size: 42px;
    margin-top: 10px;
    font-weight: 700;
    color: #285b75;
}

.desc {
    margin-top: 15px;
    color: #285b75;
    font-size: 17px;
    line-height: 1.6;
}

.see-all {
    display: inline-flex;
    align-items: center;
    margin-top: 22px;
    font-size: 18px;
    font-weight: 600;
    color: #f9b42a;
    text-decoration: none;
    transition: 0.3s ease;
}

.see-all span {
    margin-left: 6px;
    transition: 0.3s ease;
}

.see-all:hover {
    color: #fabb1c;
}

.see-all:hover span {
    transform: translateX(5px);
}

.zigzag-gallery {
    display: flex;
    gap: 25px;
    align-items: flex-start !important;
}

.card {
    width: 200px;
    border-radius: 26px;
    background: #ffffff;
    padding: 0;
    box-shadow: 0 20px 40px rgba(40, 91, 117, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.35s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(249, 180, 42, 0.18);
    opacity: 0;
    transition: 0.35s ease;
    z-index: 1;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(249, 180, 42, 0.25);
}

.card img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
}

.card.down {
    margin-top: 45px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes waveSlide {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    50% {
        opacity: 1;
        transform: translateX(8px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes titleWave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
    75% { transform: rotate(-2deg); }
}

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

/* Responsive Design */
/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .hero-container {
        max-width: 1200px;
    }
    
    .why-wrapper {
        max-width: 1400px;
        gap: 80px;
    }
}

/* Desktop (1024px to 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .hero-container {
        max-width: 1000px;
        padding: 6rem 2rem 3rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .why-wrapper {
        max-width: 1100px;
        gap: 50px;
    }
}

/* iPad (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-container {
        max-width: 800px;
        padding: 5rem 1.5rem 2.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1.2rem;
        align-items: flex-start;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        height: 3.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .brand-card.refined {
        width: 90%;
        padding: 25px 30px;
    }
    
    .brand-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .refined-features {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }
    
    .why-title {
        font-size: 2.5rem;
    }
    
    .zigzag-section {
        flex-direction: column;
        text-align: center;
        padding: 80px 5% 60px;
        gap: 40px;
    }
    
    .text-left, .zigzag-gallery {
        width: 100%;
    }
    
    .zigzag-gallery {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .card {
        width: 180px;
    }
    
    .card.down {
        margin-top: 0;
    }
}

/* Mobile (480px to 767px) */
@media (max-width: 767px) {
    .hero-container {
        max-width: 90%;
        padding: 4rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        height: 3.2rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        align-items: flex-start;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .particle {
        display: none;
    }
    
    .waveform {
        width: 80px;
    }
    
    .brand-card-section {
        margin-top: -60px;
        padding-bottom: 40px;
    }
    
    .brand-card.refined {
        width: 95%;
        padding: 20px 25px;
    }
    
    .brand-section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .brand-text {
        font-size: 15px;
    }
    
    .brand-quote p {
        font-size: 14px;
    }
    
    .refined-features {
        gap: 15px;
    }
    
    .feature-item svg {
        width: 20px;
        margin-bottom: 6px;
    }
    
    .feature-item p {
        font-size: 12px;
    }
    
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        margin: 80px auto;
    }
    
    .why-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .why-subtext {
        font-size: 1rem;
        text-align: center;
    }
    
    .why-quote {
        padding: 20px 25px;
        margin-top: 20px;
    }
    
    .why-quote p {
        font-size: 1.1rem;
    }
    
    .why-item {
        padding: 15px 20px;
        margin: 15px 0;
    }
    
    .why-emoji {
        font-size: 28px;
    }
    
    .why-content p {
        font-size: 15px;
    }
    
    .zigzag-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 5% 40px;
        gap: 30px;
    }
    
    .text-left, .zigzag-gallery {
        width: 100%;
    }
    
    .zigzag-gallery {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .card {
        width: 160px;
    }
    
    .card.down {
        margin-top: 0;
    }
}

/* Small Mobile (320px to 479px) */
@media (max-width: 479px) {
    .hero-container {
        padding: 3rem 1rem 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        height: 3rem;
        font-size: 0.9rem;
    }
    
    .brand-card.refined {
        width: 98%;
        padding: 15px 20px;
    }
    
    .brand-section-title {
        font-size: 24px;
    }
    
    .brand-text {
        font-size: 14px;
    }
    
    .why-title {
        font-size: 1.8rem;
    }
    
    .why-subtext {
        font-size: 0.9rem;
    }
    
    .why-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .why-emoji {
        font-size: 24px;
    }
    
    .why-content {
        width: 100%;
    }
    
    .zigzag-gallery {
        gap: 10px;
    }
    
    .card {
        width: 140px;
    }
}