/* ========================================
   RESET AND BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 0.9;
    color: #000000;
    background: #ffffff;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo .logo {
    height: 80px;
    width: auto;
}

.nav-logo .brand-text {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: #525866;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #000000;
}

.nav-link.active {
    color: #dc2626;
    font-weight: 600;
}

.cta-link {
    background: #dc2626;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-link:hover {
    background: #b91c1c;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1f2937;
    margin: 3px 0;
    transition: 0.3s;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* ========================================
   PRELAUNCH/HOME PAGE STYLES
   ======================================== */
.prelaunch-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    position: relative;
    overflow: hidden;

}

.prelaunch-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.coming-soon-badge {
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-size: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 20px;
}

.prelaunch-title {
    font-size: 52px;
    font-style: italic;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000000;
    letter-spacing: -0.02em;
}

.gradient-text {
    color: #dc2626;
}

.prelaunch-subtitle {
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.05rem;
    font-size: 48px;
    color: #525866;
    margin-bottom: 32px;
    max-width: 600px;
}

.content-sources {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.source-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

.output-types {
    margin: 30px 0;
}

.output-types h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.output-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.output-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #374151;
    font-weight: 500;
}

.output-item i {
    color: #dc2626;
    width: 18px;
}

.prelaunch-cta {
    margin-top: 40px;
    font-weight: 500 !important;
    line-height: 0.9 !important;
    color: #00063d !important;
    letter-spacing: -0.05rem !important;
    font-size: 38px !important;
}

.btn-early-access {
    background: #dc2626;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-early-access:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* ========================================
   AI MODES SECTION
   ======================================== */
.ai-modes-section {
    background: #ffffff;
    padding: 100px 0;
    border-top: 1px solid #e5e7eb;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.mode-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
    text-align: center;
}

.mode-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: #dc2626;
}

.mode-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
}

.mode-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.mode-card > p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 16px;
}

.mode-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.mode-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: #374151;
}

.mode-features i {
    color: #10b981;
    font-size: 12px;
    width: 16px;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.prelaunch-form-section {
    background: #f9fafb;
    padding: 80px 0;
}

.prelaunch-form-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-size: 44px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 16px;
}

