/* Astoria Font Face */
@font-face {
    font-family: 'Astoria';
    src: url('../fonts/Astoria-Regular.ttf') format('truetype'),
         url('../fonts/Astoria-Regular.woff') format('woff'),
         url('../fonts/Astoria-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Astoria';
    src: url('../fonts/Astoria-Bold.ttf') format('truetype'),
         url('../fonts/Astoria-Bold.woff') format('woff'),
         url('../fonts/Astoria-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scroll padding for anchor links */
html {
    scroll-padding-top: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.signup-page {
    background: radial-gradient(circle at top left, #fff0f5 0%, #ffe0ec 45%, #ffd7e6 100%);
    min-height: 100vh;
    padding: 2rem;
}

/* Header */
.header {
    background: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
}

.logo-image {
    height: 85px;
    width: auto;
    object-fit: contain;
    background-color: white;
    padding: 2px;
    border-radius: 4px;
}

.logo-main {
    font-family: 'Astoria', 'Space Grotesk', 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: #000;
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 0.65rem;
    color: #666;
    margin-top: -2px;
}

.nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-link:hover {
    color: #e91e63;
}

.nav-link.dropdown::after {
    content: '▼';
    font-size: 0.8rem;
    margin-left: 6px;
}

.btn-primary {
    background: #ad1457;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #880e4f;
}

.btn-primary .icon-circle {
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-primary .icon-circle::after {
    content: '→';
    color: #ad1457;
    font-size: 1rem;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fce4ec 0%, #fff 50%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #f8bbd0 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-hero {
    background: #e91e63;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero::after {
    content: '→';
    font-size: 1.3rem;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-illustration {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.card-order {
    top: 12%;
    right: -60px;
    width: 200px;
}

.card-sales {
    bottom: 12%;
    left: -120px;
    width: 180px;
}

.card-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-content {
    font-size: 0.75rem;
    color: #666;
}

.sales-positive {
    color: #e91e63;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Testimonial Section */
.testimonial {
    background: #f5f5f0;
    padding: 5rem 2rem;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.testimonial-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.testimonial-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .reviews-grid {
        gap: 1.75rem;
    }
    
    .review-card {
        padding: 2rem 1.75rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .review-card {
        padding: 2.25rem;
    }
    
    .testimonial-section-title {
        font-size: 2.25rem;
    }
    
    .testimonial-container {
        padding: 0 2rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .reviews-grid {
        gap: 2.25rem;
    }
    
    .review-card {
        padding: 2.5rem;
    }
    
    .testimonial-section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .reviews-grid {
        gap: 2.5rem;
    }
}

/* Ensure single column on mobile */
@media (max-width: 767px) {
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .review-card {
        width: 100%;
        margin-bottom: 0;
    }
    
    .testimonial-container {
        padding: 0 1.5rem;
    }
}

.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.review-card:nth-child(1) {
    animation-delay: 0.1s;
}

.review-card:nth-child(2) {
    animation-delay: 0.2s;
}

.review-card:nth-child(3) {
    animation-delay: 0.3s;
}

.review-card:nth-child(4) {
    animation-delay: 0.4s;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.2),
                0 4px 16px rgba(233, 30, 99, 0.15);
    background: linear-gradient(135deg, #fff 0%, #fff8fb 100%);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 228, 236, 0) 0%, rgba(248, 187, 208, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    pointer-events: none;
    z-index: 0;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:active {
    transform: translateY(-4px) scale(0.98);
    transition: transform 0.1s ease;
}

.review-card:focus {
    outline: 3px solid #e91e63;
    outline-offset: 4px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e91e63;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(233, 30, 99, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

.review-stars {
    font-size: 1rem;
    line-height: 1;
}

.review-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.review-card:hover .review-title {
    color: #e91e63;
}

.review-quote {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.review-card:hover .review-quote {
    color: #555;
}

.review-author {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
    position: relative;
    z-index: 1;
}

.review-author-name {
    font-weight: 600;
    color: #333333;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.review-author-role {
    color: #0d9488;
    font-size: 0.9rem;
    font-weight: 500;
}


/* Trusted Brands */
.trusted-brands {
    background: #fce4ec;
    padding: 4rem 2rem;
}

.trusted-brands-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.trusted-brands h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.brand-logo {
    font-size: 1.2rem;
    color: #999;
    font-weight: 600;
    opacity: 0.7;
}

/* Features Section */
.features {
    background: #fce4ec;
    padding: 5rem 2rem;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 0;
    align-items: stretch;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation delays for cards */
.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation trigger when card is visible */
.feature-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effect - lift and glow */
.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.2),
                0 4px 16px rgba(233, 30, 99, 0.15);
    background: linear-gradient(135deg, #fff 0%, #fff8fb 100%);
}

/* Subtle background gradient on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 228, 236, 0) 0%, rgba(248, 187, 208, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
    pointer-events: none;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 1;
}

/* Click/tap feedback */
.feature-card:active {
    transform: translateY(-4px) scale(0.98);
    transition: transform 0.1s ease;
}

/* Focus state for accessibility */
.feature-card:focus {
    outline: 3px solid #e91e63;
    outline-offset: 4px;
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
}

/* Icon hover effect - pulse and scale */
.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, #f8bbd0, #f48fb1);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    flex-shrink: 0;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover h3 {
    color: #e91e63;
    transform: translateY(-2px);
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover p {
    color: #555;
}

/* Dark Pink Section */
.dark-section {
    background: #ad1457 url('../images/section.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    padding: 5rem 2rem;
    position: relative;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(173, 20, 87, 0.7);
    z-index: 0;
}

.dark-section-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dark-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.dark-section p {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.dark-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.dark-grid > div {
    display: flex;
    flex-direction: column;
}

.dark-grid h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.dark-grid p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.highlight-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.highlight-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Marketing Tools */
.marketing-tools {
    background: #fff;
    padding: 5rem 2rem;
}

.marketing-tools-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.marketing-layout {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 3.5rem);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.marketing-horizontal-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: saturate(1.15) brightness(1.05);
    z-index: 0;
}

.marketing-layout::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0.25) 100%);
    z-index: 0;
    pointer-events: none;
}

.marketing-content {
    position: relative;
    z-index: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.marketing-content h2 {
    margin-bottom: 0;
    color: #1a1a1a;
    text-shadow: none;
}

.marketing-tools h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.tool-card {
    background: rgba(20, 20, 20, 0.85);
    padding: 2.25rem;
    border-radius: 20px;
    color: #fff;
    text-align: left;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tool-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.tool-card p {
    color: #ccc;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .marketing-layout {
        padding: 2rem;
    }

    .marketing-overlay-label {
        align-self: stretch;
        border-radius: 16px;
        text-align: center;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    background: #ad1457 url('../images/section.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(173, 20, 87, 0.7);
    z-index: 0;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    background: rgba(233, 30, 99, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.btn-cta {
    background: #fff;
    color: #ad1457;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta::after {
    content: '→';
    font-size: 1.3rem;
    color: #e91e63;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #999;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-logo {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.footer-copyright {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    text-decoration: underline;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero-container,
    .dark-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dark-grid > div {
        margin-bottom: 1.5rem;
    }


    .features-grid,
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .dark-section h2 {
        font-size: 2.5rem;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .features-grid,
    .tools-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 3rem 1.5rem;
    }


    .feature-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        margin-bottom: 1rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .features {
        background-attachment: scroll;
    }

    .dark-section {
        background-attachment: scroll;
    }

    .cta-section {
        background-attachment: scroll;
    }
}

/* Medium screens (600px - 768px) */
@media (max-width: 600px) and (min-width: 481px) {
    .testimonial {
        padding: 3rem 1.5rem;
    }

    .testimonial-section-title {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }

    .review-card {
        padding: 2rem 1.5rem;
    }

    .review-title {
        font-size: 1.15rem;
    }

    .review-quote {
        font-size: 0.95rem;
    }
}

/* Extra small screens (phones, 480px and below) */
@media (max-width: 480px) {
    .testimonial {
        padding: 2.5rem 1rem;
    }

    .testimonial-container {
        padding: 0;
    }

    .testimonial-section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    .review-card {
        padding: 1.5rem 1.25rem;
        width: 100%;
    }

    .review-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        line-height: 1.35;
    }

    .review-quote {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.7;
    }

    .review-header {
        margin-bottom: 1.25rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .review-category {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .review-stars {
        font-size: 0.85rem;
    }

    .review-author {
        padding-top: 1.25rem;
    }

    .review-author-name {
        font-size: 0.95rem;
    }

    .review-author-role {
        font-size: 0.85rem;
    }
}

/* Very small screens (320px - 375px) */
@media (max-width: 375px) {
    .testimonial {
        padding: 2rem 0.75rem;
    }

    .testimonial-section-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .review-card {
        padding: 1.25rem 1rem;
    }

    .review-title {
        font-size: 1rem;
    }

    .review-quote {
        font-size: 0.85rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .run-store-section {
        padding: 3rem 1.5rem;
    }

    .run-store-left {
        position: relative;
        top: auto;
        padding: 1.5rem;
        max-height: none;
        overflow-y: visible;
    }

    .run-store-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .run-store-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .run-store-subtext {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .run-store-right {
        gap: 2.5rem;
    }

    .feature-block {
        margin-bottom: 1rem;
        padding-top: 30px;
        margin-top: -30px;
    }

    .feature-visual-teal,
    .feature-visual-orange,
    .feature-visual-teal-light {
        margin-bottom: 1.5rem;
        padding: 2rem;
        min-height: 250px;
    }

    .floating-label {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    .dark-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .dark-grid {
        gap: 2rem;
        margin-top: 2rem;
    }

    .dark-grid h3 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .dark-section p {
        margin-bottom: 1rem;
    }

    .dark-section {
        background-attachment: scroll;
    }

    .cta-section {
        background-attachment: scroll;
    }

    .hero-visual {
        height: 300px;
    }

    .floating-card {
        display: none;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        margin-bottom: 0.875rem;
    }

    .feature-card {
        padding: 1.5rem 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.875rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .features {
        padding: 3rem 1.5rem;
        background-attachment: scroll;
    }
}

/* Run Your Store Section */
.run-store-section {
    background-color: #0d2426;
    color: #ffffff;
    padding: 6rem 2rem;
}

.run-store-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    overflow: visible;
}

.run-store-left {
    border: 1px solid #2a4b4d;
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: sticky;
    top: 120px;
    height: fit-content;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1;
    align-self: start;
    scroll-behavior: smooth;
    /* Custom scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: #2a4b4d transparent;
}

/* Custom scrollbar for WebKit browsers */
.run-store-left::-webkit-scrollbar {
    width: 6px;
}

.run-store-left::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.run-store-left::-webkit-scrollbar-thumb {
    background: #2a4b4d;
    border-radius: 10px;
}

.run-store-left::-webkit-scrollbar-thumb:hover {
    background: #3a5b5d;
}

.run-store-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    margin-top: 0;
    color: #ffffff;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.run-store-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    color: #e0e0e0;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.run-store-subtext {
    font-size: 1rem;
    color: #b0bec5;
    margin-bottom: 1.5rem;
    margin-top: 0;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.run-store-note {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
}

.run-store-right {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 1;
    padding-top: 0;
    padding-bottom: 0;
    scroll-behavior: smooth;
}

.feature-block {
    scroll-margin-top: 2rem;
    margin-bottom: 0;
    margin-top: 0;
    position: relative;
    overflow: visible;
    min-height: fit-content;
    /* Add padding to account for animation space */
    padding-top: 40px;
    margin-top: -40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
}

.feature-visual-teal {
    background-color: #1de9b6;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    position: relative;
    overflow: visible;
    z-index: 2;
    margin-top: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
}

.feature-visual-teal:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(29, 233, 182, 0.2);
}

.feature-visual-orange {
    background-color: #ffab91;
    /* Light orange */
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    position: relative;
    overflow: visible;
    z-index: 2;
    margin-top: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
}

.feature-visual-orange:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 171, 145, 0.2);
}

.feature-visual-teal-light {
    background-color: #80cbc4;
    /* Lighter teal */
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    position: relative;
    overflow: visible;
    z-index: 2;
    margin-top: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
}

.feature-visual-teal-light:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(128, 203, 196, 0.2);
}

.run-store-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0;
    color: #ffffff;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.run-store-feature-text {
    font-size: 1rem;
    color: #b0bec5;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Enhanced Animations - Smooth and Professional */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animation delays */
.animate-on-scroll[data-delay="0"] {
    transition-delay: 0ms;
}

.animate-on-scroll[data-delay="100"] {
    transition-delay: 100ms;
}

.animate-on-scroll[data-delay="200"] {
    transition-delay: 200ms;
}

.animate-on-scroll[data-delay="300"] {
    transition-delay: 300ms;
}

.animate-on-scroll[data-delay="400"] {
    transition-delay: 400ms;
}

/* Fade in from different directions */
.animate-fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale animation */
.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Floating Labels */
.floating-label {
    position: absolute;
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    white-space: nowrap;
    pointer-events: none;
}

.label-top-left {
    top: -15px;
    left: -20px;
}

.label-bottom-left {
    bottom: -15px;
    left: -10px;
}

.label-middle-right {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
}

.label-top-right {
    top: -15px;
    right: -20px;
}

.label-middle-left {
    top: 60%;
    left: -40px;
}

.icon-orange {
    color: #ff9800;
}

.icon-teal {
    color: #00a8a8;
}

/* Mockup CSS Art */
.mockup-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    /* Ensure relative positioning for absolute children */
}

.mockup-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.mockup-dot {
    width: 8px;
    height: 8px;
    background: #ff9800;
    border-radius: 50%;
    margin-right: 8px;
}

.mockup-line {
    height: 4px;
    width: 60px;
    background: #f0f0f0;
    border-radius: 2px;
}

.mockup-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f5f5f5;
}

.mockup-label {
    font-size: 0.8rem;
    color: #888;
}

.mockup-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
}

.mockup-btn {
    background: #000;
    color: white;
    text-align: center;
    padding: 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 1rem;
    width: fit-content;
}

@media (max-width: 900px) {
    .testimonial {
        padding: 3rem 1.5rem;
    }

    .testimonial-container {
        padding: 0 1.5rem;
    }

    .testimonial-section-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }

    .run-store-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: start;
    }

    .run-store-section {
        padding: 4rem 2rem;
    }

    .run-store-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .run-store-left {
        padding: 2rem;
        position: relative;
        top: auto;
        max-height: none;
        overflow-y: visible;
    }

    .run-store-text {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }

    .run-store-subtext {
        margin-bottom: 1.5rem;
    }

    .run-store-right {
        gap: 3rem;
    }

    .feature-block {
        margin-bottom: 1rem;
        padding-top: 30px;
        margin-top: -30px;
    }

    .feature-visual-teal,
    .feature-visual-orange,
    .feature-visual-teal-light {
        margin-bottom: 1.5rem;
    }
}

/* Signup Page */
.signup-wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    gap: 4rem;
    background: linear-gradient(145deg, #fff6f8 0%, #ffe9f1 40%, #ffdfe9 100%);
    border-radius: 32px;
}

.signup-content {
    padding: 2rem;
}

.signup-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.signup-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 500px;
}

.signup-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.signup-input {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    flex: 1;
    min-width: 250px;
}

.signup-visual {
    height: 500px;
    background: linear-gradient(135deg, #f0d8c7 0%, #f7efe8 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(55, 35, 20, 0.25);
}

.signup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    filter: saturate(1.05);
}

/* Success Message Styles */
.success-message {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #fff 0%, #fce4ec 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(173, 20, 87, 0.15);
    margin-top: 2rem;
    animation: slideInUp 0.6s ease-out;
    border: 2px solid rgba(173, 20, 87, 0.1);
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ad1457 0%, #e91e63 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    font-weight: 700;
    animation: scaleIn 0.5s ease-out 0.2s both;
    box-shadow: 0 10px 30px rgba(173, 20, 87, 0.3);
    position: relative;
}

.success-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #ad1457 0%, #e91e63 100%);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.success-title {
    font-family: 'Poppins', 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ad1457;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ad1457 0%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out 0.3s both;
    letter-spacing: -0.5px;
}

.success-text {
    font-family: 'Inter', 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.back-link {
    animation: fadeIn 0.6s ease-out 0.5s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .signup-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .signup-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .signup-visual {
        height: 300px;
        order: -1;
    }

    .signup-title {
        font-size: 2.5rem;
    }
}

/* Brand Logos Styling */
.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.brand-logo {
    color: #aaa;
    /* Muted gray color */
    font-weight: 600;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: color 0.3s ease;
}

.brand-logo:hover {
    color: #555;
}

.logo-truke {
    font-family: sans-serif;
    font-weight: 700;
    line-height: 1;
}

.truke-text {
    font-size: 2rem;
    letter-spacing: -1px;
}

.truke-tagline {
    font-size: 0.6rem;
    font-weight: 400;
    margin-top: 2px;
}

.logo-chocolate {
    font-family: sans-serif;
    font-size: 1.8rem;
}

.chocolate-x {
    font-family: serif;
    font-style: italic;
    font-weight: 700;
}

.logo-hmt {
    font-family: 'Courier New', monospace;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -2px;
}

.logo-newish {
    font-family: sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 1.8rem;
}

.logo-goldendori {
    font-family: serif;
    font-size: 0.9rem;
    line-height: 1.2;
    letter-spacing: 1px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    text-align: left;
}

.goldendori-icon {
    font-size: 1.5rem;
}

.logo-klipsch {
    font-family: cursive;
    /* Fallback to cursive */
    font-size: 2rem;
}

.logo-navlik {
    font-family: sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ccc;
    /* Lighter gray as in image */
}


/* Stunning No-Code Themes Section */
.themes-section {
    background: linear-gradient(180deg, #ffd9e5 0%, #ffeef4 60%, #ffd6e1 100%);
    color: #2a1f1f;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.themes-section::before,
.themes-section::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
    opacity: 0.35;
    z-index: 0;
}

.themes-section::before {
    top: -120px;
    left: -80px;
}

.themes-section::after {
    bottom: -150px;
    right: -120px;
}

.themes-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.themes-header {
    text-align: left;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e91e63;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
}

.themes-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.themes-description {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.themes-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.theme-feature-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 25px 45px rgba(255, 155, 180, 0.25), 0 8px 18px rgba(209, 110, 128, 0.15);
    backdrop-filter: blur(12px);
}

.theme-feature-card::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.theme-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 45px 75px rgba(212, 155, 155, 0.45), 0 20px 40px rgba(203, 125, 149, 0.35);
    background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.85), rgba(63, 27, 52, 0.95));
    color: #fff9fb;
    border-color: rgba(255, 255, 255, 0.25);
}

.theme-feature-card:hover h3 {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.35), 0 0 25px rgba(244, 191, 207, 0.45);
}

.theme-feature-card:hover p,
.theme-feature-card:hover span,
.theme-feature-card:hover strong {
    color: #fff9fb;
}

.theme-feature-card:hover .shopping-bags-image {
    filter: invert(1) brightness(1.05);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
}

.shopping-bags-icon {
    font-size: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopping-bags-image {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.theme-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
    text-align: left;
    margin: 0;
    white-space: normal;
}

.themes-gallery {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.themes-strip {
    display: grid;
    gap: 1.5rem;
}

.themes-strip--wide {
    grid-template-columns: repeat(4, minmax(240px, 1fr));
}

.themes-strip--devices {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
}

.theme-frame {
    --frame-bg: #fff7f4;
    --accent: #f5b7b1;
    --shadow: rgba(244, 167, 167, 0.55);
    background: var(--frame-bg);
    border-radius: 28px;
    padding: 1.75rem;
    box-shadow:
        0 45px 85px rgba(41, 21, 21, 0.18),
        0 18px 36px var(--shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.theme-frame::before {
    content: '';
    position: absolute;
    inset: 18px 22px auto 22px;
    height: 40px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
    opacity: 0.6;
    border-radius: 20px;
    pointer-events: none;
}

.theme-frame::after {
    content: '';
    position: absolute;
    inset: 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.25);
    opacity: 0.65;
    pointer-events: none;
}

.theme-frame:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow:
        0 65px 120px rgba(41, 21, 21, 0.22),
        0 35px 55px rgba(244, 167, 167, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.theme-frame--tall .theme-device {
    min-height: 260px;
}

.theme-frame--tablet .theme-device {
    min-height: 190px;
}

.theme-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7a4a42;
    background: rgba(255, 255, 255, 0.65);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(122, 74, 66, 0.15);
}

.theme-device {
    background: #fff;
    border-radius: 24px;
    padding: 1.4rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 18px 35px rgba(20, 15, 38, 0.12);
    position: relative;
    overflow: hidden;
}

.theme-device-notch {
    width: 120px;
    height: 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0 auto 1rem;
}

.theme-device img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.15);
    display: block;
}

.theme-device--desktop::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    width: 60%;
    height: 18px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02));
    border-radius: 12px;
}

.theme-device--tablet {
    border-radius: 32px;
    padding: 1rem;
}

.theme-device--tablet::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 6px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 999px;
}

.theme-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.theme-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2b1c1c;
}

.theme-category {
    font-size: 0.95rem;
    color: rgba(43, 28, 28, 0.75);
}

.theme-frame[data-theme="artisan"] {
    --frame-bg: #fdf4ef;
    --accent: #d7a478;
    --shadow: rgba(215, 164, 120, 0.4);
}

.theme-frame[data-theme="botanica"] {
    --frame-bg: #f3f6ed;
    --accent: #9fbb8f;
    --shadow: rgba(138, 169, 123, 0.35);
}

.theme-frame[data-theme="aura"] {
    --frame-bg: #f5eee8;
    --accent: #c7b6a3;
    --shadow: rgba(173, 152, 131, 0.38);
}

.theme-frame[data-theme="beauty"] {
    --frame-bg: #fde4ec;
    --accent: #f18aa5;
    --shadow: rgba(243, 137, 169, 0.42);
}

/* D2C Platform Section */
.d2c-section {
    background: #ffc0cb;
    /* Light pink */
    color: #0d3d3d;
    padding: 6rem 2rem;
}

.d2c-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.d2c-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0d3d3d;
}

.d2c-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #0d3d3d;
}

/* D2C Tools Flashcard Section */
.d2c-flashcards {
    background: #fce4ec;
    padding: 4rem 2rem;
    position: relative;
}

.flashcards-container {
    max-width: 1400px;
    margin: 0 auto;
}

.flashcards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.flashcard-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.15), 0 2px 8px rgba(233, 30, 99, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                box-shadow 0.4s ease,
                scale 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: fadeInUp 0.6s ease forwards;
    height: 450px;
}

.flashcard-card:nth-child(1) {
    animation-delay: 0.1s;
}

.flashcard-card:nth-child(2) {
    animation-delay: 0.2s;
}

.flashcard-card:nth-child(3) {
    animation-delay: 0.3s;
}

.flashcard-card:nth-child(3) .flashcard-image-wrapper {
    background: #f5f5f0;
}

.flashcard-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.flashcard-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 40px rgba(233, 30, 99, 0.25), 0 4px 12px rgba(233, 30, 99, 0.15);
}

