/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 20px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: opacity 0.2s;
}

.logo-img:hover {
    opacity: 0.8;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #6366f1;
}

.cta-button {
    background: #6366f1;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #5856eb;
}

/* Hero Section */
.hero {
    padding: 12rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.launch-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    margin-top: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #6366f1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.email-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.email-form .form-row {
    display: flex;
    gap: 0.5rem;
}

.email-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.email-form input:focus {
    outline: none;
    border-color: #6366f1;
}

.email-form button {
    background: #6366f1;
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.email-form button:hover {
    background: #5856eb;
}

.email-form.large {
    max-width: 500px;
    margin: 0 auto 1rem;
}

.email-form.large input {
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
}

.email-form.large button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.form-note {
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
}

.discount-note {
    color: #059669;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
}

/* Checkbox Container */
.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.75rem 0;
    padding: 0;
    background: none;
    text-align: center;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #6366f1;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 3px;
}

.checkbox-container label {
    font-size: 0.875rem;
    color: #6b7280;
    cursor: pointer;
    line-height: 1.3;
    user-select: none;
    white-space: nowrap;
}

/* Checkbox styling for different form contexts */
.hero-cta .checkbox-container {
    justify-content: center;
    text-align: center;
}

.hero-cta .checkbox-container label {
    color: #6b7280;
}

