/* Custom CSS for Distribea Music Platform */

/* Global Help Page Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: #010101;
    overflow-x: hidden;
}

/* Contact Page Styles */

/* Legal Page Styles */

/* Help Page Styles */

/* Help Navigation */
.help-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    width: 100%;
    height: 80px;
    background: #010101;
    margin: 0;
}

.help-nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
}

.help-logo {
    width: 125.91px;
    height: 32px;
}

.help-nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 32px;
    height: 44px;
}

.help-nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 32px;
    height: 20px;
}

.help-nav-link {
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FAFAFA;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.help-nav-link:hover {
    opacity: 0.8;
}


/* Help Hero Section */

.help-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 64px;
    width: 100%;
    max-width: 768px;
}

.help-hero-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 24px;
    width: 100%;
    max-width: 768px;
}

.help-hero-heading {
    width: 100%;
    max-width: 768px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 72px;
    line-height: 92px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #FAFAFA;
    margin: 0;
}

.help-hero-subheading {
    width: 100%;
    max-width: 590px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    opacity: 0.8;
    margin: 0;
}

/* FAQ Section */

.help-faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 30px;
    gap: 32px;
    width: 100%;
    max-width: 800px;
    flex: none;
    order: 0;
    flex-grow: 1;
}

.help-faq-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 32px;
    width: 100%;
    max-width: 620px;
}

.help-faq-heading-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 100%;
    max-width: 620px;
}

.help-faq-heading {
    width: 100%;
    max-width: 620px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin: 0;
}

.help-faq-questions {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 32px;
    width: 100%;
    max-width: 600px;
    flex: none;
    order: 1;
    flex-grow: 1;
}

.help-faq-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 0px 0px;
    width: 100%;
    max-width: 600px;
    min-width: 320px;
    height: 48px;
    border-top: 1px solid rgba(250, 250, 250, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-faq-item:first-child {
    border-top: none;
    padding: 0px;
    height: 112px;
}

.help-faq-item-expanded {
    height: 112px;
    padding: 0px;
}

.help-faq-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 100%;
    max-width: 600px;
    height: 100%;
}

.help-faq-text-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 100%;
    max-width: 560px;
    height: 100%;
    flex: none;
    order: 0;
    flex-grow: 1;
}

.help-faq-question {
    width: 100%;
    max-width: 560px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: rgba(250, 250, 250, 0.9);
    margin: 5px 0px 0px 0px;
}

.help-faq-answer {
    width: 100%;
    max-width: 560px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(250, 250, 250, 0.6);
    margin: 0;
    display: none;
}

.help-faq-item-expanded .help-faq-answer {
    display: block;
}

.help-faq-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 24px;
    height: 24px;
}

.help-faq-icon-plus,
.help-faq-icon-minus {
    width: 24px;
    height: 24px;
    position: relative;
}

.help-faq-icon-plus::before,
.help-faq-icon-plus::after {
    content: '';
    position: absolute;
    background: #A4A7AE;
}

.help-faq-icon-plus::before {
    width: 2px;
    height: 16px;
    left: 11px;
    top: 4px;
}

.help-faq-icon-plus::after {
    width: 16px;
    height: 2px;
    left: 4px;
    top: 11px;
}

.help-faq-icon-minus::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    left: 4px;
    top: 11px;
    background: #A4A7AE;
}

/* Resources Section */
.help-resources-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    gap: 48px;
    width: 100%;
    background: #010101;
    margin: 0;
}

.help-resources-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 32px;
    width: 100%;
    max-width: 1200px;
}

.help-resources-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 32px;
    width: 100%;
    max-width: 1200px;
}

.help-resources-heading-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 100%;
    max-width: 768px;
}

.help-resources-heading {
    width: 100%;
    max-width: 768px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin: 0;
}

.help-resources-cards {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 0px;
    gap: 16px;
    width: 100%;
    max-width: 1200px;
}

.help-resource-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
    width: 280px;
    min-height: 244px;
    background: #121212;
    border-radius: 16px;
    box-sizing: border-box;
}

.help-resource-icon {
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    background: #2B2B2C;
    box-shadow: inset 0px 0px 0px 1px rgba(12, 14, 18, 0.18), inset 0px -2px 0px rgba(12, 14, 18, 0.05);
    border-radius: 10px;
    position: relative;
}

.help-resource-icon-inner {
    position: absolute;
    width: 24px;
    height: 24px;
    left: 12px;
    top: 12px;
}

.help-resource-icon-rocket::before,
.help-resource-icon-rocket::after {
    content: '';
    position: absolute;
    border: 2px solid #FAFAFA;
}

.help-resource-icon-rocket::before {
    width: 8px;
    height: 8px;
    left: 6px;
    top: 6px;
    border-radius: 50%;
}

.help-resource-icon-rocket::after {
    width: 12px;
    height: 2px;
    left: 4px;
    top: 10px;
}

.help-resource-icon-layout::before,
.help-resource-icon-layout::after {
    content: '';
    position: absolute;
    border: 2px solid #FAFAFA;
}

.help-resource-icon-layout::before {
    width: 16px;
    height: 2px;
    left: 2px;
    top: 6px;
}

.help-resource-icon-layout::after {
    width: 16px;
    height: 2px;
    left: 2px;
    top: 14px;
}

.help-resource-icon-music::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 2px;
    top: 2px;
    border: 2px solid #FAFAFA;
    border-radius: 50%;
}

.help-resource-icon-shield::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 2px;
    top: 2px;
    border: 2px solid #FAFAFA;
    border-radius: 2px;
}

.help-resource-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 232px;
    flex: 1;
}

.help-resource-title {
    width: 232px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #FAFAFA;
    margin: 0;
}

.help-resource-description {
    width: 232px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #94979C;
    margin: 0;
}

/* CTA Section */
.help-cta-section {
    position: relative;
    padding: 80px 20px;
    margin: 0 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/need-personalized-help.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    overflow: hidden;
}

.help-cta-container {
    position: relative;
    z-index: 20;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.help-cta-content {
    max-width: 768px;
    text-align: center;
}

.help-cta-heading {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 61px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin: 0 0 32px 0;
}

.help-cta-subheading {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #FAFAFA;
    margin: 0 0 40px 0;
    opacity: 0.9;
}

.help-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #FFFFFF;
    color: #010101;
    border: none;
    border-radius: 8px;
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.help-cta-button:hover {
    background: #F0F0F0;
    transform: translateY(-1px);
}

/* ========================================
   HELP PAGE STYLES
   ======================================== */

/* Help Page Main Container */
.help-page {
    background: #010101;
    min-height: 100vh;
}

/* Help Navigation */
.help-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    gap: 905px;
    width: 100%;
    height: 80px;
}

.help-nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.help-logo {
    width: 125.91px;
    height: 32px;
}

.help-nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 32px;
    width: 626px;
    height: 44px;
}

.help-nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 32px;
    width: 436px;
    height: 20px;
}

.help-nav-link {
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FAFAFA;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.help-nav-link:hover {
    opacity: 0.8;
}

.help-nav-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    gap: 6px;
    width: 180px;
    height: 44px;
    background: #FEFEFE;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #0A0A0A;
}

.help-nav-button:hover {
    background: #F0F0F0;
    transform: translateY(-1px);
}

/* Help Hero Section */
.help-hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px 0px 96px;
    gap: 80px;
    width: 100%;
    min-height: 580px;
    background: url('../images/help-hero-section.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.help-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 64px;
    width: 768px;
    max-width: 768px;
    height: 172px;
}

.help-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 24px;
    width: 768px;
    height: 172px;
}

.help-hero-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 24px;
    width: 768px;
    height: 172px;
}

.help-hero-heading {
    width: 768px;
    height: 92px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 72px;
    line-height: 92px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #FAFAFA;
    margin: 0;
}

.help-hero-subheading {
    width: 590px;
    height: 56px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    opacity: 0.8;
    margin: 0;
}

/* Help FAQ Section */
.help-faq-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 160px 0px 96px;
    gap: 80px;
    width: 100%;
    min-height: 768px;
}

.help-faq-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px 30px;
    gap: 40px;
    width: 100%;
    max-width: 1280px;
    min-height: 44px;
}


.help-faq-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 50%;
    height: 44px;
    flex-shrink: 0;
}

.help-faq-title {
    width: 100%;
    height: 44px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin: 0;
}

.help-faq-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0px 0px 0px;
    gap: 0px;
    width: 50%;
    flex-shrink: 0;
}

.help-faq-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    width: 600px;
    min-width: 320px;
    height: 48px;
    border-top: 1px solid rgba(250, 250, 250, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.help-faq-item:first-child {
    border-top: none;
    height: 112px;
}

.help-faq-item-expanded {
    height: 112px;
}

.help-faq-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 600px;
    height: 112px;
}

.help-faq-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 560px;
    height: 112px;
}

.help-faq-question {
    width: 560px;
    height: 24px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: rgba(250, 250, 250, 0.9);
    margin: 5px 0px 0px 0px;
}

.help-faq-answer {
    width: 560px;
    height: 72px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(250, 250, 250, 0.6);
    margin: 0;
    display: none;
}

.help-faq-item-expanded .help-faq-answer {
    display: block;
}

.help-faq-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 24px;
    height: 24px;
}

/* FAQ Icon States - Show plus for collapsed, minus for expanded */
.help-faq-item .help-faq-icon svg path:nth-child(3) {
    display: block; /* Show the vertical line by default (collapsed state shows +) */
}

.help-faq-item-expanded .help-faq-icon svg path:nth-child(3) {
    display: none; /* Hide the vertical line when expanded (shows -) */
}

/* 
.help-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 0px;
    width: 100%;
    min-height: 529px;
    background: #010101;
    margin: 0;
}

.help-footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 80px;
    width: 100%;
    max-width: 1380px;
}

.help-footer-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px;
    gap: 104px;
    width: 100%;
    max-width: 1380px;
}

.help-footer-left {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 24px;
    width: 100%;
    max-width: 469px;
}

.help-footer-logo {
    width: 119px;
    height: 120px;
}

.help-footer-description {
    width: 100%;
    max-width: 326px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #FAFAFA;
    opacity: 0.9;
    margin: 0;
}

.help-footer-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0px;
    width: 100%;
    max-width: 685px;
}

.help-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 100%;
    max-width: 250px;
}

.help-footer-title {
    width: 100%;
    max-width: 250px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.6);
    margin: 0;
}

.help-footer-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 100%;
    max-width: 250px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.help-footer-link {
    width: 100%;
    max-width: 250px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #FAFAFA;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.help-footer-link:hover {
    opacity: 0.8;
}

.help-footer-border {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px 24px;
    gap: 515.69px;
    width: 100%;
    max-width: 1380px;
    border-top: 1px solid rgba(250, 250, 250, 0.08);
}

.help-footer-bottom-left {
    width: 100%;
    max-width: 152px;
}

.help-footer-copyright {
    width: 100%;
    max-width: 144px;
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: rgba(250, 250, 250, 0.6);
    margin: 0;
}

.help-footer-social-icons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0px;
    width: 100%;
    max-width: 280px;
}

.help-social-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px;
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    color: rgba(250, 250, 250, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.help-social-icon:hover {
    color: #FAFAFA;
}
*/

/* Legal Header section */
.legal-header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0px;
    gap: 64px;
    width: 1440px;
    height: 425px;
    background: #010101;
}

.legal-header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 32px;
    gap: 32px;
    width: 1280px;
    max-width: 1280px;
    height: 233px;
}

.legal-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 48px;
    width: 1216px;
    height: 233px;
}

/* Heading and supporting text */
.legal-header-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 24px;
    width: 768px;
    max-width: 768px;
    height: 141px;
}

.legal-header-title-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;
    width: 768px;
    height: 92px;
}

.legal-main-heading {
    width: 768px;
    height: 92px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 72px;
    line-height: 92px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin: 0;
}

.legal-subheading {
    width: 768px;
    height: 25px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #94979C;
    margin: 0;
}

/* Navigation Buttons */
.legal-navigation-buttons {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 578px;
    height: 44px;
}

.legal-nav-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 4px;
    height: 44px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
}

.legal-nav-button-active {
    width: 155px;
    background: #FCFCFC;
    color: #0A0A0A;
}

.legal-nav-button-outline {
    width: 170px;
    background: transparent;
    border: 0.8px solid #FAFAFA;
    color: #FCFCFC;
}

.legal-nav-button-outline:last-child {
    width: 237px;
}

.legal-nav-button:hover {
    opacity: 0.8;
}

/* Content section */
.legal-content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0px;
    gap: 64px;
    width: 1440px;
    /* height: 2518px; */
    background: #010101;
}

.legal-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 32px;
    gap: 64px;
    width: 1280px;
    max-width: 1280px;
    /* height: 2262px; */
}

.legal-content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 48px;
    width: 1216px;
    /* height: 2262px; */
}

/* Rich text */
.legal-rich-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 720px;
    max-width: 720px;
}

.legal-content-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 720px;
    height: auto;
}

.legal-paragraph {
    width: 720px;
    height: auto;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #94979C;
    margin: 0 0 24px 0;
}

.legal-padding-top {
    width: 720px;
    height: 40px;
}

.legal-padding-bottom {
    width: 720px;
    height: 20px;
}

.legal-heading-large {
    width: 720px;
    height: 38px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    color: #F7F7F7;
    margin: 0 0 20px 0;
}

.legal-heading-medium {
    width: 720px;
    height: 32px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: #F7F7F7;
    margin: 0 0 16px 0;
}

