/* LottMott Velocity Styles */

:root {
    --ocean-blue: #d62828;
    --ocean-light: #fbe9e9;
    --ocean-dark: #961c1c;
    --forest-green: #2d5a2d;
    --forest-light: #e8f5e8;
    --sunset-orange: #ff6b35;
    --sunset-light: #fff3f0;
    --galaxy-purple: #6a4c93;
    --galaxy-light: #f3f1f7;
    --neutral-tone: #6c757d;
    --neutral-whisper: #f8f9fa;
    --info-azure: #17a2b8;
    --warning-amber: #ffc107;
    --success-emerald: #28a745;

    --text-primary: var(--ocean-dark);
    --text-secondary: var(--neutral-tone);
    --bg-primary: #ffffff;
    --bg-secondary: var(--ocean-light);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.main_menu {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(214, 40, 40, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar-brand img {
    height: 42px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--ocean-dark);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--ocean-dark);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--ocean-blue);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--ocean-blue);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 25px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
        color: var(--text-primary);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.hero-showcase {
    padding: 120px 0 90px;
    background: linear-gradient(135deg, var(--ocean-light) 0%, var(--neutral-whisper) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 680px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-showcase h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-showcase p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn, .accent-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.primary-btn {
    background: var(--ocean-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
}

.primary-btn:hover {
    background: var(--ocean-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.4)
}

.secondary-btn {
    background: transparent;
    color: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
}

.secondary-btn:hover {
    background: var(--ocean-blue);
    color: white;
    transform: translateY(-2px);
}

.accent-btn {
    background: var(--sunset-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.accent-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Hero Visual Elements */
.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element-sphere, .element-cube, .element-triangle {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.element-sphere {
    width: 80px;
    height: 80px;
    background: var(--ocean-blue);
    border-radius: 50%;
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.element-cube {
    width: 60px;
    height: 60px;
    background: var(--sunset-orange);
    top: 60%;
    left: 10%;
    animation-delay: 2s;
    transform: rotate(45deg);
}

.element-triangle {
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 60px solid var(--galaxy-purple);
    top: 40%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Features Section */
.features-grid {
    padding: 100px 0;
    background: var(--bg-primary);
}

.features-grid h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(214, 40, 40, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.card-icon {
    margin-bottom: 24px;
}

.card-icon img {
    width: 64px;
    height: 64px;
    filter: invert(23%) sepia(89%) saturate(2619%) hue-rotate(346deg) brightness(90%) contrast(91%);
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Community Showcase */
.community-showcase {
    padding: 100px 0;
    background: var(--ocean-light);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.text-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.benefit-list {
    list-style: none;
    margin-bottom: 35px;
}

.benefit-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.benefit-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--ocean-blue);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(214, 40, 40, 0.1);
}

.stat-item img {
    width: 32px;
    height: 32px;
    filter: invert(23%) sepia(89%) saturate(2619%) hue-rotate(346deg) brightness(90%) contrast(91%);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ocean-blue);
    margin-right: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsibility Notice */
.responsibility-notice {
    padding: 80px 0;
    background: var(--neutral-whisper);
    border-top: 3px solid var(--warning-amber);
}

.notice-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.age-restriction {
    text-align: center;
    padding: 30px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 12px;
    border: 2px solid var(--warning-amber);
}

.age-restriction img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    filter: invert(70%) sepia(98%) saturate(1000%) hue-rotate(15deg) brightness(101%) contrast(103%);
}

.age-restriction h3 {
    font-size: 1.5rem;
    color: var(--warning-amber);
    margin-bottom: 12px;
}

.responsible-text h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.responsible-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: var(--ocean-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.brand-section {
    max-width: 400px;
}

.footer-logo {
    height: 48px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.brand-section p {
    margin-bottom: 24px;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-info p {
    margin-bottom: 8px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.link-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.link-column ul {
    list-style: none;
}

.link-column ul li {
    margin-bottom: 12px;
}

.link-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-column ul li a:hover {
    color: white;
}

.regulatory-section h4 {
    margin-bottom: 20px;
    text-align: center;
}

.regulator-links {
    display: flex;
    filter: brightness(0) invert(1);
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.regulator-links a {
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.regulator-links a:hover {
    opacity: 1;
}

.regulator-links img {
    height: 40px;
    width: auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .notice-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .hero-showcase h1 {
        font-size: 2.5rem;
    }

    .hero-showcase p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn, .secondary-btn, .accent-btn {
        width: 100%;
        max-width: 280px;
    }

    .features-grid h2 {
        font-size: 2rem;
    }

    .grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .text-content h2 {
        font-size: 1.9rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .regulator-links {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-showcase {
        padding: 100px 0 70px;
    }

    .hero-showcase h1 {
        font-size: 2.1rem;
    }

    .features-grid, .community-showcase {
        padding: 70px 0;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .responsibility-notice {
        padding: 60px 0;
    }

    .site-footer {
        padding: 40px 0 20px;
    }
}

/* Company Credentials Section */
.company-credentials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--neutral-whisper) 0%, rgba(214, 40, 40, 0.03) 100%);
}

.credentials-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.main-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.main-info > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.license-details {
    margin-bottom: 45px;
}

.license-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(214, 40, 40, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.license-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.license-header img {
    width: 32px;
    height: 32px;
    filter: invert(23%) sepia(89%) saturate(2619%) hue-rotate(346deg) brightness(90%) contrast(91%);
}

.license-header h3 {
    font-size: 1.3rem;
    color: var(--ocean-blue);
    margin: 0;
}

.license-info p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.license-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

.compliance-info h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.compliance-info > p {
    margin-bottom: 28px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.security-item img {
    width: 20px;
    height: 20px;
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

.security-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.certification-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.cert-badge {
    background: var(--ocean-blue);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    max-width: 280px;
}

.cert-badge img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.cert-badge h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.cert-badge p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.trust-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 280px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 24px 16px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(214, 40, 40, 0.1);
}

.trust-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ocean-blue);
    margin-bottom: 4px;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Responsible Gambling Section */
.responsible-gambling {
    padding: 100px 0;
    background: var(--bg-primary);
    border-top: 3px solid var(--warning-amber);
}

.responsible-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.text-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.text-section > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.guideline-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--ocean-light);
    border-radius: 12px;
    border: 1px solid rgba(214, 40, 40, 0.1);
}

.guideline-item img {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    filter: invert(23%) sepia(89%) saturate(2619%) hue-rotate(346deg) brightness(90%) contrast(91%);
}

.guideline-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.guideline-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.warning-signs {
    margin-bottom: 40px;
    padding: 32px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--warning-amber);
}

.warning-signs h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.warning-signs > p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.warning-signs ul {
    list-style: none;
    padding-left: 0;
}

.warning-signs ul li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
    color: var(--text-secondary);
}

.warning-signs ul li:before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-amber);
}

.action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.responsible-btn, .help-btn {
    display: inline-block;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.responsible-btn {
    background: var(--ocean-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
}

.responsible-btn:hover {
    background: var(--ocean-dark);
    transform: translateY(-2px);
}

.help-btn {
    background: var(--warning-amber);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.help-btn:hover {
    background: #e0a800;
    transform: translateY(-2px);
}

.support-resources {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.resource-card, .self-exclusion {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(214, 40, 40, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.resource-card h4, .self-exclusion h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.resource-card p, .self-exclusion p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.helpline-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.helpline-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(214, 40, 40, 0.1);
}

.helpline-item strong {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.helpline-item span {
    color: var(--ocean-blue);
    font-weight: 500;
}

.self-exclusion ul {
    list-style: none;
    padding-left: 0;
}

.self-exclusion ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    color: var(--text-secondary);
}

.self-exclusion ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--ocean-blue);
    font-weight: bold;
}

/* Responsive Design для новых секций */
@media screen and (max-width: 1024px) {
    .credentials-content, .responsible-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .certification-visual {
        flex-direction: row;
        justify-content: center;
        align-items: start;
    }

    .trust-indicators {
        max-width: 200px;
    }
}

@media screen and (max-width: 768px) {
    .company-credentials, .responsible-gambling {
        padding: 70px 0;
    }

    .main-info h2, .text-section h2 {
        font-size: 2rem;
    }

    .guidelines-grid {
        grid-template-columns: 1fr;
    }

    .certification-visual {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons {
        flex-direction: column;
    }

    .responsible-btn, .help-btn {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .license-card {
        padding: 24px;
    }

    .cert-badge {
        padding: 30px 20px;
    }

    .resource-card, .self-exclusion {
        padding: 24px;
    }

    .warning-signs {
        padding: 24px;
    }
}

/* About Page Specific Styles */

/* Page Hero */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--ocean-light) 0%, var(--neutral-whisper) 100%);
    text-align: center;
    position: relative;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.story-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.milestone-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--ocean-light);
    border-radius: 12px;
    border: 1px solid rgba(214, 40, 40, 0.1);
}

.milestone-item img {
    width: 32px;
    height: 32px;
    filter: invert(23%) sepia(89%) saturate(2619%) hue-rotate(346deg) brightness(90%) contrast(91%);
}

.milestone-content h4 {
    font-size: 1.1rem;
    color: var(--ocean-blue);
    margin-bottom: 4px;
}

.milestone-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(214, 40, 40, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.visual-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    filter: invert(23%) sepia(89%) saturate(2619%) hue-rotate(346deg) brightness(90%) contrast(91%);
}

.visual-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.visual-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mission & Values */
.mission-values {
    padding: 100px 0;
    background: var(--ocean-light);
}

.mission-header {
    text-align: center;
    margin-bottom: 60px;
}

.mission-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.mission-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(214, 40, 40, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 24px;
}

.value-icon img {
    width: 48px;
    height: 48px;
    filter: invert(23%) sepia(89%) saturate(2619%) hue-rotate(346deg) brightness(90%) contrast(91%);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Showcase */
.team-showcase {
    padding: 100px 0;
    background: var(--bg-primary);
}

.team-showcase h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: var(--neutral-whisper);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(214, 40, 40, 0.1);
    transition: box-shadow 0.3s ease;
}

.team-member:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: var(--ocean-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.member-avatar img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.member-role {
    color: var(--ocean-blue);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose About */
.why-choose-about {
    padding: 100px 0;
    background: var(--neutral-whisper);
}

.choose-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.choose-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.choose-text > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.7;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reason-item {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(214, 40, 40, 0.1);
}

.reason-item img {
    width: 32px;
    height: 32px;
    margin-top: 4px;
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

.reason-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.reason-text p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.choose-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(214, 40, 40, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.stat-card img {
    width: 40px;
    height: 40px;
    filter: invert(23%) sepia(89%) saturate(2619%) hue-rotate(346deg) brightness(90%) contrast(91%);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ocean-blue);
}

.stat-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact About */
.contact-about {
    padding: 100px 0;
    background: var(--ocean-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(214, 40, 40, 0.1);
}

.contact-item img {
    width: 32px;
    height: 32px;
    margin-top: 4px;
    filter: invert(23%) sepia(89%) saturate(2619%) hue-rotate(346deg) brightness(90%) contrast(91%);
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-text p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.contact-cta {
    display: flex;
    justify-content: center;
}

.cta-card {
    background: var(--ocean-blue);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    max-width: 320px;
}

.cta-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.cta-card p {
    margin-bottom: 24px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Active Navigation State */
.nav-link.active {
    color: var(--ocean-blue);
}

.nav-link.active:after {
    width: 100%;
}

/* Responsive Design for About Page */
@media screen and (max-width: 1024px) {
    .story-layout, .choose-content, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .milestone-grid {
        grid-template-columns: 1fr;
    }

    .choose-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .story-section, .mission-values, .team-showcase, .why-choose-about, .contact-about {
        padding: 70px 0;
    }

    .story-text h2, .mission-header h2, .team-showcase h2, .choose-text h2, .contact-info h2 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .choose-stats {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.1rem;
    }

    .value-card, .team-member {
        padding: 30px 20px;
    }

    .visual-card {
        padding: 30px;
    }

    .cta-card {
        padding: 30px;
    }
}



.link-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.link-column ul {
    list-style: none;
}

.link-column ul li {
    margin-bottom: 12px;
}

.link-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-column ul li a:hover {
    color: white;
}

/* Order Page Styles */

/* Order Hero */
.order-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--ocean-light) 0%, var(--neutral-whisper) 100%);
    text-align: center;
}

.order-hero .hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.order-hero .hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(214, 40, 40, 0.1);
}

.feature-highlight img {
    width: 20px;
    height: 20px;
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

.feature-highlight span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Membership Perks */
.membership-perks {
    padding: 100px 0;
    background: var(--bg-primary);
}

.membership-perks h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.perk-card {
    background: var(--neutral-whisper);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(214, 40, 40, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.perk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.perk-icon {
    margin-bottom: 24px;
}

.perk-icon img {
    width: 48px;
    height: 48px;
    filter: invert(23%) sepia(89%) saturate(2619%) hue-rotate(346deg) brightness(90%) contrast(91%);
}

.perk-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.perk-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--ocean-light);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(214, 40, 40, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--success-emerald);
}

.security-note img {
    width: 16px;
    height: 16px;
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

/* Form Styles */
.membership-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.input-wrapper, .select-wrapper, .textarea-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    filter: invert(45%) sepia(7%) saturate(1009%) hue-rotate(201deg) brightness(94%) contrast(86%);
    z-index: 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid rgba(214, 40, 40, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.textarea-wrapper .input-icon {
    top: 16px;
}

/* Form Footer */
.form-footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.agreement-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(214, 40, 40, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.checkmark:after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-wrapper input:checked ~ .checkmark {
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
}

.checkbox-wrapper input:checked ~ .checkmark:after {
    display: block;
}

.submit-btn {
    background: var(--ocean-blue);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    align-self: center;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(214, 40, 40, 0.3);
}

.submit-btn:hover {
    background: var(--ocean-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(214, 40, 40, 0.4);
}

.submit-btn img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--neutral-whisper);
}

.trust-content {
    text-align: center;
}

.trust-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(214, 40, 40, 0.1);
}

.trust-stat img {
    width: 32px;
    height: 32px;
    filter: invert(23%) sepia(89%) saturate(2619%) hue-rotate(346deg) brightness(90%) contrast(91%);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ocean-blue);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Thank You Page Styles */

/* Thank You Hero */
.thankyou-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--success-emerald) 0%, #20a653 100%);
    color: white;
    text-align: center;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 30px;
}

.success-icon img {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
}

.thankyou-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 24px;
}

.thankyou-hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
}

.confirmation-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-item img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.detail-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    opacity: 0.9;
}

.detail-text p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Next Steps */
.next-steps {
    padding: 100px 0;
    background: var(--bg-primary);
}

.next-steps h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.steps-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: start;
    gap: 24px;
    padding: 30px;
    background: var(--neutral-whisper);
    border-radius: 16px;
    border: 1px solid rgba(214, 40, 40, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.step-item.active {
    background: var(--ocean-light);
    border-color: var(--ocean-blue);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--ocean-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-item.active .step-number {
    background: var(--success-emerald);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.step-time {
    color: var(--ocean-blue);
    font-weight: 500;
    font-size: 0.9rem;
}

.step-item.active .step-time {
    color: var(--success-emerald);
}

/* While Waiting */
.while-waiting {
    padding: 100px 0;
    background: var(--ocean-light);
}

.waiting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.waiting-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.waiting-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.waiting-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.waiting-actions .secondary-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    text-decoration: none;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(214, 40, 40, 0.15);
    border-radius: 12px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.waiting-actions .secondary-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--ocean-blue);
    transform: translateY(-2px);
}

.waiting-actions .secondary-btn img {
    width: 20px;
    height: 20px;
    filter: invert(23%) sepia(89%) saturate(2619%) hue-rotate(346deg) brightness(90%) contrast(91%);
}

.waiting-tips h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip-item {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(214, 40, 40, 0.1);
}

.tip-item img {
    width: 24px;
    height: 24px;
    margin-top: 4px;
    filter: invert(23%) sepia(89%) saturate(2619%) hue-rotate(346deg) brightness(90%) contrast(91%);
}

.tip-text h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.tip-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Support Section */
.support-section {
    padding: 80px 0;
    background: var(--neutral-whisper);
}

.support-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(214, 40, 40, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.support-content img {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    filter: invert(23%) sepia(89%) saturate(2619%) hue-rotate(346deg) brightness(90%) contrast(91%);
}

.support-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.support-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.support-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    background: var(--ocean-light);
    border-radius: 8px;
}

.contact-method img {
    width: 18px;
    height: 18px;
    filter: invert(23%) sepia(89%) saturate(2619%) hue-rotate(346deg) brightness(90%) contrast(91%);
}

.contact-method span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Responsive Design for Order and Thank You Pages */
@media screen and (max-width: 1024px) {
    .waiting-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .order-hero, .thankyou-hero {
        padding: 120px 0 60px;
    }

    .order-hero .hero-content h1, .thankyou-hero h1 {
        font-size: 2.5rem;
    }

    .hero-features, .confirmation-details, .trust-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .membership-perks, .next-steps, .while-waiting {
        padding: 70px 0;
    }

    .form-wrapper {
        padding: 40px 30px;
        margin: 0 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .perks-grid {
        grid-template-columns: 1fr;
    }

    .waiting-actions {
        align-items: stretch;
    }
}

@media screen and (max-width: 480px) {
    .order-hero .hero-content h1, .thankyou-hero h1 {
        font-size: 2.1rem;
    }

    .form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .perk-card, .step-item {
        padding: 30px 20px;
    }

    .support-card {
        padding: 30px;
        margin: 0 20px;
    }
}