.solution-cta .checkbox-container {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.solution-cta .checkbox-container label {
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .checkbox-container {
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 500px;
    margin: 1rem auto;
}

.cta-section .checkbox-container label {
    color: rgba(255, 255, 255, 0.9);
}

/* Email Preview */
.email-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    max-width: 400px;
    margin-left: auto;
}

.email-header {
    background: #f8fafc;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.email-subject {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.email-from {
    color: #6b7280;
    font-size: 0.875rem;
}

.email-body {
    padding: 1.5rem;
}

.email-body h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.metric:last-child {
    border-bottom: none;
}

.metric-label {
    color: #6b7280;
}

.metric-value {
    font-weight: 600;
    color: #059669;
    font-size: 1.1rem;
}

/* Subscription Focus Section */
.subscription-focus {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.subscription-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    width: 100%;
}

.subscription-text {
    flex: 1;
}

.subscription-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.subscription-focus h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.subscription-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.subscription-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sub-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.sub-icon {
    font-size: 1.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sub-feature h4 {
    margin-bottom: 0.25rem;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.sub-feature p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

.subscription-email {
    max-width: 420px;
    margin-top: 1rem;
}

.metric-section {
    margin-bottom: 1.5rem;
}

.metric-section:last-child {
    margin-bottom: 0;
}

.metric-section h4 {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value.positive {
    color: #059669;
}

.metric-value.negative {
    color: #dc2626;
}

/* Problem Section */
.problem {
    padding: 4rem 0;
    background: white;
}

.problem h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-item {
    text-align: center;
    padding: 2rem;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #dc2626;
}

.problem-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Solution Section */
.solution {
    padding: 4rem 0;
    background: #f8fafc;
}

.solution h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.solution-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.solution-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.solution-item p {
    color: #6b7280;
    line-height: 1.6;
}

.solution-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 16px;
    color: white;
}

.solution-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.solution-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.solution-cta .email-form {
    max-width: 400px;
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-cta .email-form input {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.solution-cta .email-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.solution-cta .email-form button {
    background: white;
    color: #6366f1;
    font-weight: 600;
}

.solution-cta .email-form button:hover {
    background: #f3f4f6;
}

.solution-cta .form-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
}

/* Integrations Section */
.integrations {
    padding: 4rem 0;
    background: white;
}

.integrations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.integrations-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.integration-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.integration-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.integration-card.coming-soon {
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
}

.integration-card.coming-soon:hover {
    border-color: #9ca3af;
}

.integration-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.integration-logo {
    height: 60px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-logo .logo-img {
    max-height: 100%;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.integration-card:hover .logo-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.integration-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.integration-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.integration-card.coming-soon h3 {
    color: #6b7280;
}

.integration-card.coming-soon p {
    color: #9ca3af;
}

/* Pricing Comparison Section */
.pricing-comparison {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.pricing-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.comparison-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.comparison-card.featured {
    border: 3px solid #10b981;
    transform: scale(1.05);
}

.comparison-card.featured::before {
    content: "BEST VALUE";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.comparison-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.pricing-model {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cost-breakdown {
    border-top: 2px solid #f3f4f6;
    padding-top: 1.5rem;
}

.revenue-example {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.fee-calculation {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.fee-rate {
    color: #6b7280;
    font-size: 0.9rem;
}

.total-cost {
    font-size: 1.2rem;
    font-weight: 700;
    color: #dc2626;
}

.comparison-card.featured .total-cost {
    color: #10b981;
}

.annual-impact {
    font-size: 1.1rem;
    font-weight: 600;
    color: #dc2626;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 8px;
    text-align: center;
}

.annual-impact.savings {
    color: #10b981;
    background: #f0fdf4;
}

.complexity-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-style: italic;
}

.complexity-note.savings {
    color: #10b981;
}

.savings-highlight {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.savings-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.savings-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.savings-period {
    font-size: 1.2rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.savings-description {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
}

.comparison-features {
    max-width: 800px;
    margin: 0 auto;
}

.feature-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-comparison .feature-item:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 2rem;
    background: #f0fdf4;
    padding: 0.5rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 0.25rem;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.feature-item p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #f8fafc;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.feature {
    padding: 1.5rem;
    border-left: 4px solid #6366f1;
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.feature p {
    color: #6b7280;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background: #f8fafc;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pricing-subtitle {
    text-align: center;
    color: #059669;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #6366f1;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #6366f1;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tier-icon {
    font-size: 2rem;
    display: inline;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .email-form input {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.cta-section .email-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.cta-section .email-form button {
    background: white;
    color: #6366f1;
}

.cta-section .email-form button:hover {
    background: #f3f4f6;
}

.cta-section .form-note {
    color: rgba(255, 255, 255, 0.8);
}

.launch-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.benefit-icon {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h3 {
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #9ca3af;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

/* Success Message */
.success-message {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.success-message.show {
    display: block;
}

/* Legal Pages */
.legal-content {
    padding: 6rem 0 4rem;
    background: white;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.legal-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-body h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 2.5rem 0 1rem 0;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.legal-body h3 {
    font-size: 1.3rem;
    color: #374151;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-body p {
    margin-bottom: 1rem;
    color: #4b5563;
}

.legal-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-body li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.legal-body strong {
    color: #1a1a1a;
    font-weight: 600;
}

.privacy-highlight,
.terms-highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #6366f1;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.privacy-highlight h2,
.privacy-highlight h3,
.terms-highlight h2,
.terms-highlight h3 {
    color: #1a1a1a;
    margin-top: 0;
    border: none;
    padding: 0;
}

.privacy-highlight p,
.terms-highlight p {
    margin-bottom: 0;
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .header .container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.5rem 16px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .nav {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav a {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 10rem 0 3rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        margin-top: 0.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .email-form .form-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .email-form input {
        padding: 1rem;
        font-size: 1rem;
        text-align: center;
    }
    
    .email-form button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        white-space: normal;
        line-height: 1.3;
    }
    
    .checkbox-container {
        margin: 1rem 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .checkbox-container label {
        white-space: normal;
        font-size: 0.85rem;
        text-align: center;
    }
    
    .email-preview {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .subscription-focus {
        padding: 3rem 0;
    }
    
    .subscription-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .subscription-focus h2 {
        font-size: 2rem;
    }
    
    .subscription-email {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .problem,
    .solution,
    .features,
    .pricing,
    .integrations,
    .pricing-comparison {
        padding: 3rem 0;
    }
    
    .problem h2,
    .solution h2,
    .features h2,
    .pricing h2,
    .integrations h2,
    .pricing-comparison h2,
    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .problem-grid,
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-item {
        padding: 1.5rem;
    }
    
    .solution-cta {
        margin-top: 2rem;
        padding: 2rem;
    }
    
    .solution-cta h3 {
        font-size: 1.5rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature {
        padding: 1.25rem;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .integration-card {
        padding: 1.25rem;
    }
    
    .integration-logo {
        height: 50px;
    }
    
    .integration-card h3 {
        font-size: 1.1rem;
    }
    
    .integration-card p {
        font-size: 0.85rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-card.featured {
        transform: none;
    }
    
    .savings-amount {
        font-size: 2.25rem;
    }
    
    .feature-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
    
    .launch-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .header .container {
        padding: 0.5rem 12px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .nav a {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 9rem 0 2.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .launch-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .email-form input {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .email-form button {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        line-height: 1.2;
    }
    
    .checkbox-container {
        gap: 0.4rem;
    }
    
    .checkbox-container input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
    
    .checkbox-container label {
        font-size: 0.8rem;
    }
    
    .form-note,
    .discount-note {
        font-size: 0.8rem;
    }
    
    .email-preview {
        margin: 1rem auto 0;
    }
    
    .subscription-focus h2,
    .problem h2,
    .solution h2,
    .features h2,
    .pricing h2,
    .integrations h2,
    .pricing-comparison h2,
    .cta-section h2 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .subscription-subtitle,
    .comparison-subtitle,
    .integrations-subtitle {
        font-size: 1rem;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .integration-card {
        padding: 1rem;
    }
    
    .integration-logo {
        height: 40px;
    }
    
    .integration-card h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .integration-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .solution-item,
    .pricing-card {
        padding: 1.25rem;
    }
    
    .solution-cta {
        padding: 1.5rem;
    }
    
    .solution-cta h3 {
        font-size: 1.3rem;
    }
    
    .solution-cta p {
        font-size: 1rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    .savings-highlight {
        padding: 1.5rem;
    }
    
    .savings-amount {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .benefit {
        font-size: 0.85rem;
    }
}