.legal-numbered-list {
    width: 720px;
    height: auto;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #94979C;
    margin: 0;
    padding-left: 20px;
}

.legal-numbered-list li {
    margin-bottom: 8px;
}

/* Footer */
.legal-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0px 0px;
    width: 1440px;
    height: 449px;
    background: #010101;
}

.legal-footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 80px;
    width: 1380px;
    height: 369px;
}

.legal-footer-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px;
    gap: 104px;
    width: 1380px;
    height: 184px;
}

.legal-footer-left {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 24px;
    margin: 0 auto;
    width: 469px;
    height: 184px;
}

.legal-footer-logo {
    width: 119px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.legal-footer-description {
    width: 326px;
    height: 60px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #FAFAFA;
    opacity: 0.9;
    margin: 0;
}

.legal-footer-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0px;
    margin: 0 auto;
    width: 685px;
    height: 184px;
}

.legal-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 250px;
    height: 184px;
}

.legal-footer-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 250px;
    height: 16px;
}

.legal-footer-title-text {
    width: 250px;
    height: 16px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.6);
    margin: 0;
}

.legal-footer-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 250px;
    height: 160px;
}

.legal-footer-link {
    width: 250px;
    height: 40px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #FAFAFA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-footer-link:hover {
    color: #94979C;
}

.legal-language-selector {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 44px 10px 16px;
    gap: 8px;
    width: 185px;
    height: 44px;
    min-height: 44px;
    background: #1C1B1B;
    border-radius: 999px;
    cursor: pointer;
}

.legal-language-icon {
    width: 24px;
    height: 24px;
    color: #FAFAFA;
}

.legal-language-text {
    width: 81px;
    height: 24px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #FAFAFA;
}

.legal-language-arrow {
    position: absolute;
    width: 20px;
    height: 44px;
    right: 12.22px;
    top: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    color: #FAFAFA;
}

.legal-footer-border {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px 24px;
    gap: 515.69px;
    width: 1380px;
    height: 105px;
    border-top: 1px solid rgba(250, 250, 250, 0.08);
}

.legal-footer-bottom-left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    padding: 0px;
    row-gap: 0px;
    margin: 0 auto;
    width: 152px;
    height: 16px;
}

.legal-footer-copyright {
    width: 144px;
    height: 16px;
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    color: rgba(250, 250, 250, 0.6);
}

.legal-footer-social-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    align-content: flex-end;
    padding: 0px;
    row-gap: 0px;
    margin: 0 auto;
    width: 280px;
    height: 56px;
}

.legal-social-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px;
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    color: rgba(250, 250, 250, 0.6);
    cursor: pointer;
    transition: color 0.3s ease;
}

.legal-social-icon:hover {
    color: #FAFAFA;
}

/* Contact Page Header */
.contact-page-header {
    position: relative;
    width: 1440px;
    height: 1098px;
    background: #010101;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0px;
}

.contact-content {
    position: absolute;
    width: 608px;
    min-width: 480px;
    height: 938px;
    right: 60px;
    top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

.contact-content-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 48px;
    width: 480px;
    max-width: 480px;
    height: 986px;
}

/* Heading and supporting text */
.contact-heading-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 480px;
    height: 132px;
}

.contact-main-heading {
    width: 448px;
    height: 82px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 82px;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin: 0;
}

.contact-supporting-text {
    width: 448px;
    height: 30px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #94979C;
    margin: 0;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 32px;
    width: 480px;
    height: 806px;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: 480px;
    height: 726px;
}

/* Input field */
.contact-input-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 6px;
    width: 480px;
    height: 82px;
}

.contact-input-with-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 6px;
    width: 480px;
    height: 82px;
}

.contact-label-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 2px;
    width: auto;
    height: 20px;
}

.contact-label {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #FAFAFA;
}

.contact-asterisk {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #94979C;
}

.contact-input {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 0px 16px 20px;
    gap: 8px;
    width: 480px;
    height: 56px;
    background: rgba(250, 250, 250, 0.08);
    border-radius: 8px;
    border: none;
    color: #FAFAFA;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
}

.contact-input::placeholder {
    color: #85888E;
}

.contact-input-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;
    width: 460px;
    height: 24px;
}

.contact-text-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #FAFAFA;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    outline: none;
}

.contact-text-input::placeholder {
    color: #85888E;
}

.contact-dropdown {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 14px;
    gap: 2px;
    width: 80px;
    height: 44px;
}

.contact-dropdown-text {
    width: 34px;
    height: 24px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #94979C;
    opacity: 0;
}

/* Textarea input field */
.contact-textarea-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 6px;
    width: 480px;
    height: 160px;
}

.contact-textarea {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 12px 14px;
    gap: 8px;
    width: 480px;
    height: 134px;
    background: rgba(250, 250, 250, 0.08);
    border-radius: 8px;
    border: none;
    color: #FAFAFA;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    resize: none;
    outline: none;
}

.contact-textarea::placeholder {
    color: #85888E;
}

/* Checkbox */
.contact-checkbox {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;
    width: 480px;
    height: 24px;
}

.contact-checkbox-input {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2px 0px 0px;
    width: 20px;
    height: 22px;
}

.contact-checkbox-base {
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 1px solid #373A41;
    border-radius: 6px;
    background: transparent;
}

.contact-checkbox-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 2px;
    width: 448px;
    height: 24px;
}

.contact-checkbox-label {
    width: 448px;
    height: 24px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #94979C;
}

/* Actions */
.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 480px;
    height: 48px;
}

.contact-submit-button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 18px;
    gap: 6px;
    width: 480px;
    height: 48px;
    background: rgba(250, 250, 250, 0.9);
    border-radius: 1000px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-button:hover {
    background: rgba(250, 250, 250, 1);
}

.contact-submit-text {
    width: 116px;
    height: 24px;
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #010101;
}

/* Image */
.contact-image {
    position: absolute;
    width: 720px;
    min-width: 480px;
    height: 1065px;
    left: 0px;
    top: 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Features section */
.contact-features-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0px;
    gap: 64px;
    width: 1440px;
    background: #010101;
}

.contact-features-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 32px;
    width: 1280px;
    max-width: 1280px;
    height: 44px;
}

.contact-features-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 32px;
    width: 1280px;
    height: 44px;
}

.contact-features-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 768px;
    max-width: 768px;
    height: 44px;
}

.contact-features-title-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;
    width: 768px;
    height: 44px;
}

.contact-features-title {
    width: 768px;
    height: 44px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin: 0;
}

.contact-features-cards-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 64px;
    width: 1280px;
    max-width: 1280px;
    height: 304px;
}

.contact-features-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    padding: 0px;
    gap: 24px;
    width: 1280px;
    height: 304px;
}

.contact-feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 64px;
    width: 410.67px;
    min-width: 280px;
    height: 264px;
    background: #121212;
    border-radius: 16px;
    flex: 1;
}

.contact-feature-icon {
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    background: #2B2B2C;
    box-shadow: inset 0px 0px 0px 1px rgba(12, 14, 18, 0.18), inset 0px -2px 0px rgba(12, 14, 18, 0.05);
    border-radius: 10px;
    position: relative;
}

.contact-feature-icon-inner {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 24px;
    height: 24px;
    color: #FAFAFA;
}

.contact-feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 362.67px;
    height: 104px;
}

.contact-feature-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 362.67px;
    height: 104px;
}

.contact-feature-title {
    width: 362.67px;
    height: 28px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #FAFAFA;
    margin: 0;
}

.contact-feature-description {
    width: 362.67px;
    height: 60px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #94979C;
    margin: 0;
}

/* Social proof section */
.contact-social-proof-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0px;
    gap: 32px;
    width: 1440px;
    height: 296px;
    background: #010101;
}

.contact-social-proof-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 32px;
    gap: 32px;
    width: 1280px;
    max-width: 1280px;
    height: 104px;
}

.contact-social-proof-text {
    width: 1216px;
    height: 24px;
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #94979C;
    margin: 0;
}

.contact-social-proof-logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: 1216px;
    height: 48px;
}

.contact-company-logo {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: auto;
    height: 48px;
    opacity: 0.84;
}

.contact-logo-mark {
    width: 40px;
    height: 48px;
}

.contact-logo-vector {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
}

.contact-logo-text {
    width: auto;
    height: 48px;
}

.contact-logo-text-vector {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
}

/* Footer */
.contact-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0px 0px;
    width: 1440px;
    height: 529px;
    background: #010101;
}

.contact-footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 80px;
    width: 1380px;
    height: 369px;
}

.contact-footer-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px;
    gap: 104px;
    width: 1380px;
    height: 184px;
}

.contact-footer-left {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 24px;
    margin: 0 auto;
    width: 469px;
    height: 184px;
}

.contact-footer-logo {
    width: 119px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.contact-footer-description {
    width: 326px;
    height: 60px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #FAFAFA;
    opacity: 0.9;
    margin: 0;
}

.contact-footer-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0px;
    margin: 0 auto;
    width: 685px;
    height: 184px;
}

.contact-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 250px;
    height: 184px;
}

.contact-footer-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 250px;
    height: 16px;
}

.contact-footer-title-text {
    width: 250px;
    height: 16px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.6);
    margin: 0;
}

.contact-footer-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 250px;
    height: 160px;
}

.contact-footer-link {
    width: 250px;
    height: 40px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #FAFAFA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-footer-link:hover {
    color: #94979C;
}

.contact-language-selector {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 44px 10px 16px;
    gap: 8px;
    width: 185px;
    height: 44px;
    min-height: 44px;
    background: #1C1B1B;
    border-radius: 999px;
    cursor: pointer;
}

.contact-language-icon {
    width: 24px;
    height: 24px;
    color: #FAFAFA;
}

.contact-language-text {
    width: 81px;
    height: 24px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #FAFAFA;
}

.contact-language-arrow {
    position: absolute;
    width: 20px;
    height: 44px;
    right: 12.22px;
    top: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    color: #FAFAFA;
}

.contact-footer-border {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px 24px;
    gap: 515.69px;
    width: 1380px;
    height: 105px;
    border-top: 1px solid rgba(250, 250, 250, 0.08);
}

.contact-footer-bottom-left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    padding: 0px;
    row-gap: 0px;
    margin: 0 auto;
    width: 152px;
    height: 16px;
}

.contact-footer-copyright {
    width: 144px;
    height: 16px;
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    color: rgba(250, 250, 250, 0.6);
}

.contact-footer-social-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    align-content: flex-end;
    padding: 0px;
    row-gap: 0px;
    margin: 0 auto;
    width: 280px;
    height: 56px;
}

.contact-social-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px;
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    color: rgba(250, 250, 250, 0.6);
    cursor: pointer;
    transition: color 0.3s ease;
}

.contact-social-icon:hover {
    color: #FAFAFA;
}

/* Global Styles */
body {
    overflow-x: hidden;
    font-family: 'Space Grotesk', sans-serif;
}

/* Navigation Styles */
.nav-container {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    left: 0px;
    top: 0px;
    padding: 0px 20px;
    box-sizing: border-box;
    z-index: 1000;
    background: transparent;
}

.logo-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0px;
    width: 125.91px;
    height: 32px;
    flex-shrink: 0;
}

.nav-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    width: 626px;
    height: 44px;
    flex-shrink: 0;
}

.logo-circle {
    width: 125.91px;
    height: 32px;
    background: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'IBM Plex Mono';
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #FAFAFA;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.nav-links {
    @apply flex flex-row items-center;
    gap: 40px;
}

.nav-link {
    @apply flex flex-row justify-center items-center;
    width: 80px;
    height: 40px;
    border: 1px solid #FFFFFF;
    border-radius: 999px;
    padding: 10px 14px;
    gap: 4px;
    background: transparent;
    color: #FFFFFF;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-link:hover {
    background: #FFFFFF;
    color: #000000;
}

.nav-link-text {
    font-family: 'IBM Plex Mono';
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FAFAFA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link-text:hover {
    color: #8938FF;
}

/* Mobile Menu Styles */
.mobile-menu-link {
    font-family: 'IBM Plex Mono';
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.02em;
}

.mobile-menu-button {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
}

/* Mobile Menu Button */
#mobileMenuBtn {
    z-index: 60;
    position: relative;
}

#mobileMenuBtn:hover {
    background-color: #374151;
}

#mobileMenuBtn:focus {
    outline: none;
    ring: 2px;
    ring-color: #8938FF;
}

/* Mobile Menu Dropdown */
#mobileMenu {
    z-index: 50;
    border-top: 1px solid #374151;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100vw;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

#mobileMenu.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

#mobileMenu.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Mobile Menu Items Animation */
.mobile-menu-link {
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-button {
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

#mobileMenu.show .mobile-menu-link {
    transform: translateX(0);
    opacity: 1;
}

#mobileMenu.show .mobile-menu-button {
    transform: translateX(0);
    opacity: 1;
}

/* Staggered animation for menu items */
#mobileMenu.show .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
#mobileMenu.show .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
#mobileMenu.show .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
#mobileMenu.show .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
#mobileMenu.show .mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }
#mobileMenu.show .mobile-menu-button { transition-delay: 0.35s; }

/* Hero Section */
.hero-section {
    height: 900px;
    padding: 0px;
    gap: 10px;
    overflow-x: hidden;
}

.hero-container {
    height: 900px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 0px;
}

.hero-content {
    position: absolute !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 432px !important;
    height: 471px !important;
    left: 80px !important;
    top: 150px !important;
    padding: 0px !important;
    gap: 32px !important;
}

