/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #3E2723; /* Dark Charcoal */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section Styles */
.header-section {
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 8px 0;
    transition: all 0.3s ease;
}

/* Header scroll effect */
.header-section.scrolled {
    padding: 4px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2E7D32; /* Forest Green */
    margin: 0;
    text-shadow: 0 2px 4px rgba(46, 125, 50, 0.2);
}

.logo-tagline {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4E342E; /* Rich Brown */
    opacity: 0.8;
}

.offer-section {
    display: flex;
    align-items: center;
}

.offer-badge {
    background: linear-gradient(135deg, #E65100, #FF6F00); /* Deep Saffron to Bright Orange */
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.offer-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFD54F; /* Soft Gold */
}

.offer-original {
    font-size: 0.8rem;
    text-decoration: line-through;
    opacity: 0.7;
}

/* Hero Section Styles */
.hero-section {
    background: #FAF3E0; /* Soft Cream */
    min-height: 100vh; /* Fallback */
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    padding: 100px 0 60px 0; /* Reduced top padding for smaller header */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3E2723, #E65100, #2E7D32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: none;
    position: relative;
    animation: headlineGlow 3s ease-in-out infinite alternate;
}

.hero-headline::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #FFD54F, #FFF176, #FFD54F);
    z-index: -1;
    border-radius: 20px;
    opacity: 0.1;
    animation: headlineBackground 4s ease-in-out infinite;
}

@keyframes headlineGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(230, 81, 0, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(230, 81, 0, 0.6));
    }
}

@keyframes headlineBackground {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.02) rotate(1deg);
    }
}

.hero-subheading {
    font-size: 1.5rem;
    font-weight: 500;
    color: #4E342E; /* Rich Brown */
    margin-bottom: 40px;
    line-height: 1.4;
}

.hero-cta-btn {
    background: #E65100; /* Deep Saffron */
    color: #FFFFFF;
    border: none;
    padding: 18px 36px;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-cta-btn:hover {
    background: #FF6F00; /* Bright Orange */
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(230, 81, 0, 0.4);
}

.hero-cta-btn:active {
    transform: translateY(0);
}

/* Hero Visual - Signup Form */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-form-container {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid #2E7D32;
    max-width: 450px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.signup-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E65100, #FF6F00, #2E7D32);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 1rem;
    color: #4E342E;
    opacity: 0.8;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.form-group input:focus {
    outline: none;
    border-color: #2E7D32;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

.form-group input::placeholder {
    color: #9E9E9E;
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #E65100, #FF6F00);
    color: #FFFFFF;
    border: none;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.3);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(230, 81, 0, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.form-footer {
    margin-top: 24px;
    text-align: center;
}

.privacy-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.privacy-link {
    color: #2E7D32;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #F5F5F5;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4E342E;
}

.badge-icon {
    font-size: 1.1rem;
}

/* Curiosity Section Styles */
.curiosity-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.curiosity-header {
    text-align: center;
    margin-bottom: 60px;
}

.curiosity-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3E2723; /* Dark Charcoal */
    margin-bottom: 16px;
    line-height: 1.2;
}

.curiosity-subtitle {
    font-size: 1.2rem;
    color: #4E342E; /* Rich Brown */
    opacity: 0.8;
}

.curiosity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.problems-left {
    display: flex;
    flex-direction: column;
}

.problem-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.problem-card {
    background: #FAF3E0; /* Soft Cream */
    border-radius: 20px;
    padding: 20px 16px;
    text-align: center;
    border: 2px solid #FFF176; /* Soft Yellow */
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #FFD54F; /* Soft Gold */
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2E7D32; /* Forest Green */
    margin-bottom: 12px;
}

.card-description {
    font-size: 0.95rem;
    color: #4E342E; /* Rich Brown */
    line-height: 1.4;
    margin-bottom: 16px;
}

.problem-indicator {
    background: linear-gradient(135deg, #E65100, #FF6F00); /* Deep Saffron to Bright Orange */
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 16px;
    display: inline-block;
}

.indicator-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.curiosity-cta {
    text-align: center;
    background: #FFF176; /* Soft Yellow */
    padding: 40px;
    border-radius: 24px;
    border: 2px solid #FFD54F; /* Soft Gold */
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3E2723; /* Dark Charcoal */
    margin-bottom: 24px;
}

.curiosity-btn {
    background: linear-gradient(135deg, #E65100, #FF6F00); /* Deep Saffron to Bright Orange */
    color: #FFFFFF;
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.3);
}

.curiosity-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(230, 81, 0, 0.4);
}

/* Benefits Section Styles */
.benefits-section {
    background: #F5F5F5; /* Light Grey */
    padding: 80px 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3E2723; /* Dark Charcoal */
    margin-bottom: 16px;
    line-height: 1.2;
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: #4E342E; /* Rich Brown */
    opacity: 0.8;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}

/* New Benefits Grid Design */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-item {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #E0E0E0;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #2E7D32;
}

.benefit-icon-wrapper {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.benefit-icon {
    font-size: 1.8rem;
    color: #FFFFFF;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-description {
    font-size: 0.95rem;
    color: #4E342E;
    line-height: 1.5;
    margin: 0;
}

/* Sample Reports Section Styles */
.sample-reports-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.reports-header {
    text-align: center;
    margin-bottom: 60px;
}

.reports-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3E2723; /* Dark Charcoal */
    margin-bottom: 16px;
    line-height: 1.2;
}

.reports-subtitle {
    font-size: 1.2rem;
    color: #4E342E; /* Rich Brown */
    opacity: 0.8;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.report-item {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #F5F5F5;
}

.report-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #2E7D32;
}

.report-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.report-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: #FFFFFF;
}

.report-item:hover .report-image {
    transform: scale(1.05);
}

.report-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 125, 50, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.report-item:hover .report-overlay {
    opacity: 1;
}

.view-text {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.report-content {
    padding: 24px;
}

.report-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 12px;
    line-height: 1.3;
}

.report-description {
    font-size: 0.95rem;
    color: #4E342E;
    line-height: 1.5;
    margin-bottom: 20px;
}

.report-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: #FAF3E0; /* Soft Cream */
    color: #2E7D32;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #2E7D32;
}

.reports-cta {
    text-align: center;
    background: #FAF3E0; /* Soft Cream */
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #2E7D32;
}

.reports-btn {
    background: linear-gradient(135deg, #E65100, #FF6F00);
    color: #FFFFFF;
    border: none;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.3);
}

.reports-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(230, 81, 0, 0.4);
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #FFFFFF;
    border-radius: 20px;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 2px solid #F5F5F5;
    background: #FAF3E0;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2E7D32;
    margin: 0;
}

