/* Yoast Homepage Clone - CSS Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid__col-2 {
    grid-template-columns: 1fr 1fr;
}

.grid__col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid__col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.screen-reader-text, .visuallyhidden {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px !important;
    height: 1px !important;
    overflow: hidden;
}

.hide-on-desktop {
    display: none;
}

@media (max-width: 768px) {
    .hide-on-desktop {
        display: block;
    }
    .hide-on-mobile {
        display: none;
    }
    .grid__col-2,
    .grid__col-3,
    .grid__col-4 {
        grid-template-columns: 1fr;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

.text-4xl {
    font-size: 3.5rem;
    font-weight: 800;
}

.text-3xl {
    font-size: 2.5rem;
    font-weight: 700;
}

.text-2xl {
    font-size: 2rem;
    font-weight: 600;
}

.text-xl {
    font-size: 1.5rem;
    font-weight: 500;
}

.text-lg-heading {
    font-size: 1.25rem;
    font-weight: 600;
}

.text-base-subheading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6B7280;
}

.text-sm-subheading {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6B7280;
}

.description {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 800px;
    margin: 0 auto;
}

.yoast_pre_subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #A855F7;
    margin-bottom: 1rem;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.button--new--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.button--new--small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.button--primary {
    background-color: #A855F7;
    color: white;
}

.button--primary:hover {
    background-color: #9333EA;
    transform: translateY(-1px);
}

.button--secondary {
    background-color: #111827;
    color: white;
}

.button--secondary:hover {
    background-color: #374151;
    transform: translateY(-1px);
}

.button--light {
    background-color: white;
    color: #111827;
    border: 2px solid #E5E7EB;
}

.button--light:hover {
    background-color: #F9FAFB;
    border-color: #D1D5DB;
}

.button--fullwidth {
    width: 100%;
    justify-content: center;
}

.button--clean, .button--naked {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

/* Header */
.siteheader {
    background: linear-gradient(90deg, #8B5CF6 0%, #A855F7 25%, #C084FC 50%, #E879F9 75%, #86EFAC 100%);
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.2);
}