.hero-text {
    @apply flex flex-col items-start;
    width: 768px;
    max-width: 768px;
    height: 400px;
    gap: 24px;
}

.hero-title {
    width: 362px;
    height: 297px;
    font-family: 'Space Grotesk';
    font-weight: 500;
    font-size: 90px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin-bottom: 0;
    margin-top: 0;
}

.hero-subtitle {
    width: 362px;
    height: 66px;
    font-family: 'Space Grotesk';
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #FFFFFF;
}

.hero-buttons {
    @apply flex flex-row items-center;
    width: 400px;
    height: 56px;
    gap: 16px;
}

.btn-cta {
    @apply flex flex-row justify-center items-center;
    width: 158px;
    height: 44px;
    background: #FFFFFF;
    border-radius: 999px;
    padding: 12px 20px;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-family: 'IBM Plex Mono';
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #0A0A0A;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #F0F0F0;
    transform: translateY(-1px);
}

.btn-explore {
    @apply flex flex-row justify-center items-center;
    width: auto;
    min-width: 180px;
    height: 48px;
    background: #FEFEFE;
    border-radius: 999px;
    padding: 14px 32px;
    gap: 10px;
    font-family: 'IBM Plex Mono';
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #0A0A0A;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: #F0F0F0;
    transform: translateY(-1px);
}

.hero-bottom-text {
    font-family: 'IBM Plex Mono';
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
    color: #FFFFFF;
}

/* Features Section */
.features-section {
	height: auto;
	min-height: 1388px;
	padding: 0px 0px 96px;
	gap: 80px;
	isolation: isolate;
	background: #010101;
	overflow-x: hidden;
}