.close-modal {
    font-size: 2rem;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #E65100;
}

.modal-body {
    padding: 24px;
    text-align: center;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.placement-guide {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    border: 2px solid #FFF176; /* Soft Yellow */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.guide-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E7D32; /* Forest Green */
    margin-bottom: 24px;
    text-align: center;
}

.placement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.placement-item {
    background: #FAF3E0; /* Soft Cream */
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    border: 2px solid #FFF176; /* Soft Yellow */
    transition: all 0.3s ease;
}

.placement-item:hover {
    transform: scale(1.05);
    border-color: #FFD54F; /* Soft Gold */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.placement-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2E7D32; /* Forest Green */
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.placement-rooms {
    font-size: 0.8rem;
    color: #4E342E; /* Rich Brown */
    margin-bottom: 6px;
    line-height: 1.3;
}

.placement-feet {
    font-size: 0.75rem;
    font-weight: 600;
    color: #E65100; /* Deep Saffron */
    background: #FFF176; /* Soft Yellow */
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

/* Direction-specific colors for placement items */
.north-east { border-color: #26A69A; }
.north { border-color: #8D6E63; }
.north-west { border-color: #388E3C; }
.west { border-color: #FFB74D; }
.center { border-color: #FFD54F; background: #FFF176; }
.east { border-color: #66BB6A; }
.south-east { border-color: #FF8A65; }
.south { border-color: #FF7043; }
.south-west { border-color: #FF8A65; }

/* VDegree Mobile App Section Styles */
.vdegree-app-section {
    background: #FAF3E0; /* Soft Cream */
    padding: 80px 0;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.app-header {
    text-align: left;
}

.app-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3E2723; /* Dark Charcoal */
    margin-bottom: 16px;
    line-height: 1.2;
}

.app-subtitle {
    font-size: 1.2rem;
    color: #4E342E; /* Rich Brown */
    opacity: 0.8;
    line-height: 1.5;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    font-size: 2rem;
    background: #2E7D32;
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 0.95rem;
    color: #4E342E;
    line-height: 1.5;
}

.app-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.playstore-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.playstore-btn:hover {
    transform: translateY(-3px);
}

.playstore-badge {
    height: 60px;
    width: auto;
}

.app-note {
    font-size: 0.9rem;
    color: #4E342E;
    opacity: 0.8;
    font-weight: 500;
}

/* App Preview Right Side */
.app-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-preview {
    position: relative;
}

.app-screenshots {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.screenshot-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.screenshot-item.main-screenshot {
    transform: scale(1.1);
    z-index: 2;
}

.screenshot-item.main-screenshot:hover {
    transform: scale(1.15) translateY(-10px);
}

.screenshot-image {
    width: 200px;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.7));
    color: #FFFFFF;
    padding: 12px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

    .screenshot-label {
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

/* VDegree Mobile App Features Section Styles */
.vdegree-features-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3E2723; /* Dark Charcoal */
    margin-bottom: 16px;
    line-height: 1.2;
}

.title-accent {
    width: 80px;
    height: 3px;
    background: #2E7D32; /* Forest Green */
    margin: 0 auto 20px;
    border-radius: 2px;
}

.features-subtitle {
    font-size: 1.2rem;
    color: #4E342E; /* Rich Brown */
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #F5F5F5;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #2E7D32;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #2E7D32; /* Forest Green */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: #E65100; /* Deep Saffron */
    transform: scale(1.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #FFFFFF;
}

.feature-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2E7D32; /* Forest Green */
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-accent {
    width: 40px;
    height: 2px;
    background: #2E7D32; /* Forest Green */
    margin: 0 auto 20px;
    border-radius: 1px;
}

    .feature-card-description {
        font-size: 0.95rem;
        color: #4E342E; /* Rich Brown */
        line-height: 1.6;
        margin: 0;
    }

/* How It Works Section Styles */
.how-it-works-section {
    background: #F5F5F5; /* Light Grey */
    padding: 80px 0;
}

.works-header {
    text-align: center;
    margin-bottom: 60px;
}

.works-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3E2723; /* Dark Charcoal */
    margin-bottom: 16px;
    line-height: 1.2;
}

.works-subtitle {
    font-size: 1.2rem;
    color: #4E342E; /* Rich Brown */
    opacity: 0.8;
}

.works-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: nowrap;
}

.step-item {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid #F5F5F5;
    transition: all 0.3s ease;
    max-width: 320px;
    position: relative;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #2E7D32;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E65100, #FF6F00);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(230, 81, 0, 0.3);
}

.step-icon {
    font-size: 3rem;
    margin: 20px 0 16px;
    display: block;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 16px;
    line-height: 1.3;
}

.step-description {
    font-size: 0.95rem;
    color: #4E342E;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.step-feature {
    font-size: 0.85rem;
    color: #4E342E;
    opacity: 0.8;
}

/* Step Connectors */
.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.connector-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 1px;
}

.connector-arrow {
    font-size: 1.5rem;
    color: #2E7D32;
    font-weight: bold;
}

/* Works CTA */
.works-cta {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid #2E7D32;
}

.cta-content {
    margin-bottom: 32px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 12px;
}

.cta-description {
    font-size: 1.1rem;
    color: #4E342E;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.app-btn {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.4);
}

.report-btn {
    background: linear-gradient(135deg, #E65100, #FF6F00);
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.3);
}

.report-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(230, 81, 0, 0.4);
}

    .btn-icon {
        font-size: 1.2rem;
    }

/* Pricing Plans Section Styles */
.pricing-plans-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3E2723; /* Dark Charcoal */
    margin-bottom: 16px;
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #4E342E; /* Rich Brown */
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    align-items: stretch;
}

.plan-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px 24px;
    border: 2px solid #F5F5F5;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.plan-card.popular {
    border-color: #2E7D32;
    transform: scale(1.05);
}

.plan-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #2E7D32;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F5F5F5;
    flex-shrink: 0;
    min-height: 120px;
}

.plan-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price-original {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2E7D32;
}

.price-period {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #E65100;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-features {
    margin-bottom: 32px;
    flex-grow: 1;
    min-height: 300px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-check {
    font-size: 1.2rem;
    font-weight: bold;
    min-width: 20px;
}

.feature-check:contains("✓") {
    color: #2E7D32;
}

.feature-check:contains("✗") {
    color: #E65100;
}

.feature-text {
    font-size: 0.9rem;
    color: #4E342E;
    line-height: 1.4;
}

.feature-text.disabled {
    color: #999;
    text-decoration: line-through;
}

.plan-btn {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    flex-shrink: 0;
}

.free-btn {
    background: #F5F5F5;
    color: #666;
    border: 2px solid #E0E0E0;
}

.free-btn:hover {
    background: #E0E0E0;
    color: #333;
}

.basic-btn {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.basic-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.4);
}

.premium-btn {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.4);
}

.pro-btn {
    background: linear-gradient(135deg, #E65100, #FF6F00);
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.3);
}

.pro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(230, 81, 0, 0.4);
}

.pricing-note {
    text-align: center;
    padding: 24px;
    background: #FAF3E0;
    border-radius: 16px;
    border: 2px solid #2E7D32;
}

.note-text {
    font-size: 1rem;
    color: #4E342E;
    margin: 0;
    font-weight: 500;
}

.benefits-cta {
    text-align: center;
    background: #FFF176; /* Soft Yellow */
    padding: 40px;
    border-radius: 24px;
    border: 2px solid #FFD54F; /* Soft Gold */
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3E2723; /* Dark Charcoal */
    margin-bottom: 24px;
}

.benefits-btn {
    background: linear-gradient(135deg, #E65100, #FF6F00); /* Deep Saffron to Bright Orange */
    color: #FFFFFF;
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.3);
}

.benefits-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(230, 81, 0, 0.4);
}

/* Improved Compass Right Side */
.compass-right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    padding: 20px;
}

.vastu-compass {
    position: relative;
    width: 400px;
    height: 400px;
    animation: compassFloat 8s ease-in-out infinite;
}

.compass-directions {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, #FAF3E0 0%, #FFF176 50%, #FFD54F 100%);
    border: 4px solid #2E7D32;
    box-shadow: 0 0 40px rgba(46, 125, 50, 0.3);
}

.compass-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E65100, #FF6F00);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(230, 81, 0, 0.6);
    z-index: 10;
    border: 3px solid #FFFFFF;
}

/* Direction Styles with proper positioning */
.direction {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 5;
}

.direction-label {
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 1.1rem;
    min-width: 50px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.direction-feet {
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Precise positioning for each direction */
.north {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.northeast {
    top: 25px;
    right: 25px;
}

.east {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
}

.southeast {
    bottom: 25px;
    right: 25px;
}

.south {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.southwest {
    bottom: 25px;
    left: 25px;
}

.west {
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
}

.northwest {
    top: 25px;
    left: 25px;
}

/* Direction-specific colors with better contrast */
.north .direction-label { 
    background: linear-gradient(135deg, #8D6E63, #A1887F); 
    border-color: #5D4037;
}
.northeast .direction-label { 
    background: linear-gradient(135deg, #26A69A, #4DB6AC); 
    border-color: #00695C;
}
.east .direction-label { 
    background: linear-gradient(135deg, #66BB6A, #81C784); 
    border-color: #388E3C;
}
.southeast .direction-label { 
    background: linear-gradient(135deg, #FF8A65, #FFAB91); 
    border-color: #D84315;
}
.south .direction-label { 
    background: linear-gradient(135deg, #FF7043, #FF8A65); 
    border-color: #D84315;
}
.southwest .direction-label { 
    background: linear-gradient(135deg, #FF8A65, #FFAB91); 
    border-color: #D84315;
}
.west .direction-label { 
    background: linear-gradient(135deg, #FFB74D, #FFCC02); 
    border-color: #F57C00;
}
.northwest .direction-label { 
    background: linear-gradient(135deg, #388E3C, #4CAF50); 
    border-color: #1B5E20;
}

/* Compass grid lines */
.compass-directions::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 360px;
    background: linear-gradient(to bottom, transparent, #2E7D32, transparent);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.compass-directions::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 360px;
    background: linear-gradient(to bottom, transparent, #2E7D32, transparent);
    transform: translate(-50%, -50%) rotate(90deg);
    z-index: 1;
}

/* Diagonal lines for better compass appearance */
.compass-directions .diagonal-line-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 360px;
    background: linear-gradient(to bottom, transparent, #4CAF50, transparent);
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 1;
}

.compass-directions .diagonal-line-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 360px;
    background: linear-gradient(to bottom, transparent, #4CAF50, transparent);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

/* Compass rings for better visual appeal */
.compass-ring-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 380px;
    height: 380px;
    border: 2px solid rgba(46, 125, 50, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.compass-ring-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Enhanced animation for compass */
@keyframes compassFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* Responsive adjustments for compass */
@media (max-width: 1024px) {
    .compass-right {
        height: 400px;
    }
    
    .vastu-compass {
        width: 350px;
        height: 350px;
    }
    
    .compass-ring-outer {
        width: 330px;
        height: 330px;
    }
    
    .compass-ring-inner {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .compass-right {
        height: 350px;
    }
    
    .vastu-compass {
        width: 300px;
        height: 300px;
    }
    
    .compass-ring-outer {
        width: 280px;
        height: 280px;
    }
    
    .compass-ring-inner {
        width: 220px;
        height: 220px;
    }
    
    .direction-label {
        font-size: 1rem;
        padding: 6px 10px;
    }
    
    .direction-feet {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .compass-right {
        height: 300px;
    }
    
    .vastu-compass {
        width: 250px;
        height: 250px;
    }
    
    .compass-ring-outer {
        width: 230px;
        height: 230px;
    }
    
    .compass-ring-inner {
        width: 180px;
        height: 180px;
    }
    
    .direction-label {
        font-size: 0.9rem;
        padding: 5px 8px;
        min-width: 40px;
    }
    
    .direction-feet {
        font-size: 0.75rem;
        padding: 3px 6px;
        min-width: 60px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3E2723;
    margin-bottom: 16px;
}

.title-accent {
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 2px;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #4E342E;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px;
    border: 2px solid #F5F5F5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: #2E7D32;
}

.testimonial-quote {
    font-size: 1rem;
    color: #4E342E;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: #2E7D32;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #3E2723;
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

/* FAQ Section */
.faq-section {
    background: #F5F5F5;
    padding: 80px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3E2723;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #4E342E;
    max-width: 600px;
    margin: 0 auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 2px solid #F5F5F5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2E7D32;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    cursor: pointer;
}

.question-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3E2723;
    margin: 0;
}

.faq-answer {
    font-size: 1rem;
    color: #4E342E;
    line-height: 1.6;
    padding-left: 48px;
}

/* Footer Section */
.footer-section {
    background: #2E7D32;
    padding: 60px 0 20px;
    color: #FFFFFF;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-left {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.direction {
    position: absolute;
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
}

.direction:nth-child(1) { top: 4px; left: 50%; transform: translateX(-50%); } /* N */
.direction:nth-child(2) { bottom: 4px; left: 50%; transform: translateY(-50%); } /* S */
.direction:nth-child(3) { right: 4px; top: 50%; transform: translateY(-50%); } /* E */
.direction:nth-child(4) { left: 4px; top: 50%; transform: translateY(-50%); } /* W */

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E7D32;
}

.logo-accent {
    color: #4CAF50;
}

.footer-tagline {
    font-size: 1rem;
    color: #E8F5E8;
    line-height: 1.6;
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-icon {
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links li:hover {
    color: #4CAF50;
}

.link-arrow {
    color: #4CAF50;
    font-weight: 700;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #E8F5E8;
}

.contact-icon {
    color: #4CAF50;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid #4CAF50;
    padding-top: 20px;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: #E8F5E8;
    margin: 0;
}

/* Responsive CSS for All Sections */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-subheading {
        font-size: 1.3rem;
    }
    
    .signup-form-container {
        padding: 32px;
        max-width: 400px;
    }
    
    /* Curiosity Section Tablet */
    .curiosity-content {
        gap: 50px;
    }
    
    .problem-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .curiosity-title {
        font-size: 2.2rem;
    }
    
    /* Benefits Section Tablet */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .placement-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .benefits-title {
        font-size: 2.2rem;
    }
    
    /* Sample Reports Section Tablet */
    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .reports-title {
        font-size: 2.2rem;
    }
    
    /* VDegree App Section Tablet */
    .app-content {
        gap: 50px;
        align-items: center;
    }
    
    .app-left {
        text-align: left;
    }
    
    .app-header {
        text-align: left;
        margin-bottom: 24px;
    }
    
    .app-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .app-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .app-features {
        gap: 24px;
        margin-bottom: 24px;
    }
    
    .app-feature {
        gap: 18px;
        padding: 20px;
        border-radius: 14px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .feature-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .app-cta {
        margin-top: 24px;
        gap: 14px;
        align-items: flex-start;
    }
    
    .playstore-badge {
        height: 55px;
    }
    
    .app-note {
        font-size: 0.85rem;
        margin-top: 10px;
    }
    
    .app-right {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .app-preview {
        max-width: 450px;
    }
    
    .app-screenshots {
        gap: 20px;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .screenshot-item {
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    }
    
    .screenshot-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }
    
    .screenshot-image {
        width: 180px;
        height: 360px;
        border-radius: 18px;
        object-fit: cover;
    }
    
    .screenshot-item.main-screenshot {
        transform: scale(1.08);
        z-index: 2;
    }
    
    .screenshot-item.main-screenshot:hover {
        transform: scale(1.12) translateY(-10px);
    }
    
    .screenshot-overlay {
        padding: 10px;
    }
    
    .screenshot-label {
        font-size: 0.9rem;
        letter-spacing: 0.6px;
    }
    
    /* VDegree Features Section Tablet */
    .vdegree-features-section {
        padding: 70px 0;
    }
    
    .features-header {
        margin-bottom: 50px;
    }
    
    .features-title {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    
    .title-accent {
        width: 70px;
        height: 3px;
        margin: 0 auto 20px;
    }
    
    .features-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .feature-card {
        padding: 28px;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
        border-radius: 18px;
        margin: 0 auto 24px;
    }
    
    .feature-icon {
        font-size: 2.2rem;
    }
    
    .feature-card-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .feature-accent {
        width: 35px;
        height: 2px;
        margin: 0 auto 18px;
    }
    
    .feature-card-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* How It Works Section Tablet */
    .how-it-works-section {
        padding: 70px 0;
    }
    
    .works-header {
        margin-bottom: 50px;
    }
    
    .works-title {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    
    .works-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .works-steps {
        flex-direction: row;
        gap: 40px;
        margin-bottom: 50px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step-item {
        max-width: 320px;
        padding: 28px;
        border-radius: 22px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: -20px;
    }
    
    .step-icon {
        font-size: 3rem;
        margin: 20px 0 16px;
    }
    
    .step-title {
        font-size: 1.4rem;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .step-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .step-features {
        gap: 8px;
    }
    
    .step-feature {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .step-connector {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .connector-line {
        width: 3px;
        height: 80px;
    }
    
    .connector-arrow {
        font-size: 1.8rem;
    }
    
    .works-cta {
        padding: 40px;
        border-radius: 24px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }
    
    .cta-content {
        margin-bottom: 32px;
    }
    
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .cta-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 24px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-btn {
        max-width: 280px;
        padding: 18px 28px;
        font-size: 1.1rem;
        border-radius: 14px;
    }
    
    .btn-icon {
        font-size: 1.2rem;
    }
    
    /* Pricing Plans Section - Better Mobile Design */
    .pricing-plans-section {
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    .pricing-header {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .pricing-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .pricing-grid {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding: 20px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 30px;
    }
    
    .plan-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        padding: 24px;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        background: #FFFFFF;
        border: 2px solid #F5F5F5;
        transition: all 0.3s ease;
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .plan-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
    
    .plan-card.popular {
        transform: scale(1.05);
        border-color: #2E7D32;
        box-shadow: 0 15px 40px rgba(46, 125, 50, 0.2);
        position: relative;
    }
    
    .plan-card.popular::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(135deg, #2E7D32, #4CAF50);
        border-radius: 18px;
        z-index: -1;
    }
    
    .popular-badge {
        top: 12px;
        right: 12px;
        padding: 6px 10px;
        font-size: 0.7rem;
        background: #E65100;
        color: #FFFFFF;
        border-radius: 12px;
        font-weight: 600;
    }
    
    .discount-badge {
        top: 12px;
        left: 12px;
        padding: 6px 10px;
        font-size: 0.7rem;
        background: #E65100;
        color: #FFFFFF;
        border-radius: 12px;
        font-weight: 600;
    }
    
    .plan-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
        min-height: 90px;
        text-align: center;
        border-bottom: 2px solid #F5F5F5;
    }
    
    .plan-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
        color: #2E7D32;
        font-weight: 600;
    }
    
    .price-original {
        font-size: 0.9rem;
        color: #999;
        text-decoration: line-through;
        display: block;
        margin-bottom: 4px;
    }
    
    .price-amount {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2E7D32;
        display: block;
        margin-bottom: 4px;
    }
    
    .price-period {
        font-size: 0.8rem;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .plan-features {
        margin-bottom: 20px;
        min-height: 260px;
        flex-grow: 1;
    }
    
    .feature-item {
        gap: 10px;
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
    }
    
    .feature-check {
        font-size: 1rem;
        min-width: 18px;
        font-weight: bold;
        margin-top: 2px;
    }
    
    .feature-text {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #4E342E;
    }
    
    .feature-text.disabled {
        color: #999;
        text-decoration: line-through;
    }
    
    .plan-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        margin-top: auto;
    }
    
    .pricing-note {
        padding: 20px;
        border-radius: 12px;
        background: #FAF3E0;
        border: 2px solid #2E7D32;
        text-align: center;
        margin-top: 20px;
    }
    
    .note-text {
        font-size: 0.9rem;
        line-height: 1.4;
        color: #4E342E;
        margin: 0;
        font-weight: 500;
    }
    
    /* Hide scrollbar but keep functionality */
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    /* VDegree Features Section Responsive */
    .vdegree-features-section {
        padding: 60px 0;
    }
    
    .features-header {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .features-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .title-accent {
        width: 60px;
        height: 3px;
        margin: 0 auto 16px;
    }
    
    .features-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 24px;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        border-radius: 16px;
        margin: 0 auto 20px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .feature-accent {
        width: 30px;
        height: 2px;
        margin: 0 auto 16px;
    }
    
    .feature-card-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* How It Works Section Responsive */
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .works-header {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .works-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .works-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .works-steps {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .step-item {
        max-width: 100%;
        padding: 24px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        top: -18px;
    }
    
    .step-icon {
        font-size: 2.5rem;
        margin: 16px 0 12px;
    }
    
    .step-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .step-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .step-features {
        gap: 6px;
    }
    
    .step-feature {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .step-connector {
        display: none;
    }
    
    .works-cta {
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .cta-content {
        margin-bottom: 24px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .cta-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 12px;
        justify-content: center;
    }
    
    .btn-icon {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    /* Header Responsive - More Compact */
    .header-section {
        padding: 4px 0;
    }
    
    .header-content {
        flex-direction: row;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    
    .logo-section {
        margin-right: 0;
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
        display: none; /* Hide tagline on mobile to save space */
    }
    
    .offer-badge {
        padding: 4px 8px;
        gap: 4px;
        flex-shrink: 0;
    }
    
    .offer-text {
        font-size: 0.5rem;
        display: none; /* Hide "Limited Time Offer" text on mobile */
    }
    
    .offer-price {
        font-size: 0.9rem;
    }
    
    .offer-original {
        font-size: 0.6rem;
    }
    
    /* Hero Section Responsive */
    .hero-section {
        padding: 80px 0 40px 0; /* Reduced from 120px to 80px */
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        order: 2;
    }
    
    .hero-headline {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero-subheading {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-cta-btn {
        padding: 16px 28px;
        font-size: 1.1rem;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .signup-form-container {
        padding: 24px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }
    
    .form-group input {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .form-submit-btn {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Curiosity Section Responsive */
    .curiosity-section {
        padding: 60px 0;
    }
    
    .curiosity-header {
        margin-bottom: 40px;
    }
    
    .curiosity-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .curiosity-subtitle {
        font-size: 1rem;
    }
    
    .curiosity-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .problem-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-card {
        padding: 16px 12px;
    }
    
    .card-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .card-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .indicator-text {
        font-size: 0.75rem;
    }
    
    .curiosity-cta {
        padding: 30px;
    }
    
    .cta-text {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .curiosity-btn {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    /* Benefits Section Responsive */
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-header {
        margin-bottom: 40px;
    }
    
    .benefits-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .benefits-subtitle {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .benefit-item {
        padding: 20px;
        gap: 16px;
    }
    
    .benefit-icon-wrapper {
        min-width: 50px;
        height: 50px;
        padding: 12px;
    }
    
    .benefit-icon {
        font-size: 1.5rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .benefit-description {
        font-size: 0.85rem;
    }
    
    .placement-guide {
        padding: 24px;
        margin-bottom: 40px;
    }
    
    .guide-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .placement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .placement-item {
        padding: 12px 8px;
    }
    
    .placement-label {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .placement-rooms {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }
    
    .placement-feet {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    .benefits-cta {
        padding: 30px;
    }
    
    .benefits-btn {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    /* Sample Reports Section Responsive */
    .sample-reports-section {
        padding: 60px 0;
    }
    
    .reports-header {
        margin-bottom: 40px;
    }
    
    .reports-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .reports-subtitle {
        font-size: 1rem;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .report-item {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .report-image-container {
        height: 200px;
    }
    
    .report-content {
        padding: 20px;
    }
    
    .report-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .report-description {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    
    .report-features {
        gap: 6px;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .reports-cta {
        padding: 30px;
    }
    
    .reports-btn {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    /* VDegree App Section Responsive */
    .vdegree-app-section {
        padding: 60px 0;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .app-left {
        order: 1;
        gap: 30px;
        text-align: center;
    }
    
    .app-header {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .app-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .app-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .app-features {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .app-feature {
        gap: 16px;
        align-items: center;
        text-align: left;
        background: #FFFFFF;
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
        color: #2E7D32;
    }
    
    .feature-description {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #4E342E;
    }
    
    .app-cta {
        align-items: center;
        gap: 12px;
        margin-top: 20px;
    }
    
    .playstore-btn {
        display: inline-block;
        transition: transform 0.3s ease;
    }
    
    .playstore-btn:hover {
        transform: translateY(-2px);
    }
    
    .playstore-badge {
        height: 50px;
        width: auto;
    }
    
    .app-note {
        font-size: 0.8rem;
        color: #666;
        margin-top: 8px;
    }
    
    .app-right {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .app-preview {
        width: 100%;
        max-width: 400px;
    }
    
    .app-screenshots {
        gap: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .screenshot-item {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }
    
    .screenshot-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }
    
    .screenshot-image {
        width: 150px;
        height: 300px;
        border-radius: 16px;
        object-fit: cover;
        display: block;
    }
    
    .screenshot-item.main-screenshot {
        transform: scale(1.05);
        z-index: 2;
    }
    
    .screenshot-item.main-screenshot:hover {
        transform: scale(1.08) translateY(-8px);
    }
    
    .screenshot-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.7));
        color: #FFFFFF;
        padding: 8px;
        text-align: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .screenshot-item:hover .screenshot-overlay {
        opacity: 1;
    }
    
    .screenshot-label {
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Testimonials Responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-left {
        max-width: 100%;
    }
    
    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Header Mobile - Ultra Compact */
    .header-section {
        padding: 2px 0;
    }
    
    .header-content {
        gap: 8px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
        display: none;
    }
    
    .offer-badge {
        padding: 3px 6px;
        gap: 3px;
    }
    
    .offer-text {
        font-size: 0.4rem;
        display: none;
    }
    
    .offer-price {
        font-size: 0.8rem;
    }
    
    .offer-original {
        font-size: 0.5rem;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 60px 0 30px 0; /* Reduced from 100px to 60px */
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-headline {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 16px;
    }
    
    .hero-subheading {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-cta-btn {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .signup-form-container {
        padding: 20px;
        border-radius: 16px;
    }
    
    .form-header {
        margin-bottom: 24px;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-subtitle {
        font-size: 0.85rem;
    }
    
    .signup-form {
        gap: 16px;
    }
    
    .form-group input {
        padding: 12px 14px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .form-submit-btn {
        padding: 14px 16px;
        font-size: 0.95rem;
        border-radius: 8px;
    }
    
    .form-footer {
        margin-top: 20px;
    }
    
    .privacy-text {
        font-size: 0.75rem;
    }
    
    .trust-badges {
        margin-top: 20px;
    }
    
    .badge {
        padding: 4px 8px;
        font-size: 0.7rem;
        gap: 4px;
    }
    
    .badge-icon {
        font-size: 0.9rem;
    }
    
    /* Curiosity Section Mobile */
    .curiosity-section {
        padding: 50px 0;
    }
    
    .curiosity-title {
        font-size: 1.8rem;
    }
    
    .curiosity-subtitle {
        font-size: 0.9rem;
    }
    
    .curiosity-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .problem-cards {
        gap: 16px;
    }
    
    .problem-card {
        padding: 14px 10px;
    }
    
    .card-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .card-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .card-description {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .curiosity-cta {
        padding: 24px;
    }
    
    .cta-text {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .curiosity-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Benefits Section Mobile */
    .benefits-section {
        padding: 50px 0;
    }
    
    .benefits-title {
        font-size: 1.8rem;
    }
    
    .benefits-subtitle {
        font-size: 0.9rem;
    }
    
    .benefits-grid {
        gap: 16px;
        margin-bottom: 30px;
    }
    
    .benefit-item {
        padding: 16px;
        gap: 12px;
    }
    
    .benefit-icon-wrapper {
        min-width: 45px;
        height: 45px;
        padding: 10px;
    }
    
    .benefit-icon {
        font-size: 1.3rem;
    }
    
    .benefit-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .benefit-description {
        font-size: 0.8rem;
    }
    
    .placement-guide {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .guide-title {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }
    
    .placement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .placement-item {
        padding: 10px 6px;
    }
    
    .placement-label {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }
    
    .placement-rooms {
        font-size: 0.65rem;
        margin-bottom: 3px;
    }
    
    .placement-feet {
        font-size: 0.6rem;
        padding: 2px 4px;
    }
    
    .benefits-cta {
        padding: 24px;
    }
    
    .benefits-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Sample Reports Section Mobile */
    .sample-reports-section {
        padding: 50px 0;
    }
    
    .reports-title {
        font-size: 1.8rem;
    }
    
    .reports-subtitle {
        font-size: 0.9rem;
    }
    
    .reports-grid {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .report-item {
        max-width: 350px;
    }
    
    .report-image-container {
        height: 180px;
    }
    
    .report-content {
        padding: 16px;
    }
    
    .report-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .report-description {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .feature-tag {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    .reports-cta {
        padding: 24px;
    }
    
    .reports-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* VDegree App Section Mobile */
    .vdegree-app-section {
        padding: 50px 0;
    }
    
    .app-content {
        gap: 30px;
    }
    
    .app-left {
        order: 1;
        gap: 24px;
        text-align: center;
    }
    
    .app-header {
        margin-bottom: 16px;
    }
    
    .app-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .app-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .app-features {
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .app-feature {
        gap: 12px;
        padding: 14px;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    .feature-title {
        font-size: 1rem;
        margin-bottom: 4px;
        color: #2E7D32;
        text-align: left;
    }
    
    .feature-description {
        font-size: 0.8rem;
        line-height: 1.3;
        color: #4E342E;
        text-align: left;
    }
    
    .app-cta {
        margin-top: 16px;
        gap: 10px;
    }
    
    .playstore-badge {
        height: 45px;
        width: auto;
    }
    
    .app-note {
        font-size: 0.75rem;
        color: #666;
        margin-top: 6px;
    }
    
    .app-right {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .app-preview {
        max-width: 350px;
    }
    
    .app-screenshots {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .screenshot-item {
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }
    
    .screenshot-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    }
    
    .screenshot-image {
        width: 120px;
        height: 240px;
        border-radius: 12px;
        object-fit: cover;
    }
    
    .screenshot-item.main-screenshot {
        transform: scale(1.03);
        z-index: 2;
    }
    
    .screenshot-item.main-screenshot:hover {
        transform: scale(1.05) translateY(-6px);
    }
    
    .screenshot-overlay {
        padding: 6px;
    }
    
    .screenshot-label {
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }
    
    /* Other sections mobile */
    .testimonials-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-answer {
        padding-left: 32px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    /* Ultra compact header for very small screens */
    .header-section {
        padding: 1px 0;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .offer-badge {
        padding: 2px 4px;
        gap: 2px;
    }
    
    .offer-price {
        font-size: 0.7rem;
    }
    
    .offer-original {
        font-size: 0.4rem;
    }
    
    /* Reduced hero padding */
    .hero-section {
        padding: 50px 0 20px 0;
    }
    
    .hero-headline {
        font-size: 1.6rem;
    }
    
    .hero-subheading {
        font-size: 0.9rem;
    }
    
    .signup-form-container {
        padding: 16px;
    }
    
    .form-title {
        font-size: 1.2rem;
    }
    
    .form-group input {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .form-submit-btn {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    /* Curiosity Section Ultra Mobile */
    .curiosity-section {
        padding: 40px 0;
    }
    
    .curiosity-title {
        font-size: 1.6rem;
    }
    
    .curiosity-subtitle {
        font-size: 0.85rem;
    }
    
    .problem-card {
        padding: 12px 8px;
    }
    
    .card-icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .card-title {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .card-description {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .curiosity-cta {
        padding: 20px;
    }
    
    .cta-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .curiosity-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Benefits Section Ultra Mobile */
    .benefits-section {
        padding: 40px 0;
    }
    
    .benefits-title {
        font-size: 1.6rem;
    }
    
    .benefits-subtitle {
        font-size: 0.85rem;
    }
    
    .benefit-item {
        padding: 12px;
        gap: 10px;
    }
    
    .benefit-icon-wrapper {
        min-width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .benefit-icon {
        font-size: 1.2rem;
    }
    
    .benefit-title {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .benefit-description {
        font-size: 0.75rem;
    }
    
    .placement-guide {
        padding: 16px;
        margin-bottom: 20px;
    }
    
    .guide-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .placement-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .placement-item {
        padding: 8px 6px;
    }
    
    .placement-label {
        font-size: 0.7rem;
        margin-bottom: 3px;
    }
    
    .placement-rooms {
        font-size: 0.6rem;
        margin-bottom: 2px;
    }
    
    .placement-feet {
        font-size: 0.55rem;
        padding: 2px 4px;
    }
    
    .benefits-cta {
        padding: 20px;
    }
    
    .benefits-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Sample Reports Section Ultra Mobile */
    .sample-reports-section {
        padding: 40px 0;
    }
    
    .reports-title {
        font-size: 1.6rem;
    }
    
    .reports-subtitle {
        font-size: 0.85rem;
    }
    
    .reports-grid {
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .report-item {
        max-width: 300px;
    }
    
    .report-image-container {
        height: 160px;
    }
    
    .report-content {
        padding: 12px;
    }
    
    .report-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .report-description {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .feature-tag {
        font-size: 0.6rem;
        padding: 2px 4px;
    }
    
    .reports-cta {
        padding: 20px;
    }
    
    .reports-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* VDegree App Section Ultra Mobile */
    .vdegree-app-section {
        padding: 40px 0;
    }
    
    .app-content {
        gap: 24px;
    }
    
    .app-left {
        order: 1;
        gap: 20px;
        text-align: center;
    }
    
    .app-header {
        margin-bottom: 12px;
    }
    
    .app-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .app-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .app-features {
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .app-feature {
        gap: 10px;
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .feature-title {
        font-size: 0.9rem;
        margin-bottom: 3px;
        color: #2E7D32;
        text-align: left;
    }
    
    .feature-description {
        font-size: 0.75rem;
        line-height: 1.3;
        color: #4E342E;
        text-align: left;
    }
    
    .app-cta {
        margin-top: 12px;
        gap: 8px;
    }
    
    .playstore-badge {
        height: 40px;
        width: auto;
    }
    
    .app-note {
        font-size: 0.7rem;
        color: #666;
        margin-top: 4px;
    }
    
    .app-right {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .app-preview {
        max-width: 300px;
    }
    
    .app-screenshots {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .screenshot-item {
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .screenshot-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .screenshot-image {
        width: 100px;
        height: 200px;
        border-radius: 10px;
        object-fit: cover;
    }
    
    .screenshot-item.main-screenshot {
        transform: scale(1.02);
        z-index: 2;
    }
    
    .screenshot-item.main-screenshot:hover {
        transform: scale(1.03) translateY(-4px);
    }
    
    .screenshot-overlay {
        padding: 4px;
    }
    
    .screenshot-label {
        font-size: 0.6rem;
        letter-spacing: 0.2px;
    }
    
    /* VDegree Features Section Mobile */
    .vdegree-features-section {
        padding: 50px 0;
    }
    
    .features-header {
        margin-bottom: 30px;
    }
    
    .features-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .title-accent {
        width: 50px;
        height: 2px;
        margin: 0 auto 12px;
    }
    
    .features-subtitle {
        font-size: 0.9rem;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
        border-radius: 14px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 14px;
        margin: 0 auto 16px;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-card-title {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .feature-accent {
        width: 25px;
        height: 2px;
        margin: 0 auto 12px;
    }
    
    .feature-card-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* How It Works Section Mobile */
    .how-it-works-section {
        padding: 50px 0;
    }
    
    .works-header {
        margin-bottom: 30px;
    }
    
    .works-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .works-subtitle {
        font-size: 0.9rem;
    }
    
    .works-steps {
        gap: 24px;
        margin-bottom: 30px;
    }
    
    .step-item {
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        top: -16px;
    }
    
    .step-icon {
        font-size: 2.2rem;
        margin: 14px 0 10px;
    }
    
    .step-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .step-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .step-features {
        gap: 4px;
    }
    
    .step-feature {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .works-cta {
        padding: 24px;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
    
    .cta-content {
        margin-bottom: 20px;
    }
    
    .cta-title {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }
    
    .cta-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .cta-buttons {
        gap: 12px;
    }
    
    .cta-btn {
        max-width: 280px;
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .btn-icon {
        font-size: 1rem;
    }
    
    /* Pricing Plans Section Mobile - Horizontal Scroll */
    .pricing-plans-section {
        padding: 50px 0;
        overflow-x: hidden;
    }
    
    .pricing-header {
        margin-bottom: 30px;
    }
    
    .pricing-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .pricing-subtitle {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .pricing-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding: 16px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 24px;
    }
    
    .plan-card {
        flex: 0 0 260px;
        scroll-snap-align: start;
        padding: 20px;
        border-radius: 14px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    }
    
    .plan-card.popular {
        transform: scale(1.03);
        box-shadow: 0 10px 30px rgba(46, 125, 50, 0.12);
    }
    
    .popular-badge {
        top: 10px;
        right: 10px;
        padding: 4px 8px;
        font-size: 0.6rem;
    }
    
    .discount-badge {
        top: 10px;
        left: 10px;
        padding: 4px 8px;
        font-size: 0.6rem;
    }
    
    .plan-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
        min-height: 80px;
    }
    
    .plan-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .price-original {
        font-size: 0.8rem;
    }
    
    .price-amount {
        font-size: 1.6rem;
    }
    
    .price-period {
        font-size: 0.7rem;
    }
    
    .plan-features {
        margin-bottom: 16px;
        min-height: 240px;
    }
    
    .feature-item {
        gap: 6px;
        margin-bottom: 8px;
    }
    
    .feature-check {
        font-size: 0.9rem;
        min-width: 14px;
    }
    
    .feature-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .plan-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .pricing-note {
        padding: 16px;
        border-radius: 10px;
    }
    
    .note-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    /* Hide scrollbar */
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    /* VDegree Features Section Ultra Mobile */
    .vdegree-features-section {
        padding: 40px 0;
    }
    
    .features-header {
        margin-bottom: 24px;
    }
    
    .features-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .title-accent {
        width: 40px;
        height: 2px;
        margin: 0 auto 10px;
    }
    
    .features-subtitle {
        font-size: 0.85rem;
    }
    
    .features-grid {
        gap: 16px;
    }
    
    .feature-card {
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        margin: 0 auto 12px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-card-title {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    
    .feature-accent {
        width: 20px;
        height: 2px;
        margin: 0 auto 10px;
    }
    
    .feature-card-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* How It Works Section Ultra Mobile */
    .how-it-works-section {
        padding: 40px 0;
    }
    
    .works-header {
        margin-bottom: 24px;
    }
    
    .works-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .works-subtitle {
        font-size: 0.85rem;
    }
    
    .works-steps {
        gap: 20px;
        margin-bottom: 24px;
    }
    
    .step-item {
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        top: -14px;
    }
    
    .step-icon {
        font-size: 2rem;
        margin: 12px 0 8px;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .step-description {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .step-features {
        gap: 3px;
    }
    
    .step-feature {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .works-cta {
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    }
    
    .cta-content {
        margin-bottom: 16px;
    }
    
    .cta-title {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }
    
    .cta-description {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .cta-buttons {
        gap: 10px;
    }
    
    .cta-btn {
        max-width: 260px;
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .btn-icon {
        font-size: 0.9rem;
    }
    
    /* Pricing Plans Section Ultra Mobile - Horizontal Scroll */
    .pricing-plans-section {
        padding: 40px 0;
        overflow-x: hidden;
    }
    
    .pricing-header {
        margin-bottom: 24px;
    }
    
    .pricing-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .pricing-subtitle {
        font-size: 0.85rem;
    }
    
    .pricing-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 12px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
    }
    
    .plan-card {
        flex: 0 0 240px;
        scroll-snap-align: start;
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    
    .plan-card.popular {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(46, 125, 50, 0.1);
    }
    
    .popular-badge {
        top: 8px;
        right: 8px;
        padding: 3px 6px;
        font-size: 0.5rem;
    }
    
    .discount-badge {
        top: 8px;
        left: 8px;
        padding: 3px 6px;
        font-size: 0.5rem;
    }
    
    .plan-header {
        margin-bottom: 12px;
        padding-bottom: 8px;
        min-height: 70px;
    }
    
    .plan-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .price-original {
        font-size: 0.7rem;
    }
    
    .price-amount {
        font-size: 1.4rem;
    }
    
    .price-period {
        font-size: 0.6rem;
    }
    
    .plan-features {
        margin-bottom: 12px;
        min-height: 220px;
    }
    
    .feature-item {
        gap: 4px;
        margin-bottom: 6px;
    }
    
    .feature-check {
        font-size: 0.8rem;
        min-width: 12px;
    }
    
    .feature-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .plan-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .pricing-note {
        padding: 12px;
        border-radius: 8px;
    }
    
    .note-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    /* Hide scrollbar */
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 80px 0 30px 0;
        min-height: auto;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .signup-form-container {
        padding: 20px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-headline {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .hero-cta-btn:hover,
    .form-submit-btn:hover,
    .curiosity-btn:hover,
    .reports-btn:hover,
    .benefits-btn:hover {
        transform: none;
    }
    
    .hero-cta-btn:active,
    .form-submit-btn:active,
    .curiosity-btn:active,
    .reports-btn:active,
    .benefits-btn:active {
        transform: scale(0.98);
    }
    
    .form-group input:focus {
        box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
    }
    
    /* Better touch targets */
    .hero-cta-btn,
    .form-submit-btn,
    .curiosity-btn,
    .reports-btn,
    .benefits-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .form-group input {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Improved touch feedback */
    .signup-form-container {
        -webkit-tap-highlight-color: transparent;
    }
    
    .form-group input:focus {
        -webkit-tap-highlight-color: transparent;
    }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Better form spacing on mobile */
    .signup-form {
        gap: 16px;
    }
    
    /* Improved button states */
    .form-submit-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }
    
    /* Better text readability */
    .hero-headline,
    .hero-subheading,
    .form-title,
    .form-subtitle {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Smooth transitions for better performance */
    .hero-section,
    .header-section,
    .signup-form-container {
        will-change: transform;
    }
}
