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

:root {
    --primary-green: #2d8659;
    --dark-gray: #2c3e50;
    --text-gray: #333333;
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-gray);
    line-height: 1.6;
    background-color: var(--white);
}

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

/* Header */
.header {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gray);
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-gray);
    z-index: 1001;
    text-decoration: none;
}

.logo:hover {
    color: var(--primary-green);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    position: relative;
    width: 24px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--dark-gray);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    position: absolute;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
    bottom: 0;
}

.hamburger.active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-green);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-link-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-arrow {
    display: block;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 4px;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: var(--primary-green);
}

.sign-in {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.sign-in:hover {
    color: var(--primary-green);
}

.sign-in-mobile {
    display: none;
}

/* Hero Section */
.hero {
    padding: 162px 0 92px 0px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-video {
    width: 100%;
}

.hero-decorative-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: auto;
    max-width: 50%;
    max-height: 90%;
    z-index: 1;
    pointer-events: none;
    object-fit: contain;
}

.product-screenshot {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 9px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #1a5c3e 0%, #2d8659 35%, #3cb371 70%, #2d8659 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 7px;
}
.hero-subtitle-2 {
    font-size: 20px;
    color: #737373;
    margin-bottom: 16px;
    font-weight: 400;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.trust-badges-section {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 28px 0 20px 0;
}

.trust-badges-section .trust-badges {
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
}

.windows-badge {
    display: block;
    max-width: 122px;
    height: auto;
}

.saashub-badge {
    display: block;
    max-width: 122px;
    height: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background-color: #256d4a;
    border-color: #256d4a;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Product Demo Section */

.product-screenshot {
    max-width: 100%;
    margin: 0 auto;
}

.computer-frame {
    background-color: #1a1a1a;
    border: 3px solid #0a0a0a;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    max-width: 100%;
    margin: 0 auto;
}

.frame-title-bar {
    background-color: #2d2d2d;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-bottom: 1px solid #0a0a0a;
    user-select: none;
}

.window-controls {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-right: 12px;
}

.window-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    position: relative;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.window-control:hover {
    opacity: 0.8;
}

.window-control-minimize {
    background-color: #ffbd2e;
}

.window-control-minimize::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 1.5px;
    background-color: #000;
}

.window-control-maximize {
    background-color: #28ca42;
}

.window-control-maximize::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border: 1px solid #000;
    background-color: transparent;
}

.window-control-close {
    background-color: #ff5f57;
}

.window-control-close::before,
.window-control-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 1.5px;
    background-color: #000;
}

.window-control-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.window-control-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.frame-title {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    background: linear-gradient(180deg, #e8e8e8 0%, #c0c0c0 50%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3),
                 0 0 1px rgba(255, 255, 255, 0.5),
                 0 2px 4px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5));
    text-transform: uppercase;
}

.frame-content {
    padding: 0;
    background-color: #1a1a1a;
    overflow: hidden;
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

/* Secondary Hero */
.secondary-hero {
    padding: 80px 0 10px 0;
    text-align: center;
}

.secondary-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 17px;
    line-height: 1.2;
}

.feature-tags {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    font-size: 18px;
    color: var(--text-gray);
    padding: 8px 16px;
    background-color: #fafafa;
    border-radius: 25px;
    border: 1px solid #e3e3e3;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-tag:hover {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(45, 134, 89, 0.2);
}

/* Feature Sections */
.feature-section {
    padding: 93px 0;
    scroll-margin-top: 80px;
}

.feature-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 25px;
    padding-inline-start: 50px;
    border-radius: 18px;
    box-shadow: 0px 6px 14px #0000000f;
    border: 1px solid #f2f2f2;
}

.feature-section-reverse .feature-content {
    direction: rtl;
}

.feature-section-reverse .feature-text,
.feature-section-reverse .feature-image {
    direction: ltr;
}

.feature-label {
    font-size: 18px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.feature-description {
    font-size: 21px;
    color: #4b5563;
    line-height: 1.4;
}

.feature-stat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 27px;
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    letter-spacing: -2px;
}

.stat-text {
    font-size: 21px;
    color: #4b5563;
    line-height: 1.4;
    padding-top: 8px;
    max-width: 400px;
}

.feature-image {
    width: 100%;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(0deg, rgb(234 234 234) 0%, rgb(249 249 249) 6%, rgba(45, 134, 89, 1) 100%);
}

.testimonials-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-headline {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 16px;
    line-height: 1.3;
}