.features-ellipse {
    width: 895.52px;
    height: 1011.88px;
    left: -312px;
    top: 178px;
    background: linear-gradient(180deg, #1D4C8B 0%, #081425 100%);
    opacity: 0.5;
    filter: blur(100px);
    transform: rotate(14.02deg);
    z-index: 0;
}

.metrics-section {
    height: 320px;
    padding: 80px 0px 128px;
    gap: 64px;
    z-index: 1;
}

.metrics-container {
    width: 1380px;
    height: 112px;
    gap: 64px;
}

.metrics-content {
    width: 1380px;
    height: 112px;
    gap: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.metric-item {
    width: 321px;
    min-width: 240px;
    height: 112px;
    gap: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-content {
    width: 321px;
    height: 112px;
    gap: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.metric-number {
    width: 321px;
    height: 72px;
    font-family: 'IBM Plex Mono';
    font-weight: 500;
    font-size: 60px;
    line-height: 72px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FAFAFA;
}

.metric-number-infinity {
    width: 321px;
    height: 72px;
    font-family: 'IBM Plex Mono';
    font-weight: 400;
    font-size: 100px;
    line-height: 72px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FAFAFA;
}

.metric-text-container {
    width: 321px;
    height: 28px;
    gap: 4px;
}

.metric-text {
    width: 321px;
    height: 28px;
    font-family: 'IBM Plex Mono';
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #FAFAFA;
}

.features-heading {
    width: 768px;
    max-width: 768px;
    height: 232px;
    gap: 32px;
    z-index: 2;
}

.features-main-heading {
    width: 768px;
    height: 154px;
    font-family: 'Space Grotesk';
    font-weight: 500;
    font-size: 64px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FAFAFA;
}

.features-supporting-text {
    width: 768px;
    height: 46px;
    font-family: 'Space Grotesk';
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    letter-spacing: -0.01em;
    color: #FAFAFA;
    opacity: 0.8;
}

.features-cards-frame {
    width: 1098px;
    height: 580px;
    gap: 24px;
    z-index: 3;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.feature-card {
    width: 350px;
    height: 580px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-card-image-container {
    transition: background 0.15s ease-out;
}

.feature-card:hover .feature-card-image-container {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%) !important;
}

.feature-card-inner-image {
    transition: opacity 0.15s ease-out;
}

.feature-card:hover .feature-card-inner-image {
    opacity: 0.8;
}

/* Badge Animation Styles */
.mood-badge {
    display: inline-block;
    background: #1E40AF;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.15s ease-out, transform 0.15s ease-out;
    font-family: 'Space Grotesk';
}

.feature-card:hover .mood-badge {
    opacity: 1;
    transform: translateX(0);
}

.mood-badge.animate {
    animation: badgeCycle 0.3s ease-out;
}

@keyframes badgeCycle {
    0% {
        opacity: 0;
        transform: translateX(-5px) scale(0.9);
    }
    50% {
        opacity: 1;
        transform: translateX(0) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Title container for badge positioning */
.feature-card-title-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-card-image-container {
    width: 350px;
    height: 438px;
    left: 0px;
    top: 0px;
    background: url('../images/empowercard-conter-images.png'), #303030;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    z-index: 1;
}

.feature-card-inner-image {
    width: 305px;
    height: 385px;
    left: calc(50% - 305px/2 + 0.5px);
    top: calc(66% - 385px/2 - 70.5px);
    background-size: cover;
    background-position: center;
    border-radius: 17.4286px;
}

.feature-card-info {
    width: 350px;
    height: 142px;
    border-radius: 0px 0px 16px 16px;
    padding: 24px;
    gap: 16px;
    z-index: 0;
}

.feature-card-title {
    width: 99px;
    height: 30px;
    font-family: 'Space Grotesk';
    font-weight: 500;
    font-size: 29.6484px;
    line-height: 30px;
    color: #FAFAFA;
}

.feature-card-description {
    width: 302px;
    height: 48px;
    font-family: 'Space Grotesk';
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #FAFAFA;
    opacity: 0.6;
}

/* Must-Hear Selections Section */
.must-hear-section {
    height: 513.56px;
    margin-top: 40px;
    padding-left: 2px;
    padding-right: 2px;
}

/* Owl Carousel Global Styles */
.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.owl-carousel .owl-item {
    height: auto;
}

.owl-carousel .item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.owl-carousel .item > div {
    height: 100%;
}

/* Mobile centering styles */
@media (max-width: 1279px) {
    .owl-carousel .owl-stage {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .owl-carousel .owl-item {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .owl-carousel .item {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .owl-carousel .item > div {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Desktop specific styles for 4 cards */
@media (min-width: 1280px) {
    .owl-carousel .owl-item {
        width: 24.5% !important;
    }
    
    .owl-carousel .item > div {
        width: 100% !important;
        max-width: 100% !important;
    }
}

.playlist-slider-track {
    gap: 3px;
}

.playlist-card {
    height: auto;
    border-radius: 16px;
    flex-shrink: 0;
}

.playlist-card-cover {
    border-radius: 16px 16px 0px 0px;
}

.playlist-card-logo {
    background-image: url('../images/ocean-sound-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.playlist-card-background-image {
    background-image: url('../images/mint.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.playlist-card-overlay {
    background: linear-gradient(180deg, #25C34E 0%, #00FF94 100%);
    mix-blend-mode: overlay;
    opacity: 0.2;
}

.playlist-card-title-overlay {
    height: 124px;
    left: 19.04px;
    right: 127.94px;
    top: 78.27px;
    font-family: 'Impact';
    font-weight: 400;
    font-size: 50.7692px;
    line-height: 62px;
    color: #EEE9E6;
    transform: rotate(-10deg);
}

.playlist-card-info {
    padding: 20.3077px;
    gap: 40.62px;
}

.playlist-card-title {
    height: 34px;
    font-family: 'Space Grotesk';
    font-weight: 500;
    font-size: 27.0769px;
    line-height: 34px;
    color: #010101;
}

.playlist-card-description {
    height: 34px;
    font-family: 'IBM Plex Mono';
    font-weight: 400;
    font-size: 11.8462px;
    line-height: 140%;
    color: #010101;
}

.playlist-card-stats {
    width: 250px;
    height: 25.18px;
    gap: 6.77px;
}

.playlist-stat-item {
    height: 25.18px;
    gap: 6.77px;
}

.playlist-stat-dot {
    width: 20.31px;
    height: 20.31px;
    background: #010101;
    border-radius: 50%;
}

.playlist-stat-text {
    height: 21px;
    font-family: 'Space Grotesk';
    font-weight: 500;
    font-size: 13.5385px;
    line-height: 20px;
    color: #010101;
}

/* Navigation Arrows */
.nav-arrows-container {
    gap: 6px;
    margin-top: 32px;
}

.nav-arrow-button {
    width: 48px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-arrow-circle {
    position: absolute;
    left: 7.99%;
    right: 7.99%;
    top: 15.97%;
    bottom: 15.97%;
    border: 2px solid #A4A7AE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ready to Amplify Section */
.ready-section {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/ready-to-implify-music.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
}

/* Social Proof Section */
.social-proof-section {
    background: #010101;
    padding: 96px 0px;
    width: 1440px;
    height: 240px;
    gap: 32px;
}

.social-proof-container {
    width: 1280px;
    max-width: 1280px;
    height: 48px;
    gap: 32px;
}

.logos-container {
    padding: 0px;
    gap: 24px;
    isolation: isolate;
    width: 1280px;
    height: 48px;
}

.logo-item {
    padding: 0px;
    gap: 8px;
    width: auto;
    height: 48px;
    opacity: 0.84;
}

.logo-icon {
    width: 40px;
    height: 48px;
    flex-shrink: 0;
}

.logo-text {
    width: auto;
    height: 48px;
    opacity: 0.84;
    font-family: 'Space Grotesk';
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
}

/* Logo Icons */
.stacked-icon {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 48"><rect x="8" y="12" width="24" height="4" fill="white"/><rect x="8" y="20" width="24" height="4" fill="white"/><rect x="8" y="28" width="24" height="4" fill="white"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.magnolia-icon {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 48"><path d="M20 8 C 12 8, 8 16, 8 24 C 8 32, 12 40, 20 40 C 28 40, 32 32, 32 24 C 32 16, 28 8, 20 8 Z" fill="white"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.powersurge-icon {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 48"><rect x="16" y="8" width="8" height="32" fill="white"/><rect x="12" y="12" width="16" height="4" fill="white"/><rect x="12" y="32" width="16" height="4" fill="white"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.warpspeed-icon {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 48"><path d="M8 24 L 16 16 L 24 24 L 16 32 Z" fill="white"/><path d="M16 24 L 24 16 L 32 24 L 24 32 Z" fill="white"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.leapyear-icon {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 48"><rect x="16" y="8" width="8" height="32" rx="4" fill="white"/><rect x="12" y="20" width="16" height="8" rx="4" fill="white"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.easytax-icon {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 48"><circle cx="20" cy="24" r="16" fill="none" stroke="white" stroke-width="2"/><path d="M12 24 L 20 16 L 28 24 L 20 32 Z" fill="white"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Footer */
.footer-logo {
    background-image: url('../images/ocean-sound-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-text {
    font-family: 'Space Grotesk';
    line-height: 24px;
}

.footer-heading {
    font-family: 'Space Grotesk';
    line-height: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-link {
    font-family: 'Space Grotesk';
    line-height: 24px;
}

.footer-copyright {
    font-family: 'Space Grotesk';
    line-height: 24px;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        width: 100%;
        padding: 0px 16px;
        height: 60px;
        position: absolute;
        top: 0;
        left: 0;
        background: transparent;
        z-index: 1000;
    }
    
    .nav-section {
        width: auto;
        height: auto;
        gap: 16px;
    }
    
    .logo-circle {
        width: 100px;
        height: 24px;
    }
    
    /* Hero Section */
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 0px 0px 40px;
    }
    
    .hero-container {
        height: auto;
        min-height: 100vh;
        padding: 0px 16px;
    }
    
    .hero-content {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        left: 0 !important;
        top: 0 !important;
        padding: 100px 0px 40px !important;
        gap: 24px !important;
        align-items: center !important;
        text-align: center;
    }
    
    .hero-title {
        width: 100%;
        height: auto;
        font-size: 36px;
        line-height: 44px;
        text-align: center;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        width: 100%;
        height: auto;
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta, .btn-explore {
        width: auto;
        min-width: 160px;
        max-width: 280px;
        height: 48px;
        font-size: 14px;
        padding: 14px 24px;
    }
    
    .hero-bottom-text {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 32px;
        padding: 0px 16px;
    }
    
    /* Features Section */
    .features-heading {
        width: 100%;
        max-width: 100%;
        height: auto;
        gap: 24px;
        padding: 0px 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .features-main-heading {
        font-size: 36px;
        line-height: 44px;
        width: 100%;
        height: auto;
        padding: 0px 16px;
        text-align: center;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .features-supporting-text {
        font-size: 16px;
        line-height: 24px;
        width: 100%;
        height: auto;
        padding: 0px 16px;
        text-align: center;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .features-cards-frame {
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        height: auto !important;
        padding: 0px 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: center !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    
    .feature-card {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        min-height: auto !important;
        margin: 0 auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        align-items: center !important;
        position: relative !important;
        text-align: center !important;
        box-sizing: border-box !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    /* Force center all feature cards */
    .features-cards-frame .feature-card {
        margin-left: auto !important;
        margin-right: auto !important;
        transform: none !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    /* Override inline styles for mobile */
    .feature-card .absolute[style*="width: 350px"] {
        width: 100% !important;
        left: 0 !important;
    }
    
    .feature-card .flex[style*="width: 350px"] {
        width: 100% !important;
    }
    
    .feature-card .absolute .absolute[style*="left: calc(50% - 305px/2 + 0.5px)"] {
        left: 5% !important;
        width: 90% !important;
    }
    
    .feature-card .absolute {
        width: 100% !important;
        height: auto !important;
        min-height: 200px !important;
        left: 0 !important;
        top: 0 !important;
        border-radius: 20px !important;
    }
    
    .feature-card .absolute .absolute {
        width: 90% !important;
        height: auto !important;
        min-height: 160px !important;
        left: 5% !important;
        top: 20px !important;
        border-radius: 15px !important;
    }
    
    .feature-card .flex {
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        padding: 16px !important;
        gap: 8px !important;
        border-radius: 0px 0px 20px 20px !important;
    }
    
    .feature-card .flex div:first-child {
        width: auto !important;
        height: auto !important;
        font-size: 22px !important;
        line-height: 26px !important;
    }
    
    .feature-card .flex div:last-child {
        width: auto !important;
        height: auto !important;
        font-size: 14px !important;
        line-height: 20px !important;
    }
    
    /* Metrics Section */
    .metrics-section {
        height: auto;
        padding: 40px 0px 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .metrics-container {
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 32px;
        padding: 0px 16px;
        align-items: center;
        justify-content: center;
    }
    
    .metrics-content {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 20px;
        align-items: center;
        justify-items: center;
    }
    
    .metric-item {
        width: 100%;
        height: auto;
        min-width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .metric-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    
    .metric-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    
    .metric-item:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }
    
    .metric-item:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }
    
    .metric-content {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    
    .metric-number, .metric-number-infinity {
        width: 100%;
        height: auto;
        font-size: 48px;
        line-height: 56px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .metric-text-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .metric-text {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Must-Hear Selections Section */
    .must-hear-section {
        height: 513.56px;
        margin-top: 40px;
        padding-left: 2px;
        padding-right: 2px;
    }
    
    /* Owl Carousel Custom Styles */
    .owl-carousel .owl-stage {
        display: flex;
        align-items: stretch;
    }
    
    .owl-carousel .owl-item {
        height: auto;
    }
    
    .owl-carousel .item {
        height: 100%;
    }
    
    /* Ready to Amplify Section */
    .ready-section {
        padding: 40px 16px;
        margin: 0px 12px;
        border-radius: 16px;
    }
    
    .ready-section h2 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 16px;
    }
    
    .ready-section p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 24px;
    }
    
    .ready-section .flex {
        flex-direction: column;
        gap: 12px;
    }
    
    .ready-section button {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    /* Features Section Mobile */
    .features-section {
        height: auto !important;
        min-height: auto !important;
        padding: 0px 0px 60px !important;
        gap: 40px !important;
    }
    
    /* Features Ellipse Mobile */
    .features-ellipse {
        width: 400px !important;
        height: 450px !important;
        left: -150px !important;
        top: 100px !important;
        background: linear-gradient(180deg, #1D4C8B 0%, #081425 100%) !important;
        opacity: 0.3 !important;
        filter: blur(80px) !important;
        transform: rotate(14.02deg) !important;
        z-index: 0 !important;
    }
    
    /* Footer */
    footer {
        padding: 32px 16px 24px;
    }
    
    footer .max-w-7xl {
        padding: 0px 12px;
    }
    
    footer .flex-col {
        gap: 24px;
    }
    
    footer .sm\\:flex-row {
        flex-direction: row;
        gap: 16px;
        align-items: flex-start;
    }
    
    footer .sm\\:space-x-4 {
        gap: 16px;
    }
    
    footer .sm\\:space-x-8 {
        gap: 24px;
    }
    
    footer .lg\\:space-x-16 {
        gap: 24px;
    }
    
    footer .space-y-6 {
        gap: 20px;
    }
    
    footer .space-y-3 {
        gap: 12px;
    }
    
    footer .space-x-3 {
        gap: 12px;
    }
    
    footer .sm\\:space-x-4 {
        gap: 12px;
    }
    
    footer .lg\\:space-x-6 {
        gap: 12px;
    }
    
    footer h3 {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    footer ul li a {
        font-size: 14px;
    }
    
    footer .text-sm {
        font-size: 12px;
    }
    
    footer .sm\\:text-base {
        font-size: 12px;
    }
    
    footer .lg\\:text-lg {
        font-size: 14px;
    }
    
    /* New Footer Mobile Styles */
    footer .flex.flex-col.lg\\:flex-row {
        gap: 32px;
    }
    
    /* Company Info Mobile - Keep Side by Side */
    footer .flex.items-start.gap-4 {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
    }
    
    footer .w-16.h-16 {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    footer p {
        font-size: 13px;
        line-height: 1.4;
        max-width: none;
    }
    
    /* Navigation Columns Mobile */
    footer .lg\\:w-1\\/5 {
        width: 100%;
        text-align: center;
        margin-bottom: 24px;
    }
    
    footer .lg\\:w-2\\/5 {
        width: 100%;
        margin-bottom: 32px;
    }
    
    /* Column Headings Mobile */
    footer h4 {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    /* Links Mobile - 2 per row, justified */
    footer ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 16px;
        justify-items: center;
    }
    
    footer li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    /* Language Selector Mobile */
    footer select {
        margin: 0 auto !important;
        display: block !important;
        width: 125px !important;
        text-align: center !important;
    }
    
    /* Language Selector Container Mobile */
    footer .relative.inline-block {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    /* Language Selector Arrow Mobile */
    footer .absolute.inset-y-0.right-0 {
        right: 8px !important;
        width: 16px !important;
        height: 16px !important;
    }
    
    /* Footer Bottom Section Mobile - FORCE SIDE BY SIDE */
    .footer-bottom-mobile {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        width: 100% !important;
    }
    
    /* Copyright Mobile */
    .footer-copyright {
        color: #9ca3af !important;
        font-size: 12px !important;
        display: inline !important;
        white-space: nowrap !important;
        flex-shrink: 1 !important;
    }
    
    /* Social Icons Mobile */
    .footer-social-icons {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        flex-shrink: 0 !important;
    }
    
    /* Divider Line Mobile */
    footer .border-t {
        margin: 32px 0px 24px;
    }
    
    /* Move Slider Arrows Closer to Cards on Mobile */
    #prevBtn, #nextBtn {
        margin-top: -20px !important;
        position: relative !important;
        z-index: 10 !important;
    }
}

/* Catalog Page Responsive Styles */
@media (max-width: 1024px) {
    /* Catalog Hero Section */
    .catalog-hero-section {
        width: 100%;
        height: auto;
        min-height: 500px;
        padding: 40px 20px 60px;
    }
    
    .catalog-ellipse {
        width: 400px;
        height: 350px;
        left: -50px;
        top: -50px;
    }
    
    .catalog-hero-container {
        width: 100%;
        max-width: 768px;
        padding: 0px 20px;
    }
    
    .catalog-headline {
        width: 100%;
        text-align: center;
    }
    
    .catalog-main-heading {
        width: 100%;
        font-size: 40px;
        line-height: 48px;
    }
    
    .catalog-subheading {
        width: 100%;
        font-size: 16px;
        line-height: 24px;
    }
    
    .catalog-highlight {
        width: 100%;
        flex-direction: column;
        gap: 16px;
    }
    
    .catalog-highlight-item {
        width: 100%;
        justify-content: center;
    }
    
    /* Catalog Sections */
    .catalog-section {
        width: 100%;
        height: auto;
        padding: 60px 20px;
    }
    
    .catalog-section-last {
        padding: 60px 20px 120px;
        height: auto;
    }
    
    .catalog-section-container {
        width: 100%;
        max-width: 768px;
        height: auto;
    }
    
    .catalog-section-heading {
        width: 100%;
        height: auto;
        text-align: center;
    }
    
    .catalog-section-title-group {
        width: 100%;
        height: auto;
        align-items: center;
    }
    
    .catalog-section-title {
        width: 100%;
        height: auto;
        font-size: 36px;
        line-height: 44px;
        text-align: center;
    }
    
    .catalog-section-subtitle {
        width: 100%;
        height: auto;
        text-align: center;
    }
    
    .catalog-content {
        width: 100%;
    }
    
    .catalog-cards-grid {
        width: 100%;
        height: auto;
        justify-content: center;
        gap: 16px;
    }
    
    .catalog-cards-grid-tall {
        height: auto;
    }
    
    .catalog-card {
        width: calc(50% - 8px);
        height: 200px;
    }
    
    .catalog-card-tall {
        height: 240px;
    }
}

@media (max-width: 768px) {
    /* Catalog Hero Section */
    .catalog-hero-section {
        padding: 30px 16px 40px;
        min-height: 400px;
    }
    
    .catalog-ellipse {
        width: 300px;
        height: 250px;
        left: -30px;
        top: -30px;
    }
    
    .catalog-hero-container {
        padding: 0px 16px;
    }
    
    .catalog-main-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .catalog-subheading {
        font-size: 14px;
        line-height: 20px;
    }
    
    .catalog-highlight {
        gap: 12px;
    }
    
    .catalog-highlight-text {
        font-size: 14px;
    }
    
    /* Catalog Sections */
    .catalog-section {
        padding: 40px 16px;
    }
    
    .catalog-section-last {
        padding: 40px 16px 80px;
    }
    
    .catalog-section-container {
        padding: 0px 16px;
    }
    
    .catalog-section-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .catalog-section-subtitle {
        font-size: 14px;
        line-height: 20px;
    }
    
    .catalog-cards-grid {
        gap: 12px;
    }
    
    .catalog-card {
        width: calc(50% - 6px);
        height: 160px;
    }
    
    .catalog-card-tall {
        height: 200px;
    }
    
    .catalog-card-label {
        font-size: 14px;
    }
    
    .catalog-card-description {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    /* Catalog Hero Section - Extra Small Mobile */
    .catalog-hero-section {
        padding: 20px 12px 30px;
        min-height: 350px;
    }
    
    .catalog-ellipse {
        width: 250px;
        height: 200px;
        left: -20px;
        top: -20px;
    }
    
    .catalog-hero-container {
        padding: 0px 12px;
    }
    
    .catalog-main-heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .catalog-subheading {
        font-size: 13px;
        line-height: 18px;
    }
    
    .catalog-highlight {
        gap: 10px;
    }
    
    .catalog-highlight-text {
        font-size: 13px;
    }
    
    /* Catalog Sections - Extra Small Mobile */
    .catalog-section {
        padding: 30px 12px;
    }
    
    .catalog-section-last {
        padding: 30px 12px 60px;
    }
    
    .catalog-section-container {
        padding: 0px 12px;
    }
    
    .catalog-section-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .catalog-section-subtitle {
        font-size: 13px;
        line-height: 18px;
    }
    
    .catalog-cards-grid {
        gap: 8px;
    }
    
    .catalog-card {
        width: calc(50% - 4px);
        height: 140px;
    }
    
    .catalog-card-tall {
        height: 180px;
    }
    
    .catalog-card-label {
        font-size: 13px;
    }
    
    .catalog-card-description {
        font-size: 11px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    /* Footer Extra Small Mobile */
    footer .flex.flex-col.lg\\:flex-row {
        gap: 24px;
    }
    
    footer .w-16.h-16 {
        width: 36px;
        height: 36px;
    }
    
    footer p {
        font-size: 12px;
        line-height: 1.3;
    }
    
    footer .lg\\:w-1\\/5 {
        margin-bottom: 20px;
    }
    
    footer .lg\\:w-2\\/5 {
        margin-bottom: 28px;
    }
    
    footer h4 {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    footer ul {
        gap: 10px 14px;
    }
    
    footer .flex.items-center.gap-4 {
        gap: 8px;
    }
    
    /* Footer Bottom Section Extra Small Mobile - FORCE SIDE BY SIDE */
    .footer-bottom-mobile {
        gap: 8px !important;
    }
    
    /* Copyright Extra Small Mobile */
    .footer-copyright {
        font-size: 11px !important;
    }
    
    /* Social Icons Extra Small Mobile */
    .footer-social-icons {
        gap: 8px !important;
    }
    
    /* Language Selector Extra Small Mobile */
    footer select {
        width: 125px !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    /* Language Selector Container Extra Small Mobile */
    footer .relative.inline-block {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    /* Language Selector Arrow Extra Small Mobile */
    footer .absolute.inset-y-0.right-0 {
        right: 8px !important;
        width: 16px !important;
        height: 16px !important;
    }
    
    footer .border-t {
        margin: 28px 0px 20px;
    }
    
    /* Move Slider Arrows Closer to Cards on Extra Small Mobile */
    #prevBtn, #nextBtn {
        margin-top: -16px !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    /* Features Section Extra Small Mobile */
    .features-section {
        height: auto !important;
        min-height: auto !important;
        padding: 0px 0px 40px !important;
        gap: 32px !important;
    }
    
    /* Features Ellipse Extra Small Mobile */
    .features-ellipse {
        width: 300px !important;
        height: 350px !important;
        left: -100px !important;
        top: 80px !important;
        background: linear-gradient(180deg, #1D4C8B 0%, #081425 100%) !important;
        opacity: 0.25 !important;
        filter: blur(60px) !important;
        transform: rotate(14.02deg) !important;
        z-index: 0 !important;
    }
    
    /* Cards Frame Extra Small Mobile */
    .features-cards-frame {
        gap: 16px !important;
        padding: 0px 16px !important;
        text-align: center !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    
    .feature-card {
        max-width: 280px !important;
        min-height: auto !important;
        align-items: center !important;
        text-align: center !important;
        margin: 0 auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
    
    /* Force center all feature cards on small mobile */
    .features-cards-frame .feature-card {
        margin-left: auto !important;
        margin-right: auto !important;
        transform: none !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    /* Override inline styles for small mobile */
    .feature-card .absolute[style*="width: 350px"] {
        width: 100% !important;
        left: 0 !important;
    }
    
    .feature-card .flex[style*="width: 350px"] {
        width: 100% !important;
    }
    
    .feature-card .absolute .absolute[style*="left: calc(50% - 305px/2 + 0.5px)"] {
        left: 5% !important;
        width: 90% !important;
    }
    
    .feature-card .absolute {
        height: auto !important;
        min-height: 180px !important;
    }
    
    .feature-card .absolute .absolute {
        height: auto !important;
        min-height: 140px !important;
        top: 15px !important;
    }
    
    .feature-card .flex {
        min-height: auto !important;
        padding: 14px !important;
    }
    
    .feature-card .flex div:first-child {
        font-size: 20px !important;
        line-height: 24px !important;
    }
    
    .feature-card .flex div:last-child {
        font-size: 13px !important;
        line-height: 18px !important;
    }
}

/* Footer Bottom Section Desktop */
.footer-bottom-mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 14px;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ========================================
   PRICING PAGE STYLES
   ======================================== */

/* Pricing Navigation */
.pricing-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    width: 100%;
    height: 80px;
    background: #010101;
    margin: 0;
    position: relative;
    z-index: 1000;
}

.pricing-nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
}

.pricing-logo {
    width: 125.91px;
    height: 32px;
}

.pricing-logo-circle {
    width: 125.91px;
    height: 32px;
    background: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-nav-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 32px;
    height: 44px;
}

.pricing-nav-link {
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FAFAFA;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.pricing-nav-link:hover {
    opacity: 0.8;
}

.pricing-nav-link-active {
    color: #FAFAFA;
}

.pricing-nav-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
    gap: 10px;
    width: 158px;
    height: 44px;
    background: #FEFEFE;
    border-radius: 999px;
    border: none;
    cursor: pointer;
}

.pricing-nav-button-text {
    width: 114px;
    height: 20px;
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #0A0A0A;
}

/* Pricing Page Header */
.pricing-page-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 0px 0px;
    width: 100%;
    position: relative;
    isolation: isolate;
}

.pricing-ellipse {
    position: absolute;
    width: 704.04px;
    height: 1087.06px;
    left: 114px;
    top: -38px;
    z-index: 0;
}

.pricing-header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 96px 0px 40px;
    gap: 40px;
    width: 100%;
    height: 364px;
    z-index: 1;
}

.pricing-header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 32px;
    gap: 32px;
    width: 1280px;
    max-width: 1280px;
    height: 228px;
}

.pricing-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 48px;
    width: 1216px;
    height: 228px;
}

.pricing-heading-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 24px;
    width: 768px;
    max-width: 768px;
    height: 140px;
}

.pricing-main-heading {
    width: 768px;
    height: 92px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 72px;
    line-height: 92px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin: 0;
}

.pricing-supporting-text {
    width: 768px;
    height: 24px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: rgba(250, 250, 250, 0.8);
    margin: 0;
}

.pricing-billing-toggle {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 316px;
    height: 40px;
}

.pricing-billing-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 14px;
    gap: 4px;
    height: 40px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
}

.pricing-billing-button-active {
    width: 158px;
    background: #FCFCFC;
    color: #010101;
}

.pricing-billing-button-outline {
    width: 150px;
    background: transparent;
    border: 0.8px solid #FAFAFA;
    color: #FAFAFA;
}

.pricing-billing-text {
    width: auto;
    height: 20px;
    display: flex;
    align-items: center;
}

/* Pricing Cards Section */
.pricing-cards-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0px 0px;
    width: 100%;
    height: 574px;
    z-index: 2;
}

.pricing-cards-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 32px;
    width: 1280px;
    max-width: 1280px;
    height: 534px;
}

.pricing-cards-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 32px;
    width: 1280px;
    height: 566px;
}

/* Pricing Tier Card */
.pricing-tier-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 405.33px;
    height: 566px;
    background: rgba(250, 250, 250, 0.05);
    border-radius: 20px;
    flex: none;
    order: 0;
    flex-grow: 1;
}

.pricing-card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 24px;
    width: 405.33px;
    height: 212px;
}

.pricing-card-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 24px;
    width: 341.33px;
    height: 148px;
}

.pricing-badge-group {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px;
    gap: 8px;
    width: auto;
    height: 32px;
    border: 1px solid #373A41;
    border-radius: 10px;
}

.pricing-badge {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2px 8px;
    gap: 6px;
    width: auto;
    height: 24px;
    border: 1px solid #373A41;
    border-radius: 6px;
}

.pricing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pricing-dot-green {
    background: #4CA30D;
}

.pricing-dot-pink {
    background: #DD2590;
}

.pricing-dot-blue {
    background: #175CD3;
}

.pricing-badge-text {
    width: auto;
    height: 20px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #CECFD2;
}

.pricing-price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 8px;
    width: 341.33px;
    height: 92px;
}

.pricing-price {
    width: 341.33px;
    height: 60px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin: 0;
}

.pricing-price-supporting {
    width: 341.33px;
    height: 24px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: rgba(250, 250, 250, 0.7);
    margin: 0;
}

.pricing-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 32px;
    gap: 32px;
    width: 405.33px;
    height: 243px;
}

.pricing-divider {
    width: 341.33px;
    height: 1px;
    background: rgba(34, 38, 47, 0.5);
}

.pricing-check-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 341.33px;
    height: auto;
}

.pricing-check-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;
    width: 341.33px;
    height: auto;
}

.pricing-check-item-indent {
    padding-left: 36px;
}

.pricing-check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pricing-check-text {
    width: 305.33px;
    height: auto;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FAFAFA;
    margin: 0;
}

.pricing-card-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 24px;
    width: 405.33px;
    height: 112px;
}

.pricing-card-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;
    width: 341.33px;
    height: 48px;
}

.pricing-subscribe-button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 18px;
    gap: 6px;
    width: 341.33px;
    height: 48px;
    background: #FAFAFA;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-subscribe-button:hover {
    background: #F0F0F0;
}

.pricing-subscribe-text {
    width: 87px;
    height: 24px;
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #010101;
}

/* Custom & Enterprise Section */
.pricing-enterprise-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 96px 0px;
    gap: 64px;
    width: 100%;
    height: 757px;
}

.pricing-enterprise-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 32px;
    width: 1280px;
    max-width: 1280px;
    height: 565px;
}

.pricing-enterprise-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 80px;
    width: 1280px;
    height: 565px;
    border-radius: 16px;
}

.pricing-enterprise-image {
    width: 540px;
    height: 565px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.pricing-enterprise-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-enterprise-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 48px;
    width: 660px;
    height: 470px;
    flex: 1;
}

.pricing-enterprise-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 660px;
    min-width: 480px;
    max-width: 768px;
    height: 130px;
}

.pricing-enterprise-title {
    width: 660px;
    height: 44px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin: 0;
}

.pricing-enterprise-description {
    width: 660px;
    height: 66px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: rgba(250, 250, 250, 0.8);
    margin: 0;
}

.pricing-enterprise-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 20px;
    gap: 16px;
    width: 660px;
    height: 104px;
}

.pricing-enterprise-feature {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;
    width: 620px;
    height: 24px;
}

.pricing-enterprise-feature-text {
    width: 584px;
    height: 24px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: rgba(250, 250, 250, 0.8);
    margin: 0;
}

.pricing-enterprise-cta {
    width: 660px;
    height: 44px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: rgba(250, 250, 250, 0.8);
    margin: 0;
}

.pricing-enterprise-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 4px;
    width: 148px;
    height: 48px;
    background: #FCFCFC;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-enterprise-button:hover {
    background: #F0F0F0;
}

.pricing-enterprise-button-text {
    width: 96px;
    height: 20px;
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #010101;
}

/* FAQ Section */
.pricing-faq-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 96px 0px 0px;
    gap: 0px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.pricing-faq-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 32px 0px;
    gap: 32px;
    width: 1280px;
    max-width: 1280px;
    height: auto;
}

.pricing-faq-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 32px;
    width: 1216px;
    height: auto;
}

.pricing-faq-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 768px;
    max-width: 768px;
    height: auto;
}

.pricing-faq-title {
    width: 768px;
    height: 61px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 48px;
    line-height: 61px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin: 0;
}

.pricing-faq-subtitle {
    width: 768px;
    height: 30px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: rgba(250, 250, 250, 0.6);
    margin: 0;
}

.pricing-faq-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 32px;
    width: 768px;
    max-width: 768px;
    height: auto;
}

.pricing-faq-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 0px 0px;
    width: 768px;
    min-width: 320px;
    height: 48px;
    border-top: 1px solid rgba(250, 250, 250, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-faq-item:first-child {
    border-top: none;
    padding: 0px;
    height: 112px;
}

.pricing-faq-item-expanded {
    height: 112px;
    padding: 0px;
}

.pricing-faq-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 768px;
    height: 100%;
}

.pricing-faq-text-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 728px;
    height: 100%;
    flex: 1;
}

.pricing-faq-question {
    width: 728px;
    height: 24px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: rgba(250, 250, 250, 0.9);
    margin: 0;
}

.pricing-faq-answer {
    width: 728px;
    height: 48px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(250, 250, 250, 0.6);
    margin: 0;
    display: none;
}

.pricing-faq-item-expanded .pricing-faq-answer {
    display: block;
}

.pricing-faq-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pricing-faq-icon-plus,
.pricing-faq-icon-minus {
    width: 24px;
    height: 24px;
    position: relative;
}

.pricing-faq-icon-plus::before,
.pricing-faq-icon-plus::after {
    content: '';
    position: absolute;
    background: #A4A7AE;
}

.pricing-faq-icon-plus::before {
    width: 2px;
    height: 16px;
    left: 11px;
    top: 4px;
}

.pricing-faq-icon-plus::after {
    width: 16px;
    height: 2px;
    left: 4px;
    top: 11px;
}

.pricing-faq-icon-minus::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    left: 4px;
    top: 11px;
    background: #A4A7AE;
}

/* FAQ CTA Section */
.pricing-faq-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0px 96px;
    width: 100%;
    background: #010101;
    margin-top: 0px;
    position: relative;
    z-index: 2;
    clear: both;
}

.pricing-faq-cta-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 32px;
    gap: 32px;
    width: 1280px;
    max-width: 1280px;
    height: auto;
}

.pricing-faq-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 32px 40px;
    gap: 32px;
    width: 1216px;
    height: 307px;
    border-radius: 16px;
}

.pricing-faq-avatars {
    width: 120px;
    height: 56px;
    position: relative;
}

.pricing-faq-avatar {
    position: absolute;
    width: 48px;
    height: 48px;
    border: 1.5px solid #121212;
    border-radius: 9999px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pricing-faq-avatar-1 {
    left: 0px;
    top: 8px;
    background-image: url('../images/pricing-faq-avatar-2.jpg');
}

.pricing-faq-avatar-2 {
    left: 72px;
    top: 8px;
    background-image: url('../images/pricing-faq-avatar-3.png');
}

.pricing-faq-avatar-3 {
    left: 32px;
    top: 0px;
    width: 56px;
    height: 56px;
    background-image: url('../images/pricing-faq-avatar-1.jpg');
}

.pricing-faq-cta-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 8px;
    width: 768px;
    max-width: 768px;
    height: 67px;
}

.pricing-faq-cta-title {
    width: 768px;
    height: 31px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    text-align: center;
    color: #FAFAFA;
    margin: 0;
}

.pricing-faq-cta-subtitle {
    width: 768px;
    height: 28px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: rgba(250, 250, 250, 0.6);
    margin: 0;
}

.pricing-faq-cta-button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 4px;
    width: 153px;
    height: 48px;
    border: 1px solid #FAFAFA;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-faq-cta-button:hover {
    background: #FAFAFA;
    color: #010101;
}

.pricing-faq-cta-button-text {
    width: 101px;
    height: 20px;
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FAFAFA;
}

.pricing-faq-cta-button:hover .pricing-faq-cta-button-text {
    color: #010101;
}

/* Pricing Footer */
.pricing-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0px 0px;
    width: 100%;
    height: 449px;
    background: #010101;
}

.pricing-footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 80px;
    width: 1380px;
    height: 369px;
}

.pricing-footer-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px;
    gap: 104px;
    width: 1380px;
    height: 184px;
}

.pricing-footer-left {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 24px;
    margin: 0 auto;
    width: 469px;
    height: 184px;
}

.pricing-footer-logo {
    width: 119px;
    height: 120px;
    background: url('../images/ocean-sound-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-footer-description {
    width: 326px;
    height: 60px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #FAFAFA;
    opacity: 0.9;
    margin: 0;
}

.pricing-footer-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0px;
    margin: 0 auto;
    width: 685px;
    height: 184px;
}

.pricing-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 250px;
    height: 184px;
}