.flashcard-image-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.flashcard-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flashcard-card:nth-child(3) .flashcard-image {
    object-fit: cover;
    object-position: center;
}

.flashcard-card:hover .flashcard-image {
    transform: scale(1.05);
}

/* Responsive styles for flashcards */
@media (max-width: 1200px) {
    .flashcards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .flashcards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .d2c-flashcards {
        padding: 3rem 1.5rem;
    }

    .flashcard-card {
        height: 380px;
    }

    .flashcard-image-wrapper {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .flashcards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .d2c-flashcards {
        padding: 2rem 1rem;
    }

    .flashcard-card {
        height: auto;
        min-height: 320px;
    }

    .flashcard-image-wrapper {
        height: 320px;
    }
}

@media (max-width: 1200px) {
    .themes-strip--wide,
    .themes-strip--devices {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
    }
}

@media (max-width: 1024px) {
    .themes-features {
        grid-template-columns: 1fr;
    }

    .themes-title {
        font-size: 2.5rem;
    }

    .theme-frame {
        padding: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
    background: transparent;
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/khoj.jpg') center/cover no-repeat;
    filter: saturate(1.1) brightness(1.02);
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.25);
    z-index: 1;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.92);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 55px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .themes-strip--wide,
    .themes-strip--devices {
        grid-template-columns: 1fr;
    }

    .theme-frame {
        border-radius: 22px;
    }

    .d2c-title {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-section h2 {
        font-size: 2rem;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Base responsive adjustments */
* {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
}

/* Fluid typography for better scaling */
@media (max-width: 1400px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
}

/* Header responsive improvements */
@media (max-width: 768px) {
    .header {
        padding: 0.75rem 1rem;
    }

    .logo-image {
        height: 65px;
    }

    .nav {
        gap: 0.75rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.25rem 0.5rem;
    }

    .btn-primary {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-primary .icon-circle {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0.75rem;
    }

    .logo-image {
        height: 58px;
    }

    .nav {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Hero section responsive */
@media (max-width: 1024px) {
    .hero {
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2.5rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    .hero-visual {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0.75rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-visual {
        height: 300px;
    }
}

/* Run Store Section responsive */
@media (max-width: 1024px) {
    .run-store-section {
        padding: 4rem 1.5rem;
    }

    .run-store-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .run-store-section {
        padding: 3rem 1rem;
    }

    .run-store-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .run-store-title {
        font-size: 2.25rem;
    }

    .run-store-text {
        font-size: 1.1rem;
    }

    .feature-visual-teal,
    .feature-visual-orange,
    .feature-visual-teal-light {
        padding: 2rem;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .run-store-section {
        padding: 2.5rem 0.75rem;
    }

    .run-store-title {
        font-size: 1.75rem;
    }

    .run-store-text {
        font-size: 1rem;
    }

    .run-store-feature-title {
        font-size: 1.25rem;
    }
}

/* Themes section responsive */
@media (max-width: 1024px) {
    .themes-section {
        padding: 4rem 1.5rem;
    }

    .themes-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .themes-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .themes-section {
        padding: 3rem 1rem;
    }

    .themes-title {
        font-size: 2rem;
    }

    .themes-description {
        font-size: 1.1rem;
    }

    .themes-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .themes-section {
        padding: 2.5rem 0.75rem;
    }

    .themes-title {
        font-size: 1.75rem;
    }

    .themes-description {
        font-size: 1rem;
    }
}

/* D2C section responsive */
@media (max-width: 768px) {
    .d2c-section {
        padding: 4rem 1.5rem;
    }

    .d2c-title {
        font-size: 2rem;
    }

    .d2c-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .d2c-section {
        padding: 3rem 1rem;
    }

    .d2c-title {
        font-size: 1.75rem;
    }
}

/* Marketing tools responsive */
@media (max-width: 1024px) {
    .marketing-tools {
        padding: 4rem 1.5rem;
    }

    .marketing-tools h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .marketing-tools {
        padding: 3rem 1rem;
    }

    .marketing-tools h2 {
        font-size: 2rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tool-card {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .marketing-tools {
        padding: 2.5rem 0.75rem;
    }

    .marketing-tools h2 {
        font-size: 1.75rem;
    }

    .tool-card {
        padding: 1.5rem;
    }

    .tool-card h3 {
        font-size: 1.15rem;
    }
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 1rem 1rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0.75rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Signup page responsive */
@media (max-width: 900px) {
    .signup-wrapper {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .signup-content {
        order: 2;
    }

    .signup-visual {
        order: 1;
        height: 300px;
        margin-bottom: 2rem;
    }

    .signup-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .signup-page {
        padding: 1rem;
    }

    .signup-wrapper {
        padding: 1rem;
        border-radius: 20px;
    }

    .signup-title {
        font-size: 2rem;
    }

    .signup-text {
        font-size: 1.1rem;
    }

    .signup-form {
        flex-direction: column;
    }

    .signup-input {
        width: 100%;
        min-width: 100%;
    }

    .success-message {
        padding: 2rem 1.5rem;
    }

    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .success-title {
        font-size: 2rem;
    }

    .success-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .signup-page {
        padding: 0.75rem;
    }

    .signup-wrapper {
        padding: 1rem 0.75rem;
    }

    .signup-title {
        font-size: 1.75rem;
    }

    .signup-text {
        font-size: 1rem;
    }

    .signup-visual {
        height: 250px;
    }

    .success-message {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .success-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .success-text {
        font-size: 0.95rem;
    }
}

/* Trusted brands responsive */
@media (max-width: 768px) {
    .trusted-brands {
        padding: 3rem 1rem;
    }

    .trusted-brands h2 {
        font-size: 1.75rem;
    }

    .brands-grid {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .trusted-brands {
        padding: 2.5rem 0.75rem;
    }

    .trusted-brands h2 {
        font-size: 1.5rem;
    }

    .brands-grid {
        gap: 1.5rem;
    }

    .brand-logo {
        font-size: 1rem;
    }
}

/* CTA section responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 2.25rem;
    }

    .btn-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 2.5rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .btn-cta {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* FAQ section responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.15rem;
    }

    .faq-item p {
        font-size: 0.95rem;
    }
}

/* Container max-width adjustments */
@media (max-width: 1400px) {
    .header-container,
    .hero-container,
    .features-container,
    .testimonial-container,
    .trusted-brands-container,
    .themes-container,
    .dark-section-container,
    .marketing-tools-container,
    .cta-container,
    .footer-container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Smooth transitions for all interactive elements */
@media (prefers-reduced-motion: no-preference) {
    * {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
}

/* Touch-friendly sizing for mobile */
@media (max-width: 768px) {
    a, button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Dark section responsive improvements */
@media (max-width: 1024px) {
    .dark-section {
        padding: 4rem 1.5rem;
    }

    .dark-section h2 {
        font-size: 2.25rem;
    }

    .dark-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .dark-section {
        padding: 3rem 1rem;
    }

    .dark-section h2 {
        font-size: 2rem;
    }

    .dark-section p {
        font-size: 1.1rem;
    }

    .dark-section-feature {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dark-section {
        padding: 2.5rem 0.75rem;
    }

    .dark-section h2 {
        font-size: 1.75rem;
    }

    .dark-section p {
        font-size: 1rem;
    }
}

/* Features section additional responsive */
@media (max-width: 1200px) {
    .features {
        padding: 4rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .features {
        padding: 3rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.75rem 1.25rem;
    }
}

/* Additional container padding adjustments */
@media (max-width: 480px) {
    .header-container,
    .hero-container,
    .features-container,
    .testimonial-container,
    .trusted-brands-container,
    .themes-container,
    .dark-section-container,
    .marketing-tools-container,
    .cta-container,
    .footer-container,
    .run-store-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Ensure images don't overflow */
@media (max-width: 768px) {
    .hero-visual img,
    .signup-visual img,
    .flashcard-image,
    .theme-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* Text overflow handling */
@media (max-width: 480px) {
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    p, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}