.testimonial-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star-icon {
    width: 20px;
    height: 20px;
    fill: #fbbf24;
}

.testimonial-author {
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 600;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    border-bottom: none;
}

.pricing-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 36px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:first-child {
    border: 3px solid #2D8659;
}

.popular-badge {
    position: absolute;
    top: -17px;
    left: 50%;
    border: 1px solid #2D8659;
    transform: translateX(-50%);
    background-color: #2D8659;
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 10;
}

.pricing-card-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.pricing-card-tagline {
    color: var(--primary-green);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-card-subtitle {
    font-size: 16px;
    color: #5f5f5f;
    margin-bottom: 24px;
    line-height: 1.4;
}

.pricing-card-intro {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 16px;
    font-weight: 500;
}

.pricing-price {
    margin: 17px 0 0 0;
    padding: 0;
    flex-shrink: 0;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1;
}

.price-period {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 400;
    margin-left: 8px;
}

.pricing-card-btn {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    flex-shrink: 0;
}

.enterprise-price {
    border: none;
    padding: 20px 0 0px 0px;
    margin-top: 30px;
}

.price-contact {
    font-size: 16px;
    font-weight: 500;
    color: #8a8a8a;
}

.pricing-features {
    list-style: none;
    flex-grow: 1;
}

.pricing-feature {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.pricing-feature--limited {
    color: #dc2626;
    font-weight: 600;
}

.checkmark {
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.pricing-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.trial-text {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
}

.trial-link {
    color: var(--primary-green);
    text-decoration: underline;
}

.trial-link:hover {
    color: #256d4a;
}

/* Pricing Badges */
.pricing-badges {
    text-align: center;
    margin: 46px 0 12px 0;
}

.pricing-badges-title {
    font-size: 16px;
    font-weight: 500;
    color: #8a8a8a;
    margin-bottom: 12px;
}

.pricing-badges-pill {
    display: inline-block;
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 50px;
    padding: 16px 32px;
    margin: 0 auto;
}

.pricing-badges-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.pricing-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-badge-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-badge-icon svg {
    width: 100%;
    height: 100%;
}

.pricing-badge-text {
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0 100px 0;
    background-color: var(--white);
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 16px;
    color: #8a8a8a;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
}

.faq-subtitle a {
    color: #8a8a8a;
    text-decoration: none;
    transition: color 0.3s;
}

.faq-subtitle a:hover {
    color: var(--primary-green);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
}

.faq-item.active {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 16px;
}

.faq-arrow {
    display: block;
    color: #8a8a8a;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}
.contact-email {
    font-size: 24px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.contact-section {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}
.request-ergogecko-at-work-container{
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


/* Footer */
.footer {
    background-color: #2b2b2b;
    padding: 30px 0;
}

.footer-text {
    color: var(--white);
    text-align: left;
    font-size: 14px;
    margin-top: 12px;
}

/* Footer Newsletter */
.footer-newsletter {
    margin: 8px 0 0px 0;
    max-width: 450px;
}

.footer-newsletter-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.footer-newsletter-text {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-newsletter-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #3a3a3a;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 12px;
    box-sizing: border-box;
}

.footer-newsletter-input::placeholder {
    color: #999;
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.footer-newsletter-button {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
}

.footer-newsletter-button:hover {
    background-color: #256d4a;
}

/* Footer Newsletter Feedback Text - Make all white */
.footer-newsletter .ml-form-successContent h4,
.footer-newsletter .ml-form-successContent p,
.footer-newsletter .ml-form-successBody,
.footer-newsletter .ml-form-successBody *,
.footer-newsletter .ml-form-errorMessage,
.footer-newsletter .ml-form-errorMessage *,
.footer-newsletter .ml-message,
.footer-newsletter .ml-message *,
.footer-newsletter .ml-form-fieldRow .ml-error,
.footer-newsletter .ml-form-fieldRow .ml-error * {
    color: var(--white) !important;
}

/* Footer Social */
.footer-social {
    margin-top: 24px;
}

.footer-social-link {
    display: inline-block;
    transition: transform 0.3s, opacity 0.3s;
    margin-right: 10px;
}

.footer-social-link:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: block;
}

/* YouTube icon - maintain aspect ratio but match TikTok height */
.footer-social-link[href*="youtube"] .footer-social-icon {
    height: 40px;
    width: auto;
}

/* Mobile Responsive */
@media (max-width: 1100px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 968px) {
    .hero {
        padding-top: 100px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    .hero-subtitle-2 {
        font-size: 16px;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-decorative-graphic {
        display: none;
    }

    .contact-email{
        font-size: 20px;
        padding: 20px 20px;
    }
    
    .secondary-hero-title {
        font-size: 36px;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .feature-section-reverse .feature-content {
        direction: ltr;
    }
    
    .feature-title {
        font-size: 36px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-title {
        font-size: 36px;
    }
    
    .testimonials-title {
        font-size: 36px;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .price-amount {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .feature-label {
        font-size: 16px;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 0;
        z-index: 1000;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-gray);
        font-size: 18px;
    }
    
    .nav-link:last-of-type {
        border-bottom: none;
    }
    
    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-link-dropdown {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-gray) !important;
        font-size: 18px;
    }
    
    .dropdown-arrow {
        display: block;
        transition: transform 0.3s ease;
        flex-shrink: 0;
        margin-left: auto;
        margin-right: 0;
    }
    
    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
        margin: 0;
        margin-left: 20px;
        margin-top: 0;
        margin-bottom: 0;
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-item {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-gray);
        font-size: 16px;
    }
    
    .dropdown-item:last-child {
        border-bottom: 1px solid var(--border-gray);
    }
    
    .sign-in {
        display: none;
    }
    
    .sign-in-mobile {
        display: block;
        color: var(--dark-gray);
        text-decoration: none;
        font-size: 18px;
        padding: 16px 0;
        width: 100%;
    }
    
    .sign-in-mobile:hover {
        color: var(--primary-green);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .hero {
        padding: 40px 0 40px 0px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    .hero-subtitle-2 {
        font-size: 16px;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .contact-email{
        font-size: 20px;
        padding: 20px 10px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .secondary-hero {
        padding: 95px 0 11px 0;
    }
    
    .secondary-hero-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .feature-tags {
        display: none;
    }
    
    .feature-tag {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .feature-section {
        padding: 54px 0;
    }
    
    .feature-title {
        font-size: 32px;
        letter-spacing: -0.3px;
    }
    
    .feature-description {
        font-size: 19px;
        margin-bottom: 32px;
        line-height: 1.4;
    }
    
    .stat-number {
        font-size: 56px;
        letter-spacing: -1.5px;
    }
    
    .stat-text {
        font-size: 19px;
        padding-top: 4px;
    }
    
    .feature-stat {
        align-items: center;
        margin-top: 28px;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 28px;
    }
    
    .testimonial-headline {
        font-size: 18px;
    }
    
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-title {
        font-size: 28px;
    }
    
    .pricing-card {
        padding: 30px;
    }
    
    .pricing-card-title {
        font-size: 28px;
    }
    
    .pricing-cta {
        flex-direction: column;
    }
    
    .pricing-badges {
        margin: 40px 0 30px 0;
    }
    
    .pricing-badges-title {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .pricing-badges-pill {
        padding: 12px 20px;
        border-radius: 40px;
    }
    
    .pricing-badges-list {
        flex-direction: column;
        gap: 7px;
    }
    
    .pricing-badge-item {
        justify-content: center;
    }
    
    .feature-tags {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    .faq-subtitle {
        margin-bottom: 38px;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .price-period {
        font-size: 16px;
    }
    
    .frame-title-bar {
        height: 36px;
        padding: 0 10px;
    }
    
    .frame-title {
        font-size: 14px;
    }
    
    .computer-frame {
        border-width: 2px;
    }
    .popular-badge {
        font-size: 11px;
        padding: 5px 16px;
        top: -10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 28px;
        letter-spacing: -0.2px;
    }
    
    .feature-description {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .stat-number {
        font-size: 48px;
        letter-spacing: -1px;
    }
    
    .stat-text {
        font-size: 18px;
    }
    
    .pricing-card-title {
        font-size: 24px;
    }
    
    .faq-question {
        padding: 18px 16px;
    }
    
    .faq-answer {
        padding: 0 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 18px 16px;
    }
    
    .contact-section {
        padding: 40px 4px;
    }
    
    /* Footer Mobile Styles */
    .footer-newsletter {
        max-width: 100%;
        margin: 20px 0;
    }
    
    .footer-newsletter-title {
        font-size: 16px;
    }
    
    .footer-newsletter-text {
        font-size: 13px;
    }
    
    .footer-social {
        margin-top: 20px;
    }
}