.pricing-footer-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 250px;
    height: 16px;
}

.pricing-footer-title-text {
    width: 250px;
    height: 16px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.6);
    margin: 0;
}

.pricing-footer-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 250px;
    height: 160px;
    list-style: none;
    margin: 0;
}

.pricing-footer-link {
    width: 250px;
    height: 40px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #FAFAFA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pricing-footer-link:hover {
    color: #94979C;
}

.pricing-language-selector {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 44px 10px 16px;
    gap: 8px;
    width: 185px;
    height: 44px;
    min-height: 44px;
    background: #1C1B1B;
    border-radius: 999px;
    cursor: pointer;
    position: relative;
}

.pricing-language-icon {
    width: 24px;
    height: 24px;
    color: #FAFAFA;
}

.pricing-language-text {
    width: 81px;
    height: 24px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #FAFAFA;
}

.pricing-language-arrow {
    position: absolute;
    width: 20px;
    height: 44px;
    right: 12.22px;
    top: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    color: #FAFAFA;
}

.pricing-footer-border {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px 24px;
    gap: 515.69px;
    width: 1380px;
    height: 105px;
    border-top: 1px solid rgba(250, 250, 250, 0.08);
}

.pricing-footer-bottom-left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    padding: 0px;
    row-gap: 0px;
    margin: 0 auto;
    width: 152px;
    height: 16px;
}