.form-intro p {
    font-weight: 200;
    line-height: 0.9;
    font-size: 21px;
    color: #00063d !important;
    letter-spacing: -0.05rem !important;
    margin: 0 auto;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0 40px 0;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #dc2626;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.popular-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-badge {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-badge.starter { color: #059669; }
.plan-badge.standard { color: #dc2626; }
.plan-badge.premium { color: #7c3aed; }

.plan-price {
    margin-bottom: 20px;
}

.plan-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: #374151;
    vertical-align: top;
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 800;
    color: #1f2937;
}

.plan-price .period {
    font-size: 18px;
    color: #6b7280;
}

.trial-info {
    background: #fef3c7;
    color: #92400e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.credits-highlight {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.pricing-card.featured .credits-highlight {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-color: #dc2626;
}

.credits-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 5px;
}

.pricing-card.featured .credits-number {
    color: #dc2626;
}

.credits-text {
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.plan-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid #f3f4f6;
}

.plan-features-list li:last-child {
    border-bottom: none;
}

.plan-features-list .fas.fa-check {
    color: #10b981;
    font-size: 14px;
}

.plan-features-list .not-included {
    opacity: 0.5;
}

.plan-features-list .not-included .fas.fa-times {
    color: #ef4444;
    font-size: 14px;
}

.plan-cta {
    display: block;
    width: 100%;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.starter-cta {
    background: #dc2626;
    color: white;
}

.starter-cta:hover {
    background: #047857;
    transform: translateY(-2px);
}

.standard-cta {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.standard-cta:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
}

.premium-cta {
    background: #dc2626;
    color: white;
}

.premium-cta:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.pricing-guarantee {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.guarantee-content i {
    font-size: 48px;
    color: #dc2626;
}

.guarantee-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.guarantee-content p {
    color: #6b7280;
    margin: 0;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #dc2626;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 12px;
}

.benefit-card p {
    font-weight: 200;
    line-height: 0.9;
    font-size: 21px;
    color: #00063d !important;
    letter-spacing: -0.05rem !important;
}

/* ========================================
   HERO VISUAL ELEMENTS
   ======================================== */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 40px 20px;
}

.floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.15);
    border: 2px solid #dc2626;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

.floating-card i {
    font-size: 24px;
    color: #dc2626;
}

.floating-card span {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 2s;
}

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

.pulse-ring {
    position: absolute;
    border: 3px solid #dc2626;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: pulse 2s ease-in-out infinite;
    opacity: 0.6;
}

.sumrycast-icon {
    background: #dc2626;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    z-index: 3;
}

/* ========================================
   BLOG PAGE STYLES
   ======================================== */
.blog-header {
    background: #dc2625;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-filters {
    background: #f8fafc;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.filters-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    border: none;
    outline: none;
    padding: 0.5rem;
    font-size: 0.95rem;
    flex: 1;
}

.search-box i {
    color: #6b7280;
}

.tag-filter {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.tag-button {
    background: white;
    border: 1px solid #d1d5db;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.tag-button:hover,
.tag-button.active {
    background: #dc2625;
    color: white;
    border-color: #dc2625;
}

.blog-grid {
    padding: 3rem 0;
}

.blogs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image.no-image {
    background: #dc2626;
}

.blog-image.no-image i {
    font-size: 3rem;
    color: white;
    opacity: 0.7;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-tag {
    background: #e0e7ff;
    color: #6366f1;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-tag:hover {
    background: #6366f1;
    color: white;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #dc2626;
    line-height: 1.4;
}

.blog-excerpt {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.blog-link {
    color: #dc2625;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.blog-link:hover {
    gap: 0.75rem;
}

/* ========================================
   FAQ PAGE STYLES
   ======================================== */
.faq-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.faq-hero h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000000;
    letter-spacing: -0.02em;
}

.faq-hero .highlight {
    color: #dc2626;
}

.faq-hero p {
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05rem;
    font-size: 52px;
    font-style: italic;
    color: #525866;
    max-width: 800px;
    margin: 0 auto 32px;
}

.faq-content {
    padding: 80px 0;
}

.faq-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 200;
    line-height: 0.9;
    letter-spacing: -0.05rem;
    font-size: 21px;
    padding: 32px 40px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    color: #000000;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question.active {
    background: #dc2626;
    color: white;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
    color: #dc2626;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease;
    background: white;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 1000px;
}

.faq-answer p {
    font-weight: 200;
    line-height: 0.9;
    letter-spacing: -0.05rem;
    font-size: 21px;
    color: #525866;
}

.highlight-red {
    color: #dc2626;
    font-weight: 600;
}

/* ========================================
   MISSION PAGE STYLES
   ======================================== */
.mission-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.mission-hero h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000000;
    letter-spacing: -0.02em;
}

.mission-hero .highlight {
    color: #dc2626;
}

.custom-p {
    font-weight: 900;
    line-height: 0.9;
    font-style: italic;
    color: #00063d;
    letter-spacing: -0.05rem;
    font-size: 48px;
}

.mission-content {
    padding: 80px 0;
}

.mission-statement {
    background: #f9fafb;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 80px;
    border-left: 4px solid #dc2626;
}

.mission-statement h2 {
    font-size: 48px;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 2rem;
    color: #1f2937;
}

.mission-statement p {
    font-weight: 400;
    line-height: 0.9;
    color: #00063d;
    letter-spacing: -0.05rem;
    font-size: 48px;
}

.mission-statement .emphasis {
    color: #dc2626;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.05rem;
    font-size: 48px;
}

.principles-section {
    margin-bottom: 80px;
}

.principles-section h3 {
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-size: 44px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.principle-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.principle-number {
    background: #dc2626;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 4px;
}

.principle-content p {
    font-weight: 200;
    line-height: 0.9;
    color: #00063d;
    letter-spacing: -0.05rem;
    font-size: 21px;
}

.principle-content .highlight-text {
    color: #dc2626;
    font-weight: 600;
}

.values-section {
    background: #f9fafb;
    padding: 80px 0;
}

.values-section h3 {
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-size: 44px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #dc2626;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 24px;
}

.value-card h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1f2937;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.value-card p {
    font-weight: 200;
    line-height: 0.9;
    color: #00063d;
    letter-spacing: -0.05rem;
    font-size: 21px;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h3 {
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1f2937;
}

.cta-section p {
    font-weight: 200;
    line-height: 0.9;
    font-size: 21px;
    color: #00063d;
    letter-spacing: -0.05rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 16px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    background: #dc2626;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #b91c1c;
}

.btn-secondary {
    background: transparent;
    color: #374151;
    padding: 14px 28px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.btn-submit {
    width: 100%;
    background: #dc2626;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    background: #b91c1c;
}

.btn-submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.btn-loader {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: block;
}

/* ========================================
   FORMS
   ======================================== */
.trial-content {
    margin-top: 40px;
}

.trial-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.trial-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.trial-form h3 {
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-size: 44px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 32px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Crimson Text', serif;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #dc2626;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-message {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: #f9fafb;
    padding: 80px 0;
    text-align: center;
}

.contact-section h3 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 700;
}

.contact-section p {
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #dc2626;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.contact-button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.contact-button.secondary {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
}

.contact-button.secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* ========================================
   PAGINATION
   ======================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.pagination-button {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    background: white;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination-button:hover:not(.disabled) {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

.pagination-button.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

.pagination-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    margin: 1rem 0;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}

/* ========================================
   LOADING AND EMPTY STATES
   ======================================== */
.loading {
    text-align: center;
    padding: 4rem 0;
    color: #6b7280;
}

.loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: spin 1s linear infinite;
}

.empty-state {
    text-align: center;
    padding: 4rem 0;
    color: #6b7280;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section:first-child {
    max-width: 350px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    transition: all 0.2s;
}

.social-links a:hover {
    background: #dc2626;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

@keyframes spin {
    to { 
        transform: rotate(360deg); 
    }
}

/* Animation classes for scroll animations */
.benefit-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.benefit-card.animate-in {
    opacity: 1;
        transform: translateY(0);
    }

.value-card,
.principle-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.value-card.animate-in,
.principle-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        margin: 15px 0;
        font-size: 18px;
    }

    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .container {
        padding: 0 1rem;
    }

    .prelaunch-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 120px;
    }
    
    .prelaunch-title {
        font-size: 3rem;
    }
    
    .output-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .modes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mode-card {
        padding: 30px 20px;
    }

    .mode-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
        margin: 0;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .plan-price .amount {
        font-size: 36px;
    }

    .credits-highlight {
        padding: 15px;
    }

    .credits-number {
        font-size: 28px;
    }

    .credits-text {
        font-size: 14px;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trial-form {
        padding: 30px 20px;
    }

    .hero-visual {
        min-height: 300px;
        padding: 20px;
    }

    .floating-card {
        padding: 15px;
        min-width: 100px;
    }

    .floating-card i {
        font-size: 20px;
    }

    .floating-card span {
        font-size: 12px;
    }

    .card-1 {
        top: 10%;
        left: 5%;
    }

    .card-2 {
        top: 10%;
        right: 5%;
    }

    .card-3 {
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
    }

    .pulse-ring {
        width: 100px;
        height: 100px;
    }

    .sumrycast-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-header p {
        font-size: 1rem;
    }

    .filters-row {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        max-width: 100%;
    }

    .blogs-container {
        grid-template-columns: 1fr;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .pagination-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .faq-hero h1 {
        font-size: 2.5rem;
    }

    .faq-question,
    .faq-answer.active {
        padding: 20px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .mission-hero h1 {
        font-size: 2.5rem;
    }

    .mission-statement {
        padding: 2rem;
    }

    .mission-statement h2 {
        font-size: 2rem;
    }

    .mission-statement p {
        font-size: 1.25rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .principles-grid {
        gap: 1rem;
    }
} 