.siteheader .row {
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.sticky-menu__logo img {
    height: 40px;
    width: auto;
}

.main_site {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.menu-item > a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.menu-item > a:hover {
    color: #FDE68A;
}

.utility-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.utility-menu a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.utility-menu a:hover {
    color: #FDE68A;
}

.siteheader-spacer {
    height: 80px;
}

.progress-bar-class {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #F3F4F6;
}

.progress-navbar-css,
.progress-navbar-js {
    height: 100%;
    background: linear-gradient(90deg, #10B981 0%, #34D399 100%);
    width: 0;
    transition: width 0.3s ease;
}

/* Mobile Search */
.mobile-search {
    display: none;
    padding: 1rem;
    background: white;
    border-bottom: 1px solid #E5E7EB;
}

.mobile-search form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.mobile-search input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    font-size: 1rem;
}

/* Hero Section */
.homepage-hero-video-pattern {
    padding: 4rem 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 30%, #E2E8F0 70%, #F3E8FF 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.homepage-hero-video-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Curved decorative borders */
.homepage-hero-video-pattern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 500"><path d="M20,50 Q40,100 60,150 Q80,200 60,250 Q40,300 20,350 Q40,400 60,450" stroke="rgb(255,100,100)" stroke-width="2" fill="none" opacity="0.5"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 500"><path d="M80,30 Q60,80 40,130 Q20,180 40,230 Q60,280 80,330 Q60,380 40,430 Q20,480 40,500" stroke="rgb(255,100,100)" stroke-width="2" fill="none" opacity="0.5"/></svg>');
    background-size: 100px auto, 100px auto;
    background-position: -20px center, calc(100% + 20px) center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.homepage-hero-video-pattern .container {
    position: relative;
    z-index: 1;
}

.homepage-hero-video-pattern h1 {
    color: #1F2937;
}

.homepage-hero-video-pattern p {
    color: #4B5563;
}

.homepage-hero-video-pattern .text-base-subheading {
    color: #A855F7;
    font-weight: 700;
}

.homepage-hero-video-pattern h1 {
    margin-bottom: 1rem;
}

.site_logo {
    margin: 2rem 0;
}

.site_logo img {
    max-width: 100%;
    height: auto;
}

.button-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.video-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
}

.video-player {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 1rem;
    overflow: hidden;
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background-color: #000;
}

.video-placeholder:hover .video-overlay {
    background: rgba(0,0,0,0.7);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.video-info {
    text-align: center;
    margin-top: 1rem;
    max-width: 80%;
}

.video-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.video-info p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    line-height: 1.4;
}

.video-placeholder small {
    font-size: 0.875rem;
    opacity: 0.8;
    text-align: center;
}

.play-button {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 30px solid #A855F7;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 8px;
}


/* Power your SEO Section */
.power-seo-section {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 30%, #C084FC 60%, #E879F9 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.power-seo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.power-seo-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 400"><path d="M10,30 Q30,80 50,130 Q70,180 50,230 Q30,280 10,330 Q30,380 50,400" stroke="rgba(255,255,255,0.3)" stroke-width="2" fill="none"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 400"><path d="M90,20 Q70,70 50,120 Q30,170 50,220 Q70,270 90,320 Q70,370 50,400" stroke="rgba(255,255,255,0.3)" stroke-width="2" fill="none"/></svg>');
    background-size: 100px auto, 100px auto;
    background-position: -30px center, calc(100% + 30px) center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.power-seo-content h2 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    line-height: 1.1;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.dashboard-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.dashboard-window {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-window:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) scale(1.02);
}

.dashboard-header {
    background: #F3F4F6;
    padding: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.dashboard-tabs {
    display: flex;
    gap: 0.5rem;
}

.tab {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    border: 1px solid #E5E7EB;
}

.tab.active {
    background: #A855F7;
    color: white;
    border-color: #A855F7;
}

.dashboard-content {
    padding: 1.5rem;
}

.dashboard-welcome {
    margin-bottom: 2rem;
}

.dashboard-welcome p {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
}

.dashboard-scores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.score-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.score-items {
    margin-bottom: 1rem;
}

.score-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.score-label {
    color: #6B7280;
}

.score-value {
    color: #111827;
    font-weight: 500;
}

.score-chart {
    display: flex;
    justify-content: center;
}

.chart-circle {
    width: 120px;
    height: 120px;
}

.chart-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: #F3F4F6;
    stroke-width: 2;
}

.circle-good {
    fill: none;
    stroke: #10B981;
    stroke-width: 2;
    stroke-linecap: round;
}

.circle-ok {
    fill: none;
    stroke: #F59E0B;
    stroke-width: 2;
    stroke-linecap: round;
}

.circle-bad {
    fill: none;
    stroke: #EF4444;
    stroke-width: 2;
    stroke-linecap: round;
}

.readability-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.bar-label {
    min-width: 80px;
    color: #6B7280;
    font-size: 0.75rem;
}

.bar {
    height: 8px;
    border-radius: 4px;
    flex: 1;
    max-width: 100px;
}

.bar.good {
    background: #10B981;
}

.bar.ok {
    background: #F59E0B;
}

.bar.needs-improvement {
    background: #EF4444;
}

.bar-value {
    min-width: 20px;
    color: #111827;
    font-weight: 500;
    font-size: 0.75rem;
}

/* Text Heading Pattern */
.yoast_text_heading_pattern {
    padding: 4rem 0 2rem;
    text-align: center;
}

.yoast_text_heading_pattern h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Feature Product Pattern */
.feature-product-pattern {
    padding: 2rem 0 4rem;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.product_container {
    display: flex;
    justify-content: center;
}

.product-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
}

/* Product Cards */
.card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.product-card__image {
    position: relative;
    margin-bottom: 1rem;
}

.product-card__image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.pill {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #A855F7;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.product-card__title:hover {
    color: #A855F7;
}

.product-card__platform-pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-card__platform-pill-wordpress {
    background: #21759B;
    color: white;
}

.product-card__platform-pill-shopify {
    background: #95BF47;
    color: white;
}

.product-card__product-info {
    margin-top: 1rem;
}

.product-card__product-info__price_block {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.amount {
    font-size: 1.5rem;
    color: #111827;
}

/* Free Plugin CTA */
.free-plugin-cta {
    padding: 2rem 0;
}

.free-plugin-install-cta-pattern {
    background: linear-gradient(135deg, #A855F7 0%, #7C3AED 100%);
    color: white;
}

.free-plugin-install-cta-pattern .grid {
    align-items: center;
}

.plugin-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.plugin-content h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.plugin-content h2 a {
    color: white;
    text-decoration: none;
}

.plugin-content .text-sm-subheading {
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonial */
.yoastcon-separator {
    border: none;
    height: 1px;
    background: #E5E7EB;
    margin: 2rem 0;
}

.yoastcon-testimonial-wrapper {
    padding: 2rem 0;
}

.yoastcon-testimonial {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.yoastcon-testimonial__image {
    flex-shrink: 0;
}

.yoastcon-testimonial__image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.yoastcon-testimonial__quote blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
}

.yoastcon-testimonial__quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: #6B7280;
}

.yoastcon-testimonial__quote cite a {
    color: #A855F7;
    text-decoration: none;
}

/* Newsletter */
.newsletter-block-pattern {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 40%, #C084FC 70%, #E879F9 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-block-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-block-pattern h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-block-pattern ul {
    list-style: none;
    padding: 0;
}

.newsletter-block-pattern li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.newsletter-block-pattern li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.newsletter-signup {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
}

.newsletter-signup label {
    display: block;
    color: #111827;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.field-required {
    color: #EF4444;
}

.form-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-signup input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.privacy-notice {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.privacy-notice a {
    color: #A855F7;
}

/* Support Section */
.support-section {
    padding: 4rem 0;
    background: #F9FAFB;
}

.support-options {
    margin-top: 3rem;
}

.support-option {
    text-align: center;
    padding: 2rem;
}

.support-option img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.support-option h3 {
    margin-bottom: 1rem;
}

.support-option h3 a {
    color: #111827;
    text-decoration: none;
}

.support-option h3 a:hover {
    color: #A855F7;
}

/* Footer */
.sitefooter {
    background: #111827;
    color: white;
    padding: 3rem 0 1rem;
}

.full-footer hr {
    border: none;
    height: 1px;
    background: #374151;
    margin: 2rem 0;
}

.footer__nav {
    padding: 2rem 0;
}

.footer__menu {
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #A855F7;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.legal-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.875rem;
}

.legal-links a:hover {
    color: #A855F7;
}

.currency-switcher label {
    font-size: 0.75rem;
    color: #9CA3AF;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.currency-switcher select {
    background: #374151;
    color: white;
    border: 1px solid #4B5563;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.trademark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #D1D5DB;
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-media a {
    color: #D1D5DB;
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

.social-media a:hover {
    color: #A855F7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .text-4xl {
        font-size: 2.5rem;
    }
    
    .text-3xl {
        font-size: 2rem;
    }
    
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .button-container .button {
        width: 100%;
        max-width: 300px;
    }
    
    .yoastcon-testimonial {
        flex-direction: column;
        text-align: center;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .trademark {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .main_site {
        display: none;
    }
    
    .utility-menu {
        gap: 0.5rem;
    }
    
    .utility-menu span:not(.screen-reader-text) {
        display: none;
    }
    
    .power-seo-content h2 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .dashboard-window {
        transform: none;
        max-width: 100%;
    }
    
    .dashboard-window:hover {
        transform: none;
    }
    
    .dashboard-scores {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .chart-circle {
        width: 100px;
        height: 100px;
    }
    
    .video-info h3 {
        font-size: 1.25rem;
    }
    
    .video-info p {
        font-size: 0.875rem;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
    }
    
    .play-button::before {
        border-left: 24px solid #A855F7;
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        margin-left: 6px;
    }
}

/* Hamburger Menu Animation */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

/* Search Icon */
.search-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.search-icon::before {
    content: '🔍';
    font-size: 16px;
    filter: brightness(0) invert(1);
}

/* Link Underline Effect */
.link-underline {
    color: #A855F7;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.link-underline:hover {
    border-bottom-color: #A855F7;
}

/* Additional Spacing */
.mb-24 {
    margin-bottom: 1.5rem;
}

.mb-40 {
    margin-bottom: 2.5rem;
}

.mb-80 {
    margin-bottom: 5rem;
}

.mb-128 {
    margin-bottom: 8rem;
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.homepage-hero-video-pattern > .container > * {
    animation: fadeInUp 0.6s ease forwards;
}

.homepage-hero-video-pattern > .container > *:nth-child(2) {
    animation-delay: 0.1s;
}

.homepage-hero-video-pattern > .container > *:nth-child(3) {
    animation-delay: 0.2s;
}

.homepage-hero-video-pattern > .container > *:nth-child(4) {
    animation-delay: 0.3s;
}

.homepage-hero-video-pattern > .container > *:nth-child(5) {
    animation-delay: 0.4s;
}

/* Hidden Login Modal Styles */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.login-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.login-modal-content {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    margin: 2rem;
    position: relative;
    z-index: 1;
    animation: slideIn 0.3s ease;
}

.login-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.login-modal-header h3 {
    color: #111827;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.login-modal-close {
    background: none;
    border: none;
    color: #6B7280;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.login-modal-close:hover {
    background: #F3F4F6;
    color: #111827;
}

.login-modal-body {
    padding: 2rem;
}

.login-form-group {
    margin-bottom: 1.5rem;
}

.login-form-group label {
    display: block;
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.login-form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #F9FAFB;
}

.login-form-group input:focus {
    outline: none;
    border-color: #A855F7;
    background: white;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.login-form-actions {
    margin-top: 2rem;
}

.login-btn {
    width: 100%;
    background: linear-gradient(135deg, #A855F7 0%, #9333EA 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-btn:hover {
    background: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

.login-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #DC2626;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-error::before {
    content: '⚠️';
}

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

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

/* Secret trigger hint */
#secret-trigger {
    cursor: pointer;
    transition: all 0.3s ease;
}

#secret-trigger:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.3));
}