.pricing-footer-copyright {
    width: 144px;
    height: 16px;
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    color: rgba(250, 250, 250, 0.6);
}

.pricing-footer-social-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    align-content: flex-end;
    padding: 0px;
    row-gap: 0px;
    margin: 0 auto;
    width: 280px;
    height: 56px;
}

.pricing-social-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px;
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    color: rgba(250, 250, 250, 0.6);
    cursor: pointer;
    transition: color 0.3s ease;
}

.pricing-social-icon:hover {
    color: #FAFAFA;
}

/* ========================================
   PRICING PAGE RESPONSIVE STYLES
   ======================================== */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .pricing-header-container,
    .pricing-cards-container,
    .pricing-enterprise-container,
    .pricing-faq-container,
    .pricing-faq-cta-container,
    .pricing-footer-container {
        width: 100%;
        max-width: 768px;
        padding: 0px 24px;
    }
    
    .pricing-main-heading {
        font-size: 56px;
        line-height: 72px;
        width: 100%;
    }
    
    .pricing-cards-content {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }
    
    .pricing-tier-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-enterprise-content {
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }
    
    .pricing-enterprise-image {
        width: 100%;
        height: 300px;
    }
    
    .pricing-enterprise-text {
        width: 100%;
    }
    
    .pricing-enterprise-title,
    .pricing-enterprise-description,
    .pricing-enterprise-cta {
        width: 100%;
    }
    
    .pricing-faq-title {
        font-size: 40px;
        line-height: 52px;
        width: 100%;
    }
    
    .pricing-faq-items {
        width: 100%;
    }
    
    .pricing-faq-item {
        width: 100%;
    }
    
    .pricing-faq-content-wrapper {
        width: 100%;
    }
    
    .pricing-faq-text-section {
        width: 100%;
    }
    
    .pricing-faq-question,
    .pricing-faq-answer {
        width: 100%;
    }
    
    .pricing-footer-main {
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }
    
    .pricing-footer-left,
    .pricing-footer-right {
        width: 100%;
        margin: 0;
    }
    
    .pricing-footer-border {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 20px 0px;
    }
    
    .pricing-faq-cta-section {
        padding: 80px 0px 80px;
    }
    
    .pricing-faq-cta-container {
        padding: 0px 24px;
    }
}

/* Mobile Styles (320px - 768px) */
@media (max-width: 768px) {
    .pricing-navigation {
        padding: 0px 16px;
    }
    
    .pricing-nav-section {
        gap: 16px;
    }
    
    .pricing-nav-link {
        font-size: 13px;
    }
    
    .pricing-nav-button {
        width: 120px;
        height: 40px;
        padding: 8px 16px;
    }
    
    .pricing-nav-button-text {
        font-size: 12px;
    }
    
    .pricing-page-header {
        height: auto;
        padding: 0px 0px 0px;
    }
    
    .pricing-header-section {
        padding: 60px 0px 20px;
        gap: 32px;
    }
    
    .pricing-header-container {
        padding: 0px 16px;
    }
    
    .pricing-header-content {
        gap: 32px;
        width: 100%;
    }
    
    .pricing-heading-section {
        width: 100%;
        gap: 16px;
    }
    
    .pricing-main-heading {
        font-size: 40px;
        line-height: 52px;
        width: 100%;
    }
    
    .pricing-supporting-text {
        font-size: 16px;
        line-height: 24px;
        width: 100%;
    }
    
    .pricing-billing-toggle {
        width: 100%;
        max-width: 300px;
        gap: 4px;
    }
    
    .pricing-billing-button {
        height: 36px;
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .pricing-billing-button-active {
        width: 148px;
    }
    
    .pricing-billing-button-outline {
        width: 140px;
    }
    
    .pricing-cards-section {
        height: auto;
        padding: 20px 0px 60px;
    }
    
    .pricing-cards-container {
        gap: 40px;
        padding: 0px 16px;
    }
    
    .pricing-cards-content {
        gap: 20px;
    }
    
    .pricing-tier-card {
        width: 100%;
        height: auto;
    }
    
    .pricing-card-header {
        padding: 24px;
        width: 100%;
        height: auto;
    }
    
    .pricing-card-heading {
        width: 100%;
        height: auto;
        gap: 20px;
    }
    
    .pricing-price-section {
        width: 100%;
        height: auto;
    }
    
    .pricing-price {
        font-size: 36px;
        line-height: 48px;
        width: 100%;
    }
    
    .pricing-price-supporting {
        width: 100%;
    }
    
    .pricing-card-content {
        padding: 0px 24px;
        width: 100%;
        height: auto;
    }
    
    .pricing-divider {
        width: 100%;
    }
    
    .pricing-check-items {
        width: 100%;
    }
    
    .pricing-check-item {
        width: 100%;
    }
    
    .pricing-check-text {
        width: 100%;
    }
    
    .pricing-card-footer {
        padding: 24px;
        width: 100%;
        height: auto;
    }
    
    .pricing-card-actions {
        width: 100%;
    }
    
    .pricing-subscribe-button {
        width: 100%;
    }
    
    .pricing-enterprise-section {
        padding: 60px 0px;
        gap: 40px;
    }
    
    .pricing-enterprise-container {
        padding: 0px 16px;
    }
    
    .pricing-enterprise-content {
        gap: 32px;
    }
    
    .pricing-enterprise-image {
        height: 250px;
    }
    
    .pricing-enterprise-text {
        gap: 32px;
    }
    
    .pricing-enterprise-heading {
        gap: 16px;
    }
    
    .pricing-enterprise-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .pricing-enterprise-description {
        font-size: 15px;
        line-height: 22px;
    }
    
    .pricing-enterprise-features {
        gap: 12px;
    }
    
    .pricing-enterprise-feature {
        width: 100%;
    }
    
    .pricing-enterprise-feature-text {
        width: 100%;
        font-size: 15px;
    }
    
    .pricing-enterprise-cta {
        font-size: 15px;
        line-height: 22px;
    }
    
    .pricing-faq-section {
        padding: 60px 0px 0px;
        gap: 0px;
    }
    
    .pricing-faq-container {
        padding: 0px 16px 0px;
    }
    
    .pricing-faq-content {
        gap: 24px;
    }
    
    .pricing-faq-heading {
        gap: 16px;
    }
    
    .pricing-faq-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .pricing-faq-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    .pricing-faq-items {
        gap: 24px;
    }
    
    .pricing-faq-item {
        padding: 20px 0px 0px;
    }
    
    .pricing-faq-item:first-child {
        padding: 0px;
    }
    
    .pricing-faq-question {
        font-size: 16px;
        line-height: 22px;
    }
    
    .pricing-faq-answer {
        font-size: 15px;
        line-height: 22px;
    }
    
    .pricing-faq-cta-section {
        padding: 60px 0px 60px;
    }
    
    .pricing-faq-cta-container {
        padding: 0px 16px;
    }
    
    .pricing-faq-cta-content {
        padding: 24px;
        gap: 24px;
    }
    
    .pricing-faq-cta-heading {
        gap: 8px;
    }
    
    .pricing-faq-cta-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .pricing-faq-cta-subtitle {
        font-size: 15px;
        line-height: 22px;
    }
    
    .pricing-footer {
        padding: 60px 0px 0px;
    }
    
    .pricing-footer-container {
        gap: 60px;
        padding: 0px 16px;
    }
    
    .pricing-footer-main {
        gap: 32px;
    }
    
    .pricing-footer-left {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .pricing-footer-logo {
        width: 80px;
        height: 80px;
    }
    
    .pricing-footer-description {
        width: 100%;
        font-size: 13px;
        line-height: 18px;
    }
    
    .pricing-footer-right {
        flex-direction: column;
        gap: 32px;
    }
    
    .pricing-footer-column {
        width: 100%;
        text-align: center;
    }
    
    .pricing-footer-title-text {
        width: 100%;
        text-align: center;
    }
    
    .pricing-footer-list {
        width: 100%;
    }
    
    .pricing-footer-link {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-language-selector {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-footer-border {
        gap: 16px;
        padding: 16px 0px;
    }
    
    .pricing-footer-bottom-left,
    .pricing-footer-social-icons {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-social-icon {
        width: 48px;
        height: 48px;
        padding: 12px;
    }
}

/* Small Mobile Styles (320px - 480px) */
@media (max-width: 480px) {
    .pricing-main-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .pricing-billing-toggle {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .pricing-billing-button {
        width: 100%;
        height: 40px;
    }
    
    .pricing-price {
        font-size: 28px;
        line-height: 36px;
    }
    
    .pricing-enterprise-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .pricing-faq-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .pricing-faq-cta-title {
        font-size: 18px;
        line-height: 24px;
    }
}

/* ========================================
   CATALOG PAGE STYLES
   ======================================== */

/* Catalog Hero Section */
.catalog-hero-section {
    position: relative;
    width: 100%;
    max-width: 1440px;
    height: auto;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px 20px 96px;
    gap: 80px;
    isolation: isolate;
    background: #010101;
    margin: 0 auto;
}

.catalog-ellipse {
    position: absolute;
    width: 767.35px;
    height: 663.28px;
    left: -21px;
    top: -124px;
    background: linear-gradient(180deg, #1D4C8B 0%, #081425 100%);
    opacity: 0.8;
    filter: blur(100px);
    transform: rotate(-65.7deg);
    z-index: 0;
}

.catalog-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 20px;
    gap: 80px;
    width: 100%;
    max-width: 768px;
    height: auto;
    min-height: 362px;
    z-index: 0;
}

.catalog-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 24px;
    width: 100%;
    height: auto;
    min-height: 258px;
}

.catalog-main-heading {
    width: 100%;
    height: auto;
    font-family: 'Space Grotesk';
    font-weight: 500;
    font-size: 72px;
    line-height: 92px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #FAFAFA;
}

.catalog-subheading {
    width: 100%;
    height: auto;
    font-family: 'Space Grotesk';
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    opacity: 0.9;
}

.catalog-highlight {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 24px;
    width: 768px;
    height: 24px;
}

.catalog-highlight-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 4px;
    height: 24px;
}

.catalog-highlight-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.catalog-highlight-circle {
    position: absolute;
    left: 20.83%;
    right: 16.67%;
    top: 29.17%;
    bottom: 29.17%;
    border: 2px solid #6BA1FE;
    border-radius: 50%;
}

.catalog-highlight-text {
    font-family: 'IBM Plex Mono';
    font-weight: 500;
    font-size: 13px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

/* Catalog Section */
.catalog-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    gap: 64px;
    width: 100%;
    max-width: 1440px;
    height: auto;
    min-height: 839px;
    background: #010101;
    margin: 0 auto;
}

.catalog-section-last {
    padding: 80px 20px 200px;
    height: auto;
    min-height: 1035px;
}

.catalog-section-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 20px;
    gap: 32px;
    width: 100%;
    max-width: 1280px;
    height: auto;
    min-height: 103px;
}

.catalog-section-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;
    width: 100%;
    max-width: 768px;
    height: auto;
    min-height: 103px;
}

.catalog-section-title-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;
    width: 100%;
    height: auto;
    min-height: 61px;
}

.catalog-section-title {
    width: 100%;
    height: auto;
    font-family: 'Space Grotesk';
    font-weight: 500;
    font-size: 48px;
    line-height: 61px;
    letter-spacing: -0.02em;
    color: #FAFAFA;
}

.catalog-section-subtitle {
    width: 100%;
    height: auto;
    font-family: 'Space Grotesk';
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #FAFAFA;
    opacity: 0.8;
}

.catalog-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0px 0px 0px;
    gap: 64px;
    width: 100%;
    max-width: 1280px;
    height: auto;
    min-height: 544px;
}

.catalog-cards-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    padding: 0px;
    gap: 24px;
    width: 100%;
    height: auto;
    min-height: 544px;
}

.catalog-cards-grid-tall {
    height: auto;
    min-height: 604px;
}

.catalog-card {
    width: 210px;
    height: 260px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease-out;
}

.catalog-card:hover {
    transform: translateY(-5px);
}

.catalog-card-tall {
    height: 290px;
}

