/* Reset and Base Styles */

/* Font Awesome Icon Fallbacks */
.fas, .far, .fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.far {
    font-weight: 400;
}

.fab {
    font-family: "Font Awesome 6 Brands", "FontAwesome", sans-serif;
    font-weight: 400;
}
* {
    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: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #C99383, #d8b2a7);
    color: #1a0716;
    box-shadow: 0 4px 15px rgba(201, 147, 131, 0.3);
    border: 2px solid #333;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 147, 131, 0.4);
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-outline:hover {
    background: #421237;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #e9ecef;
    padding: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
    padding: 0 1rem;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    width: 100%;
    max-width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #421237;
    text-decoration: none;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #6a1d58;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.feature-item i {
    color: #6a1d58;
    font-size: 1.25rem;
}

/* Hero Visual */
.platform-preview {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Kanban Preview */
.kanban-preview h3 {
    color: #6a1d58;
    margin-bottom: 1rem;
    text-align: center;
}

.kanban-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.kanban-column h4 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-align: center;
}

.job-card {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid #6a1d58;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-card:hover {
    background: #e9ecef;
    transform: translateX(2px);
}

.progress-indicator {
    text-align: center;
    margin-top: 1rem;
}

.progress-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C99383, #d8b2a7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.progress {
    color: #1a0716;
    font-size: 1.1rem;
    font-weight: 700;
}

.resume-builder-preview h3 {
    color: #6a1d58;
    margin-bottom: 1rem;
}

.resume-preview {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.resume-header h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.resume-header p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.resume-content p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.match-score {
    text-align: center;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a1d58, #421237);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.score {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.feature-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

.feature-content h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.feature-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Feature Visuals */
.ai-interface {
    background: #e3f2fd;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #bbdefb;
}

/* Kanban Interface */
.kanban-interface {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #e9ecef;
}

.kanban-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #6a1d58;
    font-weight: 600;
}

.kanban-header i {
    font-size: 1.5rem;
}

.kanban-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.kanban-preview-column h4 {
    color: #6a1d58;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.preview-job-card {
    background: white;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid #C99383;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-job-card:hover {
    background: #f8f9fa;
    transform: translateX(2px);
}

/* Calendar Preview */
.calendar-preview {
    background: #fff3e0;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #ffcc80;
}

.calendar-header h3 {
    color: #f57c00;
    margin-bottom: 1.5rem;
    text-align: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.calendar-day {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.day-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f57c00;
    margin-bottom: 0.5rem;
}

.calendar-event {
    font-size: 0.8rem;
    padding: 0.5rem;
    border-radius: 4px;
    color: white;
    margin-top: 0.5rem;
}

.calendar-event.interview {
    background: #6a1d58;
}

.calendar-event.deadline {
    background: #e74c3c;
}

.calendar-event.followup {
    background: #27ae60;
}

/* Document Manager */
.document-manager {
    background: #e8f5e8;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #c8e6c9;
}

.doc-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #4caf50;
    font-weight: 600;
}

.doc-header i {
    font-size: 1.5rem;
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.doc-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #c8e6c9;
    transition: all 0.3s ease;
}

.doc-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.doc-item i {
    font-size: 2rem;
    color: #4caf50;
    margin-bottom: 0.5rem;
    display: block;
}

.doc-item span {
    font-size: 0.8rem;
    color: #666;
    display: block;
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #1976d2;
    font-weight: 600;
}

.ai-header i {
    font-size: 1.5rem;
}

.optimization-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
}

.check {
    color: #4caf50;
    font-weight: bold;
    font-size: 1.1rem;
}

.dashboard-preview {
    background: #f3e5f5;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #e1bee7;
}

/* Wellness Preview */
.wellness-preview {
    background: #fff3e0;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #ffcc80;
}

.wellness-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: #f57c00;
    font-weight: 600;
    font-size: 1.1rem;
}

.wellness-header i {
    font-size: 1.5rem;
}

.wellness-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.wellness-stat {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #ffcc80;
    transition: all 0.3s ease;
}

.wellness-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 204, 128, 0.2);
}

.wellness-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.wellness-stat span {
    font-size: 0.8rem;
    color: #f57c00;
    font-weight: 500;
}

.dashboard-header h3 {
    color: #7b1fa2;
    margin-bottom: 1.5rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #7b1fa2;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.career-insights {
    background: #e8f5e8;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #c8e6c9;
}

.insight-chart {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 200px;
}

.chart-bar {
    background: #4caf50;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 0.5rem;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    min-width: 60px;
}

.job-sources {
    background: #fff3e0;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #ffcc80;
}

.source-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.source-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #f57c00;
    border: 1px solid #ffcc80;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.signup-preview {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-form {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signup-form h3 {
    color: #6a1d58;
    margin-bottom: 0.5rem;
}

.form-field {
    margin-bottom: 1rem;
}

.form-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.works-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: #6a1d58;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: #666;
    margin-bottom: 0;
}

/* Resume Examples */
.resume-examples {
    padding: 80px 0;
    background: #e3f2fd;
}

.resume-examples h2,
.resume-examples p {
    text-align: center;
    margin-bottom: 1rem;
}

.resume-examples .btn {
    margin: 0 auto 2rem;
    display: block;
}

.example-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 8px 16px;
    border: 1px solid #bbdefb;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #6a1d58;
    color: white;
    border-color: #6a1d58;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.example-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e3f2fd;
}

.example-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #6a1d58;
}

/* Resume Templates */
.resume-templates {
    padding: 80px 0;
    background: #fff3e0;
}

.resume-templates h2,
.resume-templates p {
    text-align: center;
    margin-bottom: 1rem;
}

.resume-templates .btn {
    margin: 0 auto 2rem;
    display: block;
}

.template-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.template-carousel {
    text-align: center;
}

.template-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #6a1d58;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Value Proposition */
.value-proposition {
    padding: 80px 0;
    background: white;
}

.value-proposition h2,
.value-proposition p {
    text-align: center;
    margin-bottom: 1rem;
}

.value-proposition p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #666;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(106, 29, 88, 0.1);
    border-color: #6a1d58;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-item h3 {
    color: #421237;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-item p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

.testimonials h2,
.testimonials p {
    text-align: center;
    margin-bottom: 1rem;
}