.catalog-card-image {
    position: absolute;
    width: 210px;
    height: 210px;
    left: 0px;
    top: 0px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow: hidden;
    opacity: 1;
    transform: rotate(0deg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.catalog-card-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px 12px 0px 0px;
}

.catalog-card-label {
    position: absolute;
    width: 210px;
    height: 50px;
    left: 0px;
    bottom: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 16px;
    gap: 10px;
    border-radius: 12px;
    font-family: 'Space Grotesk';
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    color: #010101;
    background: inherit;
}

.catalog-card-label-group {
    position: absolute;
    width: 210px;
    height: 80px;
    left: 0px;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0px 16px;
    gap: 10px;
    border-radius: 12px;
    background: #1C1B1B;
}

.catalog-card-label-group .catalog-card-label {
    position: static;
    width: auto;
    height: 23px;
    font-family: 'Space Grotesk';
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    color: #FAFAFA;
    background: transparent;
}

.catalog-card-description {
    width: auto;
    height: 15px;
    font-family: 'Space Grotesk';
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: #FAFAFA;
    opacity: 0.7;
}

/* Catalog CTA Section */
.catalog-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 80px;
    width: 1440px;
    height: 620px;
    background: #010101;
}

.catalog-cta-container {
    width: 1400px;
    height: 620px;
    position: relative;
}

.catalog-cta-container::before {
    content: '';
    position: absolute;
    width: 1400px;
    height: 620px;
    left: 20px;
    top: 0px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('assets/images/ready-to-implify-music.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.catalog-cta-content {
    position: absolute;
    width: 687.83px;
    height: 332px;
    left: calc(50% - 687.83px/2);
    top: calc(50% - 332px/2 - 0.44px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 40px;
    border-radius: 20px;
}

.catalog-cta-heading {
    width: 687.83px;
    height: 164px;
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 72px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FAFAFA;
}

.catalog-cta-subheading {
    width: 687.83px;
    height: 44px;
    font-family: 'Space Grotesk';
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    letter-spacing: -0.01em;
    color: #FAFAFA;
}

.catalog-cta-buttons {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 324px;
    height: 44px;
}

.catalog-cta-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px;
    gap: 10px;
    height: 44px;
    border-radius: 999px;
    font-family: 'IBM Plex Mono';
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.catalog-cta-button-outline {
    width: 142px;
    border: 1px solid #FAFAFA;
    background: transparent;
    color: #FAFAFA;
}

.catalog-cta-button-outline:hover {
    background: #FAFAFA;
    color: #0A0A0A;
}

.catalog-cta-button-solid {
    width: 166px;
    background: #FEFEFE;
    color: #0A0A0A;
    border: none;
}

.catalog-cta-button-solid:hover {
    background: #F0F0F0;
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    /* Navigation */
    .nav-container {
        padding: 0px 12px;
        height: 56px;
        position: absolute;
        top: 0;
        left: 0;
        background: transparent;
        z-index: 1000;
    }
    
    .logo-circle {
        width: 80px;
        height: 20px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 0px 0px 32px;
    }
    
    .hero-container {
        padding: 0px 12px;
    }
    
    .hero-content {
        padding: 80px 0px 30px !important;
        gap: 20px !important;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    
    .btn-cta, .btn-explore {
        width: auto;
        min-width: 140px;
        max-width: 260px;
        height: 44px;
        font-size: 13px;
        padding: 12px 20px;
    }
    
    .hero-bottom-text {
        margin-top: 24px;
        padding: 0px 12px;
        font-size: 11px;
    }
    
    /* Features Section */
    .features-heading {
        width: 100%;
        max-width: 100%;
        height: auto;
        gap: 20px;
        padding: 0px 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .features-main-heading {
        font-size: 28px;
        line-height: 36px;
        width: 100%;
        height: auto;
        padding: 0px 12px;
        text-align: center;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .features-supporting-text {
        font-size: 14px;
        line-height: 20px;
        width: 100%;
        height: auto;
        padding: 0px 12px;
        text-align: center;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .features-cards-frame {
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        height: auto !important;
        padding: 0px 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .feature-card {
        width: 350px !important;
        height: 580px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        align-items: flex-start !important;
        position: relative !important;
    }
    
    .feature-card .absolute {
        width: 350px !important;
        height: 438px !important;
        left: 0 !important;
        top: 0 !important;
        border-radius: 20px !important;
    }
    
    .feature-card .absolute .absolute {
        width: 305px !important;
        height: 385px !important;
        left: calc(50% - 305px/2 + 0.5px) !important;
        top: calc(66% - 385px/2 - 70.5px) !important;
        border-radius: 17.4286px !important;
    }
    
    .feature-card .flex {
        width: 350px !important;
        height: 142px !important;
        padding: 24px !important;
        gap: 16px !important;
        border-radius: 0px 0px 16px 16px !important;
    }
    
    .feature-card .flex div:first-child {
        width: auto !important;
        height: auto !important;
        font-size: 20px !important;
        line-height: 24px !important;
    }
    
    .feature-card .flex div:last-child {
        width: auto !important;
        height: auto !important;
        font-size: 13px !important;
        line-height: 18px !important;
    }
    
    /* Metrics Section */
    .metrics-section {
        padding: 32px 0px 48px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .metrics-container {
        padding: 0px 12px;
        gap: 24px;
        align-items: center;
        justify-content: center;
    }
    
    .metrics-content {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 16px;
        align-items: center;
        justify-items: center;
    }
    
    .metric-item {
        width: 100%;
        height: auto;
        min-width: auto;
        padding: 16px 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .metric-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    
    .metric-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    
    .metric-item:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }
    
    .metric-item:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }
    
    .metric-content {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .metric-number, .metric-number-infinity {
        width: 100%;
        height: auto;
        font-size: 40px;
        line-height: 48px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .metric-text-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .metric-text {
        width: 100%;
        height: auto;
        font-size: 13px;
        line-height: 18px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Must-Hear Selections Section */
    .must-hear-section {
        height: 513.56px;
        margin-top: 40px;
        padding-left: 2px;
        padding-right: 2px;
    }
    
    /* Owl Carousel Custom Styles */
    .owl-carousel .owl-stage {
        display: flex;
        align-items: stretch;
    }
    
    .owl-carousel .owl-item {
        height: auto;
    }
    
    .owl-carousel .item {
        height: 100%;
    }
    
    /* Ready to Amplify Section */
    .ready-section {
        padding: 32px 12px;
        margin: 0px 8px;
        border-radius: 12px;
    }
    
    .ready-section h2 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 12px;
    }
    
    .ready-section p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    
    .ready-section .flex {
        flex-direction: column;
        gap: 10px;
    }
    
    .ready-section button {
        width: 100%;
        padding: 10px 14px;
        font-size: 13px;
    }
    
    /* Footer */
    footer {
        padding: 24px 12px 20px;
    }
    
    footer .max-w-7xl {
        padding: 0px 8px;
    }
    
    footer .flex-col {
        gap: 20px;
    }
    
    footer .sm\\:flex-row {
        flex-direction: row;
        gap: 12px;
        align-items: flex-start;
    }
    
    footer .sm\\:space-x-4 {
        gap: 12px;
    }
    
    footer .sm\\:space-x-8 {
        gap: 20px;
    }
    
    footer .lg\\:space-x-16 {
        gap: 20px;
    }
    
    footer .space-y-6 {
        gap: 16px;
    }
    
    footer .space-y-3 {
        gap: 10px;
    }
    
    footer .space-x-3 {
        gap: 10px;
    }
    
    footer .sm\\:space-x-4 {
        gap: 10px;
    }
    
    footer .lg\\:space-x-6 {
        gap: 10px;
    }
    
    footer h3 {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    footer ul li a {
        font-size: 13px;
    }
    
    footer .text-sm {
        font-size: 11px;
    }
    
    footer .sm\\:text-base {
        font-size: 11px;
    }
    
    footer .lg\\:text-lg {
        font-size: 13px;
    }
}

/* About Page Styles */
.about-page-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-ellipse {
    position: absolute;
    width: 575.51px;
    height: 497.46px;
    left: 113px;
    top: -1px;
    background: linear-gradient(180deg, #1D4C8B 0%, #081425 100%);
    opacity: 0.65;
    filter: blur(75px);
    transform: rotate(-65.7deg);
    z-index: 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content-inner {
    text-align: center;
}

.about-heading-section {
    max-width: 800px;
    margin: 0 auto;
}

.about-main-heading {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Impact', sans-serif;
    letter-spacing: -0.02em;
}

.about-supporting-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #a0a0a0;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.about-story-section {
    padding: 100px 0;
    background: #000000;
}

.about-story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-heading {
    text-align: left;
}

.about-story-title-group {
    margin-bottom: 40px;
}

.about-story-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #ffffff;
    font-family: 'Impact', sans-serif;
    letter-spacing: -0.02em;
}

.about-story-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #a0a0a0;
    font-weight: 400;
}

.about-story-text {
    text-align: left;
}

.about-story-paragraph {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-mission-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.about-mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-mission-content {
    text-align: center;
}

.about-mission-heading {
    margin-bottom: 80px;
}

.about-mission-title-group {
    max-width: 800px;
    margin: 0 auto;
}

.about-mission-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #ffffff;
    font-family: 'Impact', sans-serif;
    letter-spacing: -0.02em;
}

.about-mission-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #a0a0a0;
    font-weight: 400;
}

.about-mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.about-mission-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.about-mission-card:hover {
    transform: translateY(-5px);
    border-color: #404040;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-mission-icon-inner {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-mission-content {
    text-align: center;
}

.about-mission-text-group {
    text-align: center;
}

.about-mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #ffffff;
}

.about-mission-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #a0a0a0;
    font-weight: 400;
}

.about-team-section {
    padding: 100px 0;
    background: #000000;
}

.about-team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-team-content {
    text-align: center;
}

.about-team-heading {
    margin-bottom: 80px;
}

.about-team-title-group {
    max-width: 800px;
    margin: 0 auto;
}

.about-team-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #ffffff;
    font-family: 'Impact', sans-serif;
    letter-spacing: -0.02em;
}

.about-team-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #a0a0a0;
    font-weight: 400;
}

.about-team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.about-team-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.about-team-card:hover {
    transform: translateY(-5px);
    border-color: #404040;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
}

.about-team-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
}

.about-team-content {
    text-align: center;
}

.about-team-text-group {
    text-align: center;
}

.about-team-name {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #ffffff;
}

.about-team-role {
    font-size: 1rem;
    font-weight: 500;
    color: #a0a0a0;
    margin-bottom: 12px;
}

.about-team-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a0a0a0;
    font-weight: 400;
}

.about-footer {
    background: #000000;
    padding: 80px 0 40px;
    border-top: 1px solid #2a2a2a;
}

.about-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 40px;
}

.about-footer-left {
    max-width: 400px;
}

.about-footer-logo {
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 24px;
}

.about-footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #a0a0a0;
    font-weight: 400;
}

.about-footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 60px;
    align-items: start;
}

.about-footer-column {
    text-align: left;
}

.about-footer-title {
    margin-bottom: 24px;
}

.about-footer-title-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Space Grotesk', sans-serif;
}