.rating {
    text-align: center;
    margin-bottom: 2rem;
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.rating-text {
    font-weight: 500;
    color: #333;
}

.testimonial-banner {
    background: #421237;
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 500;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card .stars {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.testimonial-author strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Technical Features */
.technical-features {
    padding: 80px 0;
    background: white;
}

.technical-features h2,
.technical-features p {
    text-align: center;
    margin-bottom: 1rem;
}

.technical-features p {
    margin-bottom: 3rem;
}

/* Features Grid */
.features-grid {
    padding: 80px 0;
    background: white;
}

.features-grid h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

/* Position the Mindset Development tile above the others */
.features-container .feature-box.mindset-development {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto 2rem;
}

/* Center the bottom row tiles */
.features-container .feature-box:nth-child(5) {
    grid-column: 1 / 2;
}

.features-container .feature-box:nth-child(6) {
    grid-column: 2 / 3;
}

.features-container .feature-box:nth-child(7) {
    grid-column: 3 / 4;
}

.feature-box {
    background: #f0f8ff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e0f0ff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(106, 29, 88, 0.15);
    border-color: #6a1d58;
}

.feature-box i {
    font-size: 2.5rem;
    color: #6a1d58;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: #333;
    font-size: 1.25rem;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing h2,
.pricing p {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing .btn {
    margin: 0 auto 3rem;
    display: block;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.pricing-card.basic {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #C99383;
}

.pricing-card.professional {
    background: linear-gradient(135deg, #6a1d58, #421237);
    color: white;
    border: 2px solid #C99383;
}

.pricing-card.executive {
    background: linear-gradient(135deg, #421237, #1a0716);
    color: white;
    border: 2px solid #C99383;
    transform: scale(1.05);
}

.pricing-card.executive:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-card h3 {
    margin-bottom: 1rem;
    color: inherit;
}

.tier-includes {
    background: rgba(201, 147, 131, 0.1);
    color: #6a1d58;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(201, 147, 131, 0.3);
}

/* Override for dark background pricing cards */
.pricing-card.professional .tier-includes,
.pricing-card.executive .tier-includes {
    background: rgba(255, 255, 255, 0.9);
    color: #421237;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: inherit;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

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

.features-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.features-list .check {
    color: #4caf50;
    font-weight: bold;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.demo-section h2 {
    color: #421237;
    margin-bottom: 1rem;
}

.demo-section p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.demo-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #421237, #6a1d58);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Affiliate page specific footer centering */
.affiliate-landing-page .footer-content,
.affiliate-resources-page .footer-content,
.affiliate-signup-page .footer-content,
.affiliate-login-page .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: center;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    color: #bdc3c7;
    font-weight: 500;
    margin-top: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Affiliate page specific footer links centering */
.affiliate-landing-page .footer-links,
.affiliate-resources-page .footer-links,
.affiliate-signup-page .footer-links,
.affiliate-login-page .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C99383;
}

.footer-column h4 {
    color: #ecf0f1;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #C99383;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

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

.social-links a {
    color: #bdc3c7;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #C99383;
}

.copyright p {
    color: #bdc3c7;
    margin-bottom: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal.is-open {
    display: block;
}

/* Lock background scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Waitlist Intro Styles */
.waitlist-intro {
    text-align: center;
    padding: 1.5rem 2rem 1rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.waitlist-intro h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.waitlist-intro p {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}
.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #421237;
}

.modal-logo .logo-symbol {
    font-size: 1rem;
    color: #C99383;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover,
.close:focus {
    color: #421237;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a0716;
    margin: 1.5rem 2rem 0.5rem;
    text-align: center;
}

.modal-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0 2rem 2rem;
    text-align: center;
    line-height: 1.5;
}

.waitlist-form {
    padding: 0 2rem 2rem;
}

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

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #6a1d58;
    box-shadow: 0 0 0 3px rgba(106, 29, 88, 0.1);
}

.join-waitlist-btn {
    width: 100%;
    background: linear-gradient(135deg, #421237, #6a1d58);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.join-waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 18, 55, 0.3);
}

.waitlist-benefits {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0 0 24px 24px;
}

.waitlist-benefits h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a0716;
    margin-bottom: 1rem;
    text-align: center;
}

.waitlist-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.waitlist-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.95rem;
    justify-content: center;
}

.waitlist-benefits .check {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.success-message {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    padding: 2rem;
    margin: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #c3e6cb;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.15);
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.success-content i {
    color: #28a745;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.success-content h3 {
    color: #155724;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.success-content p {
    color: #155724;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 95vh;
        padding: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
        margin: 1rem 1rem 0.5rem;
    }
    
    .modal-subtitle {
        margin: 0 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .waitlist-form {
        padding: 0 1rem 1.5rem;
    }
    
    .waitlist-benefits {
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-input, .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.75rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
}

/* Small tablets and large phones */
@media (max-width: 640px) {
    .modal-content {
        margin: 2% auto;
        width: 98%;
        max-height: 98vh;
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .waitlist-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
        text-align: center;
    }
    
    .benefit-item i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
}

/* Phone sizes (iPhone SE, small Android) */
@media (max-width: 375px) {
    .modal-content {
        margin: 1% auto;
        width: 99%;
        max-height: 99vh;
        border-radius: 8px;
    }
    
    .modal-header {
        padding: 1rem 0.75rem 0.75rem;
    }
    
    .modal-title {
        font-size: 1.3rem;
        margin: 0.75rem 0.75rem 0.5rem;
        line-height: 1.3;
    }
    
    .modal-subtitle {
        margin: 0 0.75rem 1rem;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .waitlist-form {
        padding: 0 0.75rem 1rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-input, .form-select {
        padding: 0.625rem;
        font-size: 16px;
        border-radius: 6px;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.375rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        border-radius: 6px;
    }
    
    .waitlist-benefits {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .benefit-item {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .benefit-item i {
        font-size: 1.25rem;
        margin-bottom: 0.375rem;
    }
}

/* Extra small phones */
@media (max-width: 320px) {
    .modal-content {
        margin: 0 auto;
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .modal-header {
        padding: 0.75rem 0.5rem 0.5rem;
    }
    
    .modal-title {
        font-size: 1.2rem;
        margin: 0.5rem 0.5rem 0.25rem;
    }
    
    .modal-subtitle {
        margin: 0 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .waitlist-form {
        padding: 0 0.5rem 0.75rem;
    }
    
    .form-group {
        margin-bottom: 0.5rem;
    }
    
    .form-input, .form-select {
        padding: 0.5rem;
        font-size: 16px;
    }
    
    .btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .waitlist-benefits {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .benefit-item {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

/* Partner Websites Scrolling Section */
.partner-websites {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.partner-websites h2 {
    text-align: center;
    color: #421237;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.partner-websites p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scrolling-logos {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    padding: 2rem 0;
}

.logo-track {
    display: inline-flex;
    align-items: center;
    animation: scroll 30s linear infinite;
    gap: 3rem;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 140px;
    border: 2px solid transparent;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(201, 147, 131, 0.2);
    border-color: #C99383;
}

.logo-item i {
    font-size: 2.5rem;
    color: #C99383;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.logo-item:hover i {
    color: #421237;
}

.logo-item span {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    text-align: center;
}

/* Pause animation on hover */
.scrolling-logos:hover .logo-track {
    animation-play-state: paused;
}

/* Keyframes for scrolling animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments for partner websites */
@media (max-width: 768px) {
    .partner-websites {
        padding: 60px 0;
    }
    
    .partner-websites h2 {
        font-size: 2rem;
    }
    
    .partner-websites p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .logo-item {
        min-width: 120px;
        padding: 1rem 1.5rem;
    }
    
    .logo-item i {
        font-size: 2rem;
    }
    
    .logo-item span {
        font-size: 0.8rem;
    }
    
    .logo-track {
        gap: 2rem;
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .logo-item {
        min-width: 100px;
        padding: 0.8rem 1rem;
    }
    
    .logo-item i {
        font-size: 1.8rem;
    }
    
    .logo-item span {
        font-size: 0.75rem;
    }
    
    .logo-track {
        gap: 1.5rem;
    }
}

/* Beta Tester Page Styles */
.beta-hero {
    background: linear-gradient(135deg, #421237 0%, #6a1d58 50%, #C99383 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.beta-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.beta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.beta-badge i {
    font-size: 1rem;
}

.beta-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.beta-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #F5F5DC !important;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #C99383;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Beta Benefits Section */
.beta-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.beta-benefits h2 {
    text-align: center;
    color: #421237;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.beta-benefits > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(66, 18, 55, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(201, 147, 131, 0.2);
    border-color: #C99383;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C99383, #d8b2a7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    color: #421237;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Beta Requirements Section */
.beta-requirements {
    padding: 80px 0;
    background: white;
}

.beta-requirements h2 {
    text-align: center;
    color: #421237;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.beta-requirements > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.requirement-item {
    text-align: center;
    padding: 1.5rem;
}

.requirement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #421237, #6a1d58);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.requirement-icon i {
    font-size: 1.5rem;
    color: white;
}

.requirement-item h3 {
    color: #421237;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.requirement-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Beta Application Form */
.beta-application {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.application-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(66, 18, 55, 0.15);
}

.application-header {
    text-align: center;
    margin-bottom: 3rem;
}

.application-header h2 {
    color: #421237;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.application-header p {
    color: #666;
    font-size: 1.1rem;
}

.beta-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-section {
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: #421237;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #C99383;
    display: inline-block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

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

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #C99383;
    box-shadow: 0 0 0 3px rgba(201, 147, 131, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.checkbox-item:hover {
    background-color: #f0f0f0;
}

.checkbox-item:hover .checkmark {
    border-color: #C99383;
    transform: scale(1.05);
}

.checkbox-item input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 24px;
    height: 24px;
    margin: 0;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 3px solid #666;
    border-radius: 6px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background-color: #C99383;
    border-color: #C99383;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 24px;
    height: 24px;
    margin: 0;
}

.checkbox-label .checkmark {
    margin-top: 2px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 3px solid #666;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: inline-block;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #C99383;
    border-color: #C99383;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.form-actions {
    text-align: center;
    padding-top: 2rem;
}

.form-actions .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.form-note {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Beta Timeline Section */
.beta-timeline {
    padding: 80px 0;
    background: white;
}

.beta-timeline h2 {
    text-align: center;
    color: #421237;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.beta-timeline > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #C99383, #d8b2a7);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C99383, #d8b2a7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-marker i {
    font-size: 1.5rem;
    color: white;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(66, 18, 55, 0.15);
    margin: 0 2rem;
    border: 2px solid #f8f9fa;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-content h3 {
    color: #421237;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, #421237, #6a1d58);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive adjustments for beta tester page */
@media (max-width: 768px) {
    .beta-hero {
        padding: 100px 0 60px;
    }
    
    .beta-hero h1 {
        font-size: 2.5rem;
    }
    
    .beta-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .application-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
        width: 50px;
        height: 50px;
    }
    
    .timeline-content {
        margin: 0;
        text-align: left !important;
    }
}

@media (max-width: 480px) {
    .beta-hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .application-container {
        padding: 1.5rem 1rem;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .header {
        padding: 0.75rem 1rem;
    }
    
    .nav {
        padding: 0.75rem 0;
    }
    
    .affiliate-landing-page,
    .affiliate-page,
    .affiliate-login-page,
    .affiliate-resources-page {
        padding-top: 70px;
    }
    
    .nav {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .header .logo {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-feature {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .feature-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .works-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    /* Affiliate page specific responsive footer centering */
    .affiliate-landing-page .footer-content,
    .affiliate-resources-page .footer-content,
    .affiliate-signup-page .footer-content,
    .affiliate-login-page .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Affiliate page specific responsive footer links */
    .affiliate-landing-page .footer-links,
    .affiliate-resources-page .footer-links,
    .affiliate-signup-page .footer-links,
    .affiliate-login-page .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .pricing-card.executive {
        transform: none;
    }
    
    .pricing-card.executive:hover {
        transform: translateY(-4px);
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Small tablets and large phones */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .affiliate-landing-page,
    .affiliate-page,
    .affiliate-login-page,
    .affiliate-resources-page {
        padding-top: 60px;
    }
    
    .nav {
        padding: 0.5rem 0;
    }
    
    .header {
        padding: 0.5rem 0.75rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.75rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-feature {
        font-size: 0.85rem;
        padding: 0.5rem 0.875rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Affiliate page specific responsive footer links */
    .affiliate-landing-page .footer-links,
    .affiliate-resources-page .footer-links,
    .affiliate-signup-page .footer-links,
    .affiliate-login-page .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .section-title {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .feature-box {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .header {
        padding: 0.5rem 0.75rem;
    }
    
    .header .logo {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
}

/* Phone sizes (iPhone SE, small Android) */
@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .hero .container {
        padding: 1.5rem 0.75rem;
        gap: 1.5rem;
    }
    
    .btn-large {
        max-width: 260px;
        padding: 0.75rem 0.875rem;
        font-size: 0.95rem;
    }
    
    .hero-feature {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .feature-section .container,
    .works-content,
    .footer-content {
        padding: 1.5rem 0.75rem;
        gap: 1.5rem;
    }
    
    .pricing-cards,
    .testimonial-grid,
    .features-container,
    .value-grid {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .pricing-card,
    .feature-box,
    .testimonial-card {
        padding: 1.25rem 0.875rem;
    }
    
    .header {
        padding: 0.5rem 0.5rem;
    }
    
    .header .logo {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        width: 22px;
        height: 22px;
    }
}

/* Extra small phones */
@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .hero .container {
        padding: 1rem 0.5rem;
        gap: 1rem;
    }
    
    .btn-large {
        max-width: 240px;
        padding: 0.625rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .hero-feature {
        font-size: 0.75rem;
        padding: 0.375rem 0.625rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .feature-section .container,
    .works-content,
    .footer-content {
        padding: 1rem 0.5rem;
        gap: 1rem;
    }
    
    .pricing-cards,
    .testimonial-grid,
    .features-container,
    .value-grid {
        padding: 0 0.25rem;
        gap: 0.75rem;
    }
    
    .pricing-card,
    .feature-box,
    .testimonial-card {
        padding: 1rem 0.75rem;
    }
    
    .header {
        padding: 0.375rem 0.375rem;
    }
    
    .header .logo {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 20px;
        height: 20px;
    }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .btn, .btn-primary, .btn-outline, .btn-large {
        min-height: 44px; /* iOS recommended minimum */
        touch-action: manipulation;
    }
    
    /* Better spacing for mobile */
    .section {
        padding: 3rem 0;
    }
    
    .section:first-of-type {
        padding-top: 2rem;
    }
    
    /* Improve mobile navigation */
    .nav-menu.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        gap: 2rem;
    }
    
    .nav-menu.active a {
        font-size: 1.5rem;
        padding: 1rem;
        border-bottom: 1px solid rgba(106, 29, 88, 0.1);
        width: 100%;
        text-align: center;
    }
    
    /* Improve mobile forms */
    input, select, textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    /* Better mobile scrolling */
    .modal-content {
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
    }
    
    /* Improve mobile buttons */
    .hero-actions .btn {
        margin: 0.25rem;
    }
    
    /* Better mobile spacing */
    .feature-box, .pricing-card, .testimonial-card {
        margin-bottom: 1rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero .container {
        padding: 1rem;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .modal-content {
        margin: 2% auto;
        max-height: 96vh;
    }
}

/* Schedule Demo Modal Styles */
.schedule-modal {
    max-width: 600px;
    width: 90%;
}

.schedule-form-container {
    padding: 2rem;
}

.schedule-form-container h3 {
    color: #421237;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.schedule-form-container p {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.schedule-form {
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row .form-group {
    flex: 1;
}

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

.schedule-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #421237;
}

.schedule-form .form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.schedule-form .form-input:focus {
    outline: none;
    border-color: #C99383;
    box-shadow: 0 0 0 3px rgba(201, 147, 131, 0.1);
}

.schedule-form textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

.schedule-form select.form-input {
    cursor: pointer;
}

.schedule-form label input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.1);
}

.schedule-demo-btn {
    width: 100%;
    background: linear-gradient(135deg, #421237, #6a1d58);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.schedule-demo-btn:hover {
    background: linear-gradient(135deg, #6a1d58, #421237);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 18, 55, 0.3);
}

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

.schedule-benefits {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #C99383;
    text-align: center;
}

.schedule-benefits h4 {
    color: #421237;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.schedule-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.schedule-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
    justify-content: center;
}

.schedule-benefits .check {
    color: #C99383;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Responsive adjustments for schedule form */
@media (max-width: 768px) {
    .schedule-modal {
        width: 95%;
        margin: 1rem;
    }
    
    .schedule-form-container {
        padding: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .schedule-form-container h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .schedule-form-container {
        padding: 1rem;
    }
    
    .schedule-form .form-input {
        padding: 0.625rem;
        font-size: 0.9rem;
    }
    
    .schedule-demo-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* FullCalendar.js Styles */
#calendar-container {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-height: 300px; /* Smaller calendar height */
    max-width: 500px; /* Limit calendar width */
    margin: 0 auto 1rem auto; /* Center the calendar */
}

/* Fallback styles in case FullCalendar CSS doesn't load */
#schedule-calendar {
    font-family: 'Inter', sans-serif;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

/* Custom FullCalendar styling */
.fc {
    font-family: 'Inter', sans-serif;
}

.fc-toolbar {
    margin-bottom: 0.5rem; /* Reduced margin */
}

.fc-toolbar-title {
    font-size: 1rem; /* Smaller title */
    font-weight: 600;
    color: #1f2937;
}

/* Make calendar more compact */
.fc-daygrid-day {
    min-height: 2rem !important; /* Smaller day cells */
}

.fc-daygrid-day-number {
    padding: 0.25rem !important; /* Smaller padding */
    font-size: 0.875rem !important; /* Smaller font */
}

.fc-button {
    background: #C99383 !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
}

.fc-button:hover {
    background: #B8826F !important;
}

.fc-button:focus {
    box-shadow: 0 0 0 2px rgba(201, 147, 131, 0.3) !important;
}

.fc-daygrid-day {
    border: 1px solid #e5e7eb !important;
}

.fc-daygrid-day-number {
    color: #374151 !important;
    font-weight: 500 !important;
    padding: 0.5rem !important;
}

.fc-daygrid-day:hover {
    background: #f9fafb !important;
}

/* Weekend styling */
.fc-day-sat,
.fc-day-sun {
    background: #fef2f2 !important;
    color: #dc2626 !important;
}

.fc-day-sat .fc-daygrid-day-number,
.fc-day-sun .fc-daygrid-day-number {
    color: #dc2626 !important;
}

/* Disabled weekend days */
.fc-day-sat.fc-day-disabled,
.fc-day-sun.fc-day-disabled {
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
}

.fc-day-sat.fc-day-disabled .fc-daygrid-day-number,
.fc-day-sun.fc-day-disabled .fc-daygrid-day-number {
    color: #9ca3af !important;
}

/* Selected date styling */
.fc-daygrid-day.fc-day-selected {
    background: #C99383 !important;
}

.fc-daygrid-day.fc-day-selected .fc-daygrid-day-number {
    color: white !important;
    font-weight: 600 !important;
}

/* Past dates styling */
.fc-day-past {
    background: #f9fafb !important;
    color: #9ca3af !important;
}

.fc-day-past .fc-daygrid-day-number {
    color: #9ca3af !important;
}

/* Disabled time slot styling */
#scheduleTime option:disabled {
    color: #999 !important;
    background-color: #f5f5f5 !important;
    font-style: italic;
}

#scheduleTime option:disabled:hover {
    background-color: #f5f5f5 !important;
}

/* Legal Pages Styles */
.legal-page {
    padding: 2rem 0;
    min-height: 80vh;
    background: #f8f9fa;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    color: #6c757d;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #495057;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-section p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness for legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
}

/* Affiliate Page Styles */
.affiliate-page {
    padding: 2rem 0;
    padding-top: 100px;
    min-height: 100vh;
    background: #f8f9fa;
}

.affiliate-content {
    max-width: 800px;
    margin: 0 auto;
}

.logo-section {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-section .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo-section .logo-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.affiliate-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.affiliate-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.affiliate-panel {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.affiliate-welcome h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.affiliate-welcome p {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
}

.affiliate-benefits {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.affiliate-benefits h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.affiliate-benefits ul {
    list-style: none;
    padding: 0;
    padding-left: 2rem;
    margin: 0;
}

.affiliate-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #495057;
    font-size: 1rem;
}

.affiliate-benefits li i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.divider {
    border: none;
    height: 2px;
    background: #e9ecef;
    margin: 2rem 0;
}

.affiliate-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-label.required::after {
    content: " *";
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-control::placeholder {
    color: #6c757d;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    transform: scale(1.2);
}

.checkbox-label a {
    color: #421237;
    text-decoration: none;
    margin: 0 4px;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.affiliate-footer {
    text-align: center;
    color: #6c757d;
    margin-top: 2rem;
}

.affiliate-footer a {
    color: #007bff;
    text-decoration: none;
}

.affiliate-footer a:hover {
    text-decoration: underline;
}

.contact-info {
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Mobile responsiveness for affiliate page */
@media (max-width: 768px) {
    .affiliate-panel {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .affiliate-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .affiliate-benefits {
        padding: 1.5rem;
    }
    
    .logo-section {
        font-size: 2rem;
    }
    
    .logo-section .logo-icon {
        width: 40px;
        height: 40px;
    }
}

/* Email Confirmation Page Styles */
.confirmation-page {
    padding: 2rem 0;
    min-height: 80vh;
    background: #f8f9fa;
}

.confirmation-content {
    max-width: 600px;
    margin: 0 auto;
}

.confirmation-title {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.confirmation-panel {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    text-align: center;
}

.confirmation-icon {
    font-size: 4rem;
    color: #421237;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.confirmation-heading {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.confirmation-message {
    margin-bottom: 2rem;
}

.confirmation-message p {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.confirmation-help {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.confirmation-help p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.confirmation-help a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.confirmation-help a:hover {
    text-decoration: underline;
}

.confirmation-actions {
    text-align: center;
    margin-bottom: 2rem;
}

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

.action-buttons .btn {
    min-width: 200px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.confirmation-footer {
    text-align: center;
    color: #6c757d;
}

.help-text {
    font-size: 0.9rem;
    margin: 0;
}

.help-text a {
    color: #007bff;
    text-decoration: none;
}

.help-text a:hover {
    text-decoration: underline;
}

.help-text i {
    margin-right: 0.5rem;
    color: #421237;
}

/* Mobile responsiveness for confirmation page */
@media (max-width: 768px) {
    .confirmation-panel {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .confirmation-title {
        font-size: 1.5rem;
    }
    
    .confirmation-heading {
        font-size: 1.5rem;
    }
    
    .confirmation-icon {
        font-size: 3rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        min-width: 250px;
        width: 100%;
        max-width: 300px;
    }
    
    .confirmation-help {
        padding: 1rem;
    }
}

/* Affiliate Login Page Styles */
.affiliate-login-page {
    padding: 2rem 0;
    padding-top: 100px;
    min-height: 100vh;
    background: #f8f9fa;
}

.affiliate-login-content {
    max-width: 500px;
    margin: 0 auto;
}

.affiliate-login-title {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.affiliate-login-panel {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.welcome-heading {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.welcome-message {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

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

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

.form-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-label.required::after {
    content: " *";
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-control::placeholder {
    color: #6c757d;
}

.honeypot {
    display: none;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-check-input {
    margin-right: 0.75rem;
    transform: scale(1.2);
}

.form-check-label {
    color: #495057;
    font-size: 0.95rem;
    cursor: pointer;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
}

.forgot-password {
    margin-bottom: 1rem;
}

.forgot-password a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.forgot-password i {
    margin-right: 0.5rem;
}

.signup-link {
    color: #6c757d;
    font-size: 0.95rem;
}

.signup-link a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

.affiliate-login-footer {
    text-align: center;
    color: #6c757d;
}

.help-text {
    font-size: 0.9rem;
    margin: 0;
}

.help-text a {
    color: #007bff;
    text-decoration: none;
}

.help-text a:hover {
    text-decoration: underline;
}

.help-text i {
    margin-right: 0.5rem;
    color: #421237;
}

/* Mobile responsiveness for affiliate login page */
@media (max-width: 768px) {
    .affiliate-login-panel {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .affiliate-login-title {
        font-size: 1.5rem;
    }
    
    .welcome-heading {
        font-size: 1.3rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Affiliate Landing Page Styles */
.affiliate-landing-page {
    background: #f8f9fa;
    padding-top: 80px;
    min-height: 100vh;
}

.affiliate-hero {
    background: linear-gradient(135deg, #C99383, #d8b2a7);
    color: #1a0716;
    padding: 4rem 0;
    text-align: center;
}

.affiliate-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.affiliate-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.affiliate-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #421237;
}

.affiliate-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.affiliate-stats {
    background: white;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #421237;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

/* Animation for counting effect */
.stat-number.animating {
    transform: scale(1.05);
}

.stat-label {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 600;
}

.affiliate-how-it-works {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #421237;
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.section-title i {
    color: #421237;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0;
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C99383, #d8b2a7);
    color: #1a0716;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.step-content p {
    color: #6c757d;
    line-height: 1.6;
}

.affiliate-benefits {
    padding: 4rem 0;
    background: white;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C99383, #d8b2a7);
    color: #1a0716;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #6c757d;
    line-height: 1.6;
}

.affiliate-cta-section {
    background: linear-gradient(135deg, #C99383, #d8b2a7);
    color: #1a0716;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Affiliate Landing Page Button Styles */
.affiliate-landing-page .btn-large {
    padding: 12px 24px !important;
    font-size: 1rem !important;
    min-width: 160px !important;
    width: auto !important;
    max-width: none !important;
}

.affiliate-landing-page .affiliate-cta {
    gap: 1.5rem !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

.affiliate-landing-page .cta-buttons {
    gap: 1.5rem !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

/* Affiliate Landing Page Section Titles */
.affiliate-landing-page .section-title {
    text-align: center !important;
    margin: 0 auto !important;
}

.affiliate-landing-page .section-subtitle {
    text-align: center !important;
    margin: 0 auto !important;
}

.affiliate-landing-page .text-center {
    text-align: center !important;
}

/* Hero Icon Styling */
.hero-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 12px;
    vertical-align: middle;
}

.affiliate-landing-page .hero-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 12px;
    vertical-align: middle;
    display: inline-block;
}

.affiliate-landing-page .affiliate-hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Affiliate Landing Page Benefits Grid - 3 items top row, 2 items bottom row staggered */
.affiliate-landing-page .benefits-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 2rem !important;
    justify-content: center !important;
    max-width: 1000px !important;
    margin: 3rem auto 0 auto !important;
}

.affiliate-landing-page .benefit-item:nth-child(4),
.affiliate-landing-page .benefit-item:nth-child(5) {
    grid-column: span 1 !important;
    justify-self: center !important;
}

.affiliate-landing-page .benefit-item:nth-child(4) {
    grid-column: 1 / 2 !important;
    margin-right: 2rem !important;
}

.affiliate-landing-page .benefit-item:nth-child(5) {
    grid-column: 3 / 4 !important;
    margin-left: 2rem !important;
}

.affiliate-landing-page .benefit-item {
    min-width: 200px !important;
    padding: 1.5rem !important;
}

/* Mobile responsive adjustments for affiliate landing buttons */
@media (max-width: 480px) {
    .affiliate-landing-page .btn-large {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        min-width: 140px !important;
    }
    
    .affiliate-landing-page .affiliate-cta {
        gap: 1rem !important;
        flex-direction: row !important;
    }
    
    .affiliate-landing-page .cta-buttons {
        gap: 1rem !important;
        flex-direction: row !important;
    }
    
    .hero-icon {
        width: 28px;
        height: 28px;
        margin-right: 10px;
    }
    
    .affiliate-landing-page .hero-icon {
        width: 28px;
        height: 28px;
        margin-right: 10px;
    }
    
    .resources-icon {
        width: 40px;
        height: 40px;
    }
    
    .affiliate-landing-page .affiliate-hero-title {
        gap: 12px;
    }
}

/* Responsive adjustments for benefits grid */
@media (max-width: 1200px) {
    .affiliate-landing-page .benefits-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 1.5rem !important;
        max-width: 900px !important;
    }
}

@media (max-width: 768px) {
    .affiliate-landing-page .benefits-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
        max-width: 600px !important;
    }
    
    .affiliate-landing-page .benefit-item:nth-child(4),
    .affiliate-landing-page .benefit-item:nth-child(5) {
        grid-column: span 1 !important;
        margin: 0 !important;
    }
    
    .affiliate-landing-page .benefit-item {
        min-width: 180px !important;
        padding: 1rem !important;
    }
}

@media (max-width: 480px) {
    .affiliate-landing-page .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        max-width: 400px !important;
    }
    
    .affiliate-landing-page .benefit-item:nth-child(4),
    .affiliate-landing-page .benefit-item:nth-child(5) {
        grid-column: span 1 !important;
        margin: 0 !important;
    }
    
    .affiliate-landing-page .benefit-item {
        min-width: auto !important;
        padding: 1rem !important;
    }
}

/* Affiliate Resources Page Styles */
.affiliate-resources-page {
    padding: 2rem 0;
    padding-top: 100px;
    background: #f8f9fa;
    min-height: 100vh;
}

.resources-header {
    text-align: center;
    margin-bottom: 3rem;
}

.resources-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.resources-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.resources-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.resources-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
}

.quick-links {
    margin-bottom: 3rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-link-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #421237;
}

.quick-link-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #421237;
}

.resource-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.resource-section .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #421237;
    text-align: center;
}

.section-description {
    color: #6c757d;
    margin-bottom: 2rem;
    text-align: center;
}

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

.banner-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    align-items: flex-start;
}

.banner-preview {
    flex-shrink: 0;
}

.banner-placeholder {
    width: 120px;
    height: 80px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.banner-placeholder span {
    font-weight: 600;
    color: #6c757d;
}

.banner-placeholder small {
    font-size: 0.8rem;
    color: #adb5bd;
}

.banner-info {
    flex: 1;
    min-width: 0;
}

.banner-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.banner-info p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

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

.template-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.template-preview {
    background: #f8f9fa;
    padding: 1rem;
}

.email-preview {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 1rem;
    font-size: 0.9rem;
}

.email-header {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.email-body {
    text-align: left;
}

.email-body p:has(strong) {
    text-align: center;
}

.email-body ul {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.email-body li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.5rem;
    color: #495057;
    font-size: 0.95rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.email-body li i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.email-body p:has(a.cta-link) {
    text-align: center;
}

.email-body p {
    margin-bottom: 0.5rem;
}

.cta-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.template-info {
    padding: 1rem;
    text-align: center;
}

.template-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.template-info p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.social-post {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.post-preview {
    padding: 1rem;
    background: #f8f9fa;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.post-avatar {
    width: 40px;
    height: 40px;
    background: #007bff;
    border-radius: 50%;
}

.post-info span {
    color: #6c757d;
    font-size: 0.9rem;
}

.post-content p {
    margin-bottom: 0.5rem;
}

.post-hashtags {
    color: #007bff;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.post-actions {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

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

.content-idea {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.content-idea h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.content-idea ul {
    list-style: none;
    padding: 0;
}

.content-idea li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
    color: #6c757d;
}

.content-idea li:last-child {
    border-bottom: none;
}

.tracking-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.tracking-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tracking-link-item label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.link-container {
    display: flex;
    gap: 0.5rem;
}

.link-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background: white;
    font-family: monospace;
    font-size: 0.9rem;
}

/* Mobile responsiveness for affiliate pages */
@media (max-width: 768px) {
    .affiliate-hero-title {
        font-size: 2rem;
    }
    
    .affiliate-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .affiliate-cta {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Override for affiliate landing page */
    .affiliate-landing-page .affiliate-cta {
        flex-direction: row !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Override for affiliate landing page */
    .affiliate-landing-page .cta-buttons {
        flex-direction: row !important;
    }
    
    .resource-section {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .banner-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .banner-actions {
        justify-content: center;
    }
    
    .templates-grid,
    .social-content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-ideas-grid {
        grid-template-columns: 1fr;
    }
    
    .link-container {
        flex-direction: column;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #calendar-container {
        padding: 0.5rem;
    }
    
    .fc-toolbar-title {
        font-size: 1rem;
    }
    
    .fc-button {
        padding: 0.375rem 0.75rem !important;
        font-size: 0.75rem !important;
    }
    
    .fc-daygrid-day-number {
        padding: 0.25rem !important;
        font-size: 0.875rem !important;
    }
}


/* Additional mobile breakpoints for stats grid */
@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 400px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* ===== COOKIE POLICY PAGE STYLES ===== */

.main-content {
    padding-top: 100px;
    min-height: 100vh;
    background: #f8f9fa;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.last-updated {
    color: #666;
    font-size: 1rem;
    font-style: italic;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    margin-bottom: 2rem;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: #6a1d58;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #e0f0ff;
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.policy-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul, .policy-section ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-section li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.policy-section a {
    color: #6a1d58;
    text-decoration: none;
    font-weight: 500;
}

.policy-section a:hover {
    color: #C99383;
    text-decoration: underline;
}

.cookie-type, .third-party-service, .extension-section, .management-section, .retention-section, .compliance-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #6a1d58;
}

.cookie-type h3, .third-party-service h3, .extension-section h3, .management-section h3, .retention-section h3, .compliance-section h3 {
    color: #6a1d58;
    margin-top: 0;
    margin-bottom: 1rem;
}

.note-box {
    background: #e8f4fd;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.note-box p {
    margin: 0;
    color: #0066cc;
}

.contact-info {
    background: #f0f8ff;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
    border: 1px solid #e0f0ff;
}

.contact-info p {
    margin: 0;
    line-height: 1.6;
}

.policy-footer {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
    border-top: 2px solid #e0f0ff;
}

.policy-footer p {
    margin: 0;
    color: #666;
    font-style: italic;
}

/* Mobile styles for cookie policy */
@media (max-width: 768px) {
    .main-content {
        padding-top: 80px;
    }
    
    .policy-header {
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 2rem 1rem;
        margin: 0 1rem 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .cookie-type, .third-party-service, .extension-section, .management-section, .retention-section, .compliance-section {
        padding: 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-content {
        padding: 1.5rem 0.75rem;
        margin: 0 0.5rem 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
}

/* ===== COMPREHENSIVE MOBILE OPTIMIZATION ===== */

/* Enhanced Mobile-First Responsive Design - Force Mobile Layout */
@media (max-width: 768px) {
    /* Force single column layout for features container on mobile */
    .technical-features .features-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .technical-features .features-container .feature-box {
        grid-column: 1 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 2rem 1.5rem !important;
        text-align: center !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        background: #f0f8ff !important;
        border: 1px solid #e0f0ff !important;
        transition: all 0.3s ease !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        min-height: 180px !important;
        height: 100% !important;
    }
    
    .technical-features .features-container .feature-box.mindset-development {
        grid-column: 1 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    .technical-features .features-container .feature-box:nth-child(5),
    .technical-features .features-container .feature-box:nth-child(6),
    .technical-features .features-container .feature-box:nth-child(7) {
        grid-column: 1 !important;
    }
}

/* Enhanced Mobile-First Responsive Design */
@media (max-width: 768px) {
    /* Base mobile improvements */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    body {
        font-size: 16px;
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Mobile Navigation Enhancement */
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateX(0);
    }
    
    .nav-menu a {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(106, 29, 88, 0.1);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        color: #421237;
    }
    
    .nav-menu a:hover {
        background: rgba(201, 147, 131, 0.1);
        color: #421237;
    }
    
    /* Header improvements */
    .header {
        padding: 1rem;
        position: sticky;
        top: 0;
        z-index: 999;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav {
        padding: 0;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .header .logo {
        font-size: 1.4rem;
        font-weight: 700;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    /* Hero section mobile optimization */
    .hero {
        padding: 2rem 0 3rem;
        min-height: 80vh;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding: 2rem 1rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        color: #666;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn-large {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 56px;
        border-radius: 12px;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 2rem;
    }
    
    .hero-feature {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
        border-radius: 25px;
        background: rgba(201, 147, 131, 0.1);
        border: 1px solid rgba(201, 147, 131, 0.2);
    }
    
    /* Section improvements */
    .section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .section h2,
    .section h3,
    .section p {
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 2rem;
        color: #666;
    }
    
    /* Ensure all containers are centered on mobile */
    .container {
        text-align: center;
    }
    
    .container > * {
        text-align: center;
    }
    
    /* Feature section mobile layout */
    .feature-section .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 1rem;
    }
    
    .feature-box {
        padding: 2rem 1.5rem;
        text-align: center;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Technical Features - Built for Modern Job Seekers section */
    .technical-features {
        padding: 3rem 0;
    }
    
    .technical-features h2,
    .technical-features p {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .technical-features p {
        margin-bottom: 2rem;
        color: #666;
    }
    
    .features-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Reset all feature box positioning for mobile */
    .features-container .feature-box {
        grid-column: 1 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 2rem 1.5rem !important;
        text-align: center !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        background: #f0f8ff !important;
        border: 1px solid #e0f0ff !important;
        transition: all 0.3s ease !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        min-height: 180px !important;
        height: 100% !important;
    }
    
    /* Override any specific positioning for mobile */
    .features-container .feature-box.mindset-development {
        grid-column: 1 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    .features-container .feature-box:nth-child(5),
    .features-container .feature-box:nth-child(6),
    .features-container .feature-box:nth-child(7) {
        grid-column: 1 !important;
    }
    
    /* Document Library section mobile responsiveness */
    .feature-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .feature-section .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .feature-content {
        text-align: center;
        order: 1;
    }
    
    .feature-content h2,
    .feature-content p {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .feature-content p {
        margin-bottom: 2rem;
        color: #666;
    }
    
    .feature-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .feature-list li {
        padding: 0.75rem 0;
        font-size: 0.95rem;
        color: #666;
    }
    
    .feature-visual {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .document-manager {
        background: white;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        max-width: 400px;
        width: 100%;
    }
    
    .doc-header {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .doc-header i {
        font-size: 1.5rem;
        color: #6a1d58;
    }
    
    .doc-header span {
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
    }
    
    .doc-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .doc-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        transition: all 0.3s ease;
    }
    
    .doc-item:hover {
        background: #e9ecef;
        transform: translateY(-2px);
    }
    
    .doc-item i {
        font-size: 1.25rem;
        color: #6a1d58;
    }
    
    .doc-item span {
        font-size: 0.9rem;
        color: #333;
        font-weight: 500;
    }
    
    /* Dashboard Preview Mobile Styling */
    .dashboard-preview {
        background: white;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }
    
    .dashboard-header {
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .dashboard-header h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #6a1d58;
        margin: 0;
    }
    
    .dashboard-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        text-align: center;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
    }
    
    .stat-number {
        display: block;
        font-size: 1.8rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        color: #666;
        font-weight: 500;
    }
    
    /* Calendar Preview Mobile Styling */
    .calendar-preview {
        background: white;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }
    
    .calendar-header {
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .calendar-header h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #6a1d58;
        margin: 0;
    }
    
    .calendar-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .calendar-day {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        transition: all 0.3s ease;
    }
    
    .calendar-day:hover {
        background: #e9ecef;
        transform: translateY(-2px);
    }
    
    .day-number {
        font-size: 1.5rem;
        font-weight: bold;
        color: #6a1d58;
        min-width: 40px;
        text-align: center;
    }
    
    .calendar-event {
        flex: 1;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 500;
        color: white;
    }
    
    .calendar-event.interview {
        background: #28a745;
    }
    
    .calendar-event.deadline {
        background: #dc3545;
    }
    
    .calendar-event.followup {
        background: #6f42c1;
    }
    
    .features-container .feature-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(106, 29, 88, 0.15);
        border-color: #6a1d58;
    }
    
    .features-container .feature-box i {
        font-size: 2.5rem;
        color: #6a1d58;
        margin-bottom: 1rem;
    }
    
    .features-container .feature-box h3 {
        color: #333;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .features-container .feature-box p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }
    
    /* Value proposition section mobile centering */
    .value-proposition {
        padding: 3rem 0;
        text-align: center;
    }
    
    .value-proposition h2,
    .value-proposition p {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .value-proposition p {
        margin-bottom: 2rem;
        color: #666;
    }
    
    .value-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .value-item {
        text-align: center;
        padding: 2rem 1.5rem;
        background: #f8f9fa;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .value-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .value-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #333;
    }
    
    .value-item p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }
    
    /* Testimonials section mobile centering */
    .testimonials {
        padding: 3rem 0;
        text-align: center;
    }
    
    .testimonials h2,
    .testimonials p {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .testimonials p {
        margin-bottom: 2rem;
        color: #666;
    }
    
    .testimonial-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .testimonial-card {
        text-align: center;
        padding: 2rem 1.5rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* How it works section mobile centering */
    .how-it-works {
        padding: 3rem 0;
        text-align: center;
    }
    
    .how-it-works h2,
    .how-it-works p {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .how-it-works p {
        margin-bottom: 2rem;
        color: #666;
    }
    
    .steps-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .step {
        text-align: center;
        padding: 2rem 1.5rem;
        background: #f8f9fa;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #C99383, #d8b2a7);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        margin: 0 auto 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #333;
    }
    
    .step-content p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }
    
    /* CTA section mobile centering */
    .cta-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .cta-section h2,
    .cta-section p {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .cta-section p {
        margin-bottom: 2rem;
        color: #666;
    }
    
    .cta-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Demo section mobile centering */
    .demo-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .demo-section h2,
    .demo-section p {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .demo-section p {
        margin-bottom: 2rem;
        color: #666;
    }
    
    .demo-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Works content mobile layout */
    .works-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 1rem;
    }
    
    /* Pricing cards mobile optimization */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 1rem;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .price {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .features-list {
        margin-bottom: 2rem;
    }
    
    .features-list li {
        padding: 0.75rem 0;
        font-size: 0.95rem;
    }
    
    .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 8px;
    }
    
    /* Footer mobile layout */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 1rem 2rem;
        text-align: center;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-brand p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-links h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links ul {
        gap: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }
    
    .footer-social {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-social a {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Touch improvements */
    .btn, .btn-primary, .btn-outline, .btn-large {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Form improvements */
    input, select, textarea {
        font-size: 16px !important;
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    /* Modal improvements */
    .modal-content {
        margin: 5% auto;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Stats grid mobile optimization */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Tablet and medium screens - 2 columns */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 2rem;
        align-items: stretch;
    }
    
    .features-container .feature-box.mindset-development {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto 2rem;
        min-height: 180px;
    }
    
    .features-container .feature-box {
        min-height: 200px;
        height: 100%;
    }
}

/* Small tablets and large phones - 2 columns */
@media (max-width: 768px) and (min-width: 641px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
        align-items: stretch;
    }
    
    .features-container .feature-box.mindset-development {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto 2rem;
        min-height: 180px;
    }
    
    .features-container .feature-box {
        min-height: 180px;
        height: 100%;
    }
}

/* Medium tablets - 2 columns with better spacing */
@media (max-width: 900px) and (min-width: 769px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
        align-items: stretch;
    }
    
    .features-container .feature-box.mindset-development {
        grid-column: 1 / -1;
        max-width: 450px;
        margin: 0 auto 2rem;
        min-height: 180px;
    }
    
    .features-container .feature-box {
        min-height: 200px;
        height: 100%;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-box {
        padding: 1.5rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Enhanced mobile centering for small screens */
    .features-container,
    .value-grid,
    .testimonial-grid,
    .steps-container {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .features-container .feature-box,
    .value-item,
    .testimonial-card,
    .step {
        padding: 1.5rem 1rem;
    }
    
    .features-container .feature-box i {
        font-size: 2rem;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Document Library mobile improvements */
    .document-manager {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .doc-grid {
        gap: 0.75rem;
    }
    
    .doc-item {
        padding: 0.75rem;
    }
    
    .doc-item i {
        font-size: 1.1rem;
    }
    
    .doc-item span {
        font-size: 0.85rem;
    }
    
    /* Dashboard and Calendar Mobile Improvements for Small Screens */
    .dashboard-preview,
    .calendar-preview {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .calendar-grid {
        gap: 0.75rem;
    }
    
    .calendar-day {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .day-number {
        font-size: 1.3rem;
        min-width: 35px;
    }
    
    .calendar-event {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero .container {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .modal-content {
        margin: 2% auto;
        max-height: 96vh;
    }
}

 
 /* Form Messages */
.form-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background-color: #d4edda;
    border-left-color: #28a745;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    border-left-color: #dc3545;
    color: #721c24;
}

.form-message.info {
    background-color: #d1ecf1;
    border-left-color: #17a2b8;
    color: #0c5460;
}

.message-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.message-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

/* Status badge styles */
.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.approved {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-badge.denied {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-badge.pending {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* Help & Support Page Styles */
.help-support-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.help-content {
    max-width: 1000px;
    margin: 0 auto;
}

.help-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a0716;
    margin-bottom: 1rem;
}

.help-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Support Options */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: stretch;
}

.support-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.support-icon {
    font-size: 3rem;
    color: #C99383;
    margin-bottom: 1rem;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a0716;
}

.support-card p {
    margin-bottom: 1rem;
    color: #666;
}

.support-card .btn {
    margin-top: auto;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a0716;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

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

.faq-question h3 {
    font-size: 1.25rem;
    margin: 0;
    color: #1a0716;
}

.faq-question i {
    color: #C99383;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    background: #f8f9fa;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background: #f8f9fa;
}

/* Contact Form Section */
.contact-form-section {
    margin-bottom: 4rem;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1a0716;
}

.contact-form-section p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.support-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.support-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.support-form .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a0716;
}

.support-form .form-label.required::after {
    content: " *";
    color: #e74c3c;
}

.support-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.support-form .form-control:focus {
    outline: none;
    border-color: #C99383;
    box-shadow: 0 0 0 3px rgba(201, 147, 131, 0.1);
}

.support-form .form-control[readonly] {
    background-color: #f8f9fa;
    color: #666;
}

.support-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.support-form .checkbox-group {
    margin-top: 0.5rem;
}

.support-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.support-form .checkbox-label input[type="checkbox"] {
    margin-right: 0.75rem;
    margin-top: 0.1rem;
}

.support-form .checkbox-label a {
    color: #C99383;
    text-decoration: none;
}

.support-form .checkbox-label a:hover {
    text-decoration: underline;
}

.support-form .recaptcha-container {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.support-form .form-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Documentation Section */
.documentation-section {
    margin-bottom: 4rem;
}

.documentation-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a0716;
}

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

.doc-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.doc-icon {
    font-size: 2.5rem;
    color: #C99383;
    margin-bottom: 1rem;
}

.doc-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a0716;
}

.doc-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.doc-link {
    color: #C99383;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.doc-link:hover {
    color: #b88373;
}

.doc-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.doc-link:hover i {
    transform: translateX(3px);
}

/* Contact Information Section */
.contact-info-section {
    margin-bottom: 4rem;
}

.contact-info-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a0716;
}

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

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    color: #C99383;
    margin-bottom: 1rem;
}

.contact-method h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a0716;
}

.contact-method p {
    margin-bottom: 1rem;
    color: #666;
}

.contact-method a {
    color: #C99383;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness for Help & Support */
@media (max-width: 768px) {
    .help-title {
        font-size: 2.5rem;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .support-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .docs-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .support-form {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* Guide Section Styles */
.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.guide-section {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.guide-section:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.guide-header {
    background: linear-gradient(135deg, #C99383 0%, #A67B5B 100%);
    color: white;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
    text-decoration: none;
    border: none;
    outline: none;
}

.guide-header:focus {
    outline: none;
}

.guide-header a {
    text-decoration: none;
    color: inherit;
}

.guide-header:hover {
    background: linear-gradient(135deg, #D4A689 0%, #B88B6B 100%);
}

.guide-header.active {
    background: linear-gradient(135deg, #A67B5B 0%, #8B6B47 100%);
}

.guide-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guide-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
}

.guide-title h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.guide-chevron {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.guide-content {
    display: none;
    padding: 2rem;
    background: white;
    border-top: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.guide-content.show {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.guide-content h4 {
    color: #C99383;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.guide-content h4:first-child {
    margin-top: 0;
}

.guide-content h5 {
    color: #A67B5B;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.guide-content p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.guide-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.guide-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.guide-content li {
    color: #444;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.guide-content ul li {
    list-style-type: disc;
}

.guide-content ol li {
    list-style-type: decimal;
}

.guide-content ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.guide-content ul ul li {
    list-style-type: circle;
    color: #666;
}

.pro-tip {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #C99383;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pro-tip strong {
    color: #C99383;
    font-weight: 600;
}

.pro-tip p {
    margin: 0;
    color: #444;
    line-height: 1.6;
}

/* Mobile Responsiveness for Guide Sections */
@media (max-width: 768px) {
    .guide-header {
        padding: 1rem 1.5rem;
    }
    
    .guide-title h3 {
        font-size: 1.2rem;
    }
    
    .guide-icon {
        font-size: 1.2rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .guide-content {
        padding: 1.5rem;
    }
    
    .guide-content h4 {
        font-size: 1.2rem;
    }
    
    .guide-content h5 {
        font-size: 1rem;
    }
    
    .pro-tip {
        padding: 1rem;
        margin: 1rem 0;
    }
}