.about-footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-footer-link {
    font-size: 0.875rem;
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.about-footer-link:hover {
    color: #ffffff;
}

.about-language-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-language-selector:hover {
    border-color: #404040;
}

.about-language-icon {
    width: 24px;
    height: 24px;
    color: #a0a0a0;
}

.about-language-text {
    font-size: 0.875rem;
    color: #ffffff;
    font-weight: 500;
}

.about-language-arrow {
    width: 20px;
    height: 20px;
    color: #a0a0a0;
}

.about-footer-border {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #2a2a2a;
}

.about-footer-bottom-left {
    display: flex;
    align-items: center;
}

.about-footer-copyright {
    font-size: 0.875rem;
    color: #a0a0a0;
    font-weight: 400;
}

.about-footer-social-icons {
    display: flex;
    gap: 24px;
    align-items: center;
}

.about-social-icon {
    width: 24px;
    height: 24px;
    color: #a0a0a0;
    transition: color 0.3s ease;
    cursor: pointer;
}

.about-social-icon:hover {
    color: #ffffff;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-story-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .about-story-heading {
        text-align: center;
    }
    
    .about-story-text {
        text-align: center;
    }
    
    .about-footer-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-footer-right {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-main-heading {
        font-size: 2.5rem;
    }
    
    .about-story-title,
    .about-mission-title,
    .about-team-title {
        font-size: 2rem;
    }
    
    .about-mission-cards,
    .about-team-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-footer-right {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-footer-border {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Playlists Page Styles */
.playlists-hero-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.playlists-hero-ellipse {
    position: absolute;
    width: 575.51px;
    height: 497.46px;
    left: 113px;
    top: -1px;
    background: linear-gradient(180deg, #1D4C8B 0%, #081425 100%);
    opacity: 0.65;
    filter: blur(75px);
    transform: rotate(-65.7deg);
    z-index: 0;
}

/* CD Cover Component */
.playlists-hero-cd-cover {
    position: absolute;
    width: 120px;
    height: 120px;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%) rotate(12.62deg);
    background: url('../images/playlist-hero-section-cd.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    z-index: 0;
}

.playlists-hero-cd-texture {
    position: absolute;
    width: 120px;
    height: 120px;
    left: 0px;
    top: 0px;
    background: url('../images/playlist-hero-section-texture.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: plus-lighter;
    transform: rotate(12.62deg);
    border-radius: 12px;
}

.playlists-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.playlists-hero-content {
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.playlists-hero-heading {
    margin-bottom: 48px;
}

.playlists-hero-title-group {
    margin-bottom: 24px;
}

.playlists-main-heading {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #FAFAFA;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.03em;
}

.playlists-subheading {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #FAFAFA;
    opacity: 0.8;
    font-weight: 400;
}

.playlists-search-bar {
    display: flex;
    align-items: center;
    background: rgba(250, 250, 250, 0.1);
    border-radius: 9999px;
    padding: 0 8px;
    width: 480px;
    height: 56px;
    margin: 0 auto;
}

.playlists-search-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B3B3B3;
}

.playlists-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #B3B3B3;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.playlists-search-input::placeholder {
    color: #B3B3B3;
}

.playlists-featured-section,
.playlists-moods-section,
.playlists-genres-section,
.playlists-life-moments-section {
    padding: 48px 0;
    background: #010101;
}

.playlists-featured-container,
.playlists-moods-container,
.playlists-genres-container,
.playlists-life-moments-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.playlists-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;
}

.playlists-section-title {
    font-size: 2.625rem;
    font-weight: 500;
    line-height: 1.3;
    color: #FAFAFA;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.playlists-show-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(250, 250, 250, 0.8);
    text-decoration: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.playlists-show-more:hover {
    color: #FAFAFA;
}

.playlists-cards-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.playlist-card {
    flex: 0 0 288px;
    background: #000000;
    border-radius: 16.92px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.playlist-card:hover {
    transform: translateY(-5px);
}

.playlist-card-cover {
    width: 100%;
    height: 288px;
    position: relative;
    border-radius: 16.92px 16.92px 0 0;
    overflow: hidden;
}

.playlist-card-logo {
    position: absolute;
    top: 13.54px;
    left: 13.54px;
    width: 53.31px;
    height: 54.15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

.playlist-card-art {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.playlist-card-purple {
    background: #8938FF;
}

.playlist-card-green {
    background: #00FFB2;
}

.playlist-card-yellow {
    background: #D9BA3A;
}

.playlist-card-orange {
    background: #FF6138;
}

.playlist-card-info {
    padding: 20.31px;
    background: inherit;
    display: flex;
    flex-direction: column;
    min-height: 120px;
}

.playlist-card-title {
    font-size: 1.69rem;
    font-weight: 500;
    line-height: 1.25;
    color: #010101;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.81px;
    margin-bottom: 10.15px;
}

.playlist-card-description {
    font-size: 0.74rem;
    line-height: 1.4;
    color: #010101;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    letter-spacing: -0.34px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.playlist-card-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
    flex-shrink: 0;
}

.playlist-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #010101;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.5;
}

.playlist-stat svg {
    width: 16px;
    height: 16px;
    stroke: #010101;
    stroke-width: 2;
}

.playlists-mood-grid,
.playlists-genre-grid,
.playlists-life-moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
}

.mood-card,
.genre-card,
.life-moment-card {
    background: #1C1B1B;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.mood-card:hover,
.genre-card:hover,
.life-moment-card:hover {
    transform: translateY(-5px);
}

.mood-card-image,
.genre-card-image,
.life-moment-card-image {
    width: 100%;
    height: 210px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mood-card-info,
.genre-card-info,
.life-moment-card-info {
    padding: 16px;
    background: #1C1B1B;
}

.mood-card-title,
.genre-card-title,
.life-moment-card-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    color: #FAFAFA;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.mood-card-tracks,
.genre-card-tracks,
.life-moment-card-tracks {
    font-size: 0.8125rem;
    line-height: 1.3;
    color: #FAFAFA;
    opacity: 0.7;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
}

.playlists-newsletter-section {
    padding: 96px 0;
    background-color: #1a1a1a;
    background-image: linear-gradient(0deg, rgba(1, 1, 1, 0.2), rgba(1, 1, 1, 0.2)), url('./assets/images/playlist-stayconnected.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    margin: 0 20px;
}

.playlists-newsletter-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.playlists-newsletter-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    max-width: 768px;
}

.playlists-newsletter-heading {
    margin-bottom: 20px;
}

.playlists-newsletter-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.27;
    color: #FAFAFA;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.playlists-newsletter-subtitle {
    font-size: 1.125rem;
    line-height: 1.67;
    color: rgba(250, 250, 250, 0.9);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
}

.playlists-newsletter-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.playlists-newsletter-button:hover {
    background: #FFFFFF;
}

.playlists-newsletter-button span {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    text-transform: uppercase;
    color: #010101;
}

.playlists-footer {
    background: #000000;
    padding: 160px 0 0;
}

.playlists-footer-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

.playlists-footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 104px;
    margin-bottom: 80px;
}

.playlists-footer-left {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 469px;
}

.playlists-footer-logo {
    width: 119px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.playlists-footer-description {
    font-size: 0.875rem;
    line-height: 1.4;
    color: #FAFAFA;
    opacity: 0.9;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
}

.playlists-footer-right {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.playlists-footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.playlists-footer-title {
    margin-bottom: 8px;
}

.playlists-footer-title-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(250, 250, 250, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: 'Inter', sans-serif;
    line-height: 1.33;
}

.playlists-footer-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.playlists-footer-link {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #FAFAFA;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.playlists-footer-link:hover {
    color: #B3B3B3;
}

.playlists-language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px 10px 16px;
    background: #1C1B1B;
    border-radius: 999px;
    width: 185px;
    height: 44px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.playlists-language-selector:hover {
    background: #2A2A2A;
}

.playlists-language-icon {
    width: 24px;
    height: 24px;
    color: #FAFAFA;
}

.playlists-language-text {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.71;
    color: #FAFAFA;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

.playlists-language-arrow {
    width: 20px;
    height: 20px;
    color: #FAFAFA;
}

.playlists-footer-border {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0 24px;
    border-top: 1px solid rgba(250, 250, 250, 0.08);
}

.playlists-footer-bottom-left {
    display: flex;
    align-items: center;
}

.playlists-footer-copyright {
    font-size: 0.75rem;
    line-height: 1.33;
    color: rgba(250, 250, 250, 0.6);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
}

.playlists-footer-social-icons {
    display: flex;
    gap: 0;
}

.playlists-social-icon {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(250, 250, 250, 0.6);
    transition: color 0.3s ease;
    cursor: pointer;
}

.playlists-social-icon:hover {
    color: #FAFAFA;
}

/* Responsive Design for Playlists Page */
@media (max-width: 1024px) {
    .playlists-cards-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .playlist-card {
        flex: 0 0 calc(50% - 12px);
        max-width: 288px;
    }
    
    .playlists-footer-main {
        flex-direction: column;
        gap: 60px;
    }
    
    .playlists-footer-right {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .playlists-main-heading {
        font-size: 2.5rem;
    }
    
    .playlists-section-title {
        font-size: 2rem;
    }
    
    .playlists-search-bar {
        width: 100%;
        max-width: 480px;
    }
    
    .playlist-card {
        flex: 0 0 100%;
        max-width: 288px;
    }
    
    .playlists-mood-grid,
    .playlists-genre-grid,
    .playlists-life-moments-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
    }
    
    .playlists-newsletter-title {
        font-size: 2rem;
    }
    
    .playlists-footer-border {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Help Features Section */
.help-features-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 96px 0px;
    gap: 48px;
    width: 100%;
}

.help-features-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 32px;
    width: 1280px;
    max-width: 1280px;
    height: 44px;
}

.help-features-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 32px;
    width: 1280px;
    height: 44px;
}

.help-features-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 768px;
    max-width: 768px;
    height: 44px;
}

.help-features-title {
    width: 768px;
    height: 44px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin: 0;
}

.help-features-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 64px;
    width: 1280px;
    max-width: 1280px;
    height: 304px;
}

.help-features-content-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    padding: 0px;
    gap: 24px;
    width: 1280px;
    height: 304px;
}

.help-feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 64px;
    width: 302px;
    min-width: 280px;
    height: 244px;
    background: #121212;
    border-radius: 16px;
    flex: none;
    order: 0;
    flex-grow: 1;
}

.help-feature-icon {
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    background: #2B2B2C;
    box-shadow: inset 0px 0px 0px 1px rgba(12, 14, 18, 0.18), inset 0px -2px 0px rgba(12, 14, 18, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 254px;
    height: 84px;
}

.help-feature-title {
    width: 254px;
    height: 28px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #FAFAFA;
    margin: 0;
}

.help-feature-description {
    width: 254px;
    height: 40px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #94979C;
    margin: 0;
}

/* Help Newsletter CTA Section */
.help-newsletter-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 96px 0px;
    gap: 64px;
    width: 100%;
    min-height: 480px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/need-personalized-help.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    margin: 0 auto;
    max-width: 1380px;
}

.help-newsletter-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 32px;
    gap: 32px;
    width: 1280px;
    max-width: 1280px;
    height: 221px;
}

.help-newsletter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 32px;
    width: 1216px;
    height: 221px;
}

.help-newsletter-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 768px;
    max-width: 768px;
    height: 141px;
}

.help-newsletter-title {
    width: 768px;
    height: 61px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 61px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #FAFAFA;
    margin: 0;
}

.help-newsletter-subtitle {
    width: 628px;
    height: 60px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: rgba(250, 250, 250, 0.8);
    margin: 0;
}

.help-newsletter-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 18px;
    gap: 6px;
    width: 240px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-newsletter-button:hover {
    background: #F0F0F0;
    transform: translateY(-1px);
}

.help-newsletter-button span {
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #010101;
}

/* Force help page footer to use standard footer styling */
.help-page footer {
    background-color: #000000 !important;
    padding: 4rem 0 !important;
}

.help-page .footer-bottom-mobile {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
}

.help-page .footer-copyright {
    color: #9ca3af !important;
    font-size: 14px !important;
    font-family: 'Space Grotesk' !important;
}

.help-page .footer-social-icons {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.help-page .footer-social-icons a {
    color: #9ca3af !important;
    transition: color 0.3s ease !important;
}

.help-page .footer-social-icons a:hover {
    color: #ffffff !important;
}

/* Help Page Responsive Design */
@media (max-width: 1440px) {
    .help-navigation {
        padding: 0px 20px;
        gap: 20px;
    }
    
    .help-nav-links {
        width: auto;
        gap: 20px;
    }
    
    .help-nav-menu {
        gap: 20px;
    }
    
    .help-hero-heading {
        font-size: 60px;
        line-height: 72px;
    }
    
    .help-faq-section {
        padding: 120px 20px 80px;
    }
    
    .help-features-section {
        padding: 80px 20px;
    }
    
    .help-newsletter-section {
        margin:  100px 20px;
        padding: 80px 20px;
    }
}

@media (max-width: 1024px) {
    .help-hero-heading {
        font-size: 48px;
        line-height: 60px;
    }
    
    .help-hero-subheading {
        font-size: 18px;
        line-height: 28px;
    }
    
    .help-faq-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .help-features-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .help-newsletter-title {
        font-size: 36px;
        line-height: 48px;
    }
    
    .help-features-content-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .help-feature-card {
        width: 100%;
        max-width: 400px;
    }
    
    .help-faq-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .help-faq-header {
        width: 100%;
    }
    
    .help-faq-list {
        width: 100%;
        padding: 20px 0px 0px 0px;
    }
    
    .help-faq-title {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .help-navigation {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 20px;
    }
    
    .help-nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .help-nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .help-nav-button {
        width: 160px;
        font-size: 13px;
    }
    
    .help-hero-section {
        padding: 40px 20px 60px;
        height: auto;
    }
    
    .help-hero-heading {
        font-size: 36px;
        line-height: 48px;
        width: 100%;
    }
    
    .help-hero-subheading {
        font-size: 16px;
        line-height: 24px;
        width: 100%;
    }
    
    .help-faq-section {
        padding: 80px 20px 60px;
        height: auto;
    }
    
    .help-faq-container {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        padding: 0px 20px;
    }
    
    .help-faq-header {
        width: 100%;
    }
    
    .help-faq-list {
        width: 100%;
        padding: 20px 0px 0px 0px;
    }
    
    .help-faq-title {
        font-size: 24px;
        line-height: 32px;
        width: 100%;
    }
    
    .help-faq-list {
        width: 100%;
        padding: 0px;
    }
    
    .help-faq-item {
        width: 100%;
    }
    
    .help-faq-content-wrapper {
        width: 100%;
    }
    
    .help-faq-text-wrapper {
        width: 100%;
    }
    
    .help-faq-question {
        width: 100%;
    }
    
    .help-faq-answer {
        width: 100%;
    }
    
    .help-features-section {
        padding: 60px 20px;
        height: auto;
    }
    
    .help-features-container {
        width: 100%;
    }
    
    .help-features-content {
        width: 100%;
    }
    
    .help-features-header {
        width: 100%;
    }
    
    .help-features-title {
        font-size: 24px;
        line-height: 32px;
        width: 100%;
    }
    
    .help-features-grid {
        width: 100%;
    }
    
    .help-features-content-grid {
        width: 100%;
    }
    
    .help-feature-card {
        width: 100%;
        max-width: none;
    }
    
    .help-feature-content {
        width: 100%;
    }
    
    .help-feature-title {
        width: 100%;
    }
    
    .help-feature-description {
        width: 100%;
    }
    
    .help-newsletter-section {
        margin: 0 20px;
        padding: 60px 20px;
        height: auto;
    }
    
    .help-newsletter-container {
        width: 100%;
        padding: 0px 20px;
    }
    
    .help-newsletter-content {
        width: 100%;
    }
    
    .help-newsletter-header {
        width: 100%;
    }
    
    .help-newsletter-title {
        font-size: 28px;
        line-height: 36px;
        width: 100%;
    }
    
    .help-newsletter-subtitle {
        font-size: 16px;
        line-height: 24px;
        width: 100%;
    }
}