:root {
    --primary-color: #2E7D32;
    --primary-dark: #1B5E20;
    --secondary-color: #666;
    --accent-color: #4CAF50;
    --background-color: #f8f9fa;
    --surface-color: #ffffff;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e0e0e0;
    --border-radius: 12px;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --box-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

section {
    padding: 100px 0;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
}

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

/* Header */
.main-header {
    background-color: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 72px;
}

.main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.btn {
    padding: 12px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--box-shadow-lg);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: var(--surface-color);
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: var(--box-shadow-lg);
    z-index: 999;
}

.mobile-nav a {
    padding: 16px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav.active {
    display: flex;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.98) 0%, rgba(233, 236, 239, 0.98) 100%);
    padding: 160px 0 120px;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?w=1200&q=80') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: var(--text-color);
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-section .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 0 0 40px;
    line-height: 1.7;
}

.hero-cta {
    margin-bottom: 32px;
}

/* App Download Section */
.app-download-section {
    margin-top: 24px;
}

.footer-about .app-download-section {
    margin-top: 20px;
}

.app-download-text {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 12px;
    font-weight: 500;
}

.footer-about .app-download-text {
    color: #999;
}

.app-download-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-store-btn,
.google-play-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: #000;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #000;
}

.footer-about .app-store-btn,
.footer-about .google-play-btn {
    background-color: #2a2a2a;
    border-color: #2a2a2a;
    padding: 8px 16px;
}

.app-store-btn:hover,
.google-play-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.footer-about .app-store-btn:hover,
.footer-about .google-play-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.app-store-btn svg,
.google-play-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer-about .app-store-btn svg,
.footer-about .google-play-btn svg {
    width: 20px;
    height: 20px;
}

.app-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-store-label {
    font-size: 0.65rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.app-store-name {
    font-size: 0.95rem;
    font-weight: 600;
}

/* How It Works */
.how-it-works-section {
    background-color: var(--surface-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    text-align: center;
}

.step {
    padding: 30px 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background-color: var(--background-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: var(--surface-color);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-lg);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.feature-item h4 {
    margin: 0 0 12px 0;
    color: var(--text-color);
    font-size: 1.15rem;
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--surface-color);
}

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

.plan {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 48px 36px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-lg);
}

.plan.popular {
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow-lg);
    position: relative;
}

.plan.popular::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.plan .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0;
}

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

.plan ul li {
    margin-bottom: 16px;
    color: var(--text-color);
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.plan ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.plan ul li.disabled {
    color: var(--text-light);
    opacity: 0.5;
}

.plan ul li.disabled::before {
    content: "−";
    color: var(--text-light);
}

.custom-plan-note {
    text-align: center;
    margin-top: 48px;
    font-size: 1.125rem;
    color: var(--text-light);
}

.custom-plan-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.custom-plan-note a:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?w=1200&q=80') center/cover;
    opacity: 0.1;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-section h2 {
    color: white;
    margin-bottom: 48px;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.testimonial-card blockquote {
    font-size: 1.5rem;
    font-style: italic;
    border: none;
    padding: 0;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-author-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.testimonial-author-title {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    background-color: var(--background-color);
}

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

.faq-item {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 28px 32px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--box-shadow);
}

.faq-question {
    margin: 0;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    margin-top: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Demo Request Section */
.demo-section {
    background-color: var(--surface-color);
}

.demo-section-alt {
    padding: 40px 0;
    border-top: 2px solid var(--border-color);
    margin-top: 60px;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    text-align: left;
}

.demo-text h2 {
    text-align: left;
    margin-bottom: 24px;
}

.demo-text .section-subtitle {
    text-align: left;
    margin: 0 0 40px 0;
    max-width: 100%;
}

.demo-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--box-shadow-lg);
    transition: transform 0.3s;
}

.demo-image img:hover {
    transform: scale(1.02);
}

.demo-form {
    max-width: 540px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-form input {
    padding: 16px 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.demo-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

/* Zoho Form Container */
.zoho-form-container {
    width: 100%;
    margin: 0;
    display: block;
}

.zoho-form-container iframe {
    width: 100% !important;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 60px 0 40px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand .logo-img {
    width: 36px;
    height: 36px;
}

.footer-brand .logo-text {
    color: white;
    font-size: 1.25rem;
}

.footer-description {
    color: #999;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-section h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

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

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 32px;
    text-align: center;
    color: #666;
}

/* Documentation Pages Layout */
.docs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 100px auto 80px;
    padding: 0 24px;
}

/* Sidebar Styles */
.docs-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 24px 0;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.sidebar-header {
    padding: 0 24px 20px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-header h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
}

.sidebar-link {
    padding: 12px 24px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-link svg {
    flex-shrink: 0;
}

/* Documentation Visual Enhancements */
.section-icon-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.section-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.section-icon-header h2 {
    margin: 0;
    border: none;
    padding: 0;
}

.info-box {
    background: #f0f7f1;
    border: 1px solid #c8e6c9;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    display: flex;
    gap: 16px;
}

.info-box.success {
    background: #e8f5e9;
    border-color: #81c784;
}

.info-box-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.info-box ol,
.info-box ul {
    margin-top: 12px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(76, 175, 80, 0.05));
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.highlight-box h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 16px 0;
}

.feature-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-list-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-list-icon.warning {
    background: #d32f2f;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.workflow-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.3s;
}

.workflow-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow);
    transform: translateY(-2px);
}

.workflow-number {
    position: absolute;
    top: -12px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.workflow-card h4 {
    margin: 0 0 12px 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.workflow-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.sidebar-link:hover {
    background-color: rgba(46, 125, 50, 0.05);
    color: var(--primary-color);
}

.sidebar-link.active {
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

/* Documentation Main Content */
.docs-main {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 48px;
}

.docs-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.docs-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.docs-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.last-updated {
    color: #888;
    font-style: italic;
    margin-bottom: 24px;
    display: block;
    font-size: 0.95rem;
}

.docs-section {
    margin-top: 60px;
    margin-bottom: 32px;
    padding: 0;
    scroll-margin-top: 100px;
}

.docs-section:last-of-type {
    margin-bottom: 0;
}

.docs-section-intro {
    margin-top: 0;
}

.quote-alt {
    font-size: 1.2rem;
    font-style: italic;
    border-left: none;
    padding: 0;
    color: var(--text-color);
}

.docs-section>*:last-child {
    margin-bottom: 0;
}

.docs-section h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-align: left;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.docs-section h3 {
    font-size: 1.25rem;
    margin: 20px 0 12px;
    color: var(--text-color);
}

.docs-section p,
.docs-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.docs-section ul,
.docs-section ol {
    padding-left: 28px;
    margin-bottom: 16px;
}

.docs-section li {
    margin-bottom: 8px;
}

.step-box {
    background: #f9f9f9;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.step-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.code-block {
    background: #eee;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #333;
    font-size: 0.95em;
}

.legal-intro {
    background-color: rgba(46, 125, 50, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 28px;
    border-left: 4px solid var(--primary-color);
}

.contact-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-box p {
    margin: 0;
}

.contact-box a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-image {
        order: -1;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .docs-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .docs-sidebar {
        position: relative;
        top: auto;
        margin-bottom: 24px;
        max-height: none;
    }

    .docs-main {
        padding: 32px 24px;
    }

    /* Demo Section Mobile */
    .demo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .demo-text h2 {
        text-align: center;
    }

    .demo-text .section-subtitle {
        text-align: center;
    }

    .demo-image {
        display: none;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

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

    .hero-tagline {
        font-size: 1.25rem;
    }

    .testimonial-card blockquote {
        font-size: 1.25rem;
    }

    .app-download-buttons {
        flex-direction: column;
    }

    .docs-header h1 {
        font-size: 2.25rem;
    }

    .docs-section h2 {
        font-size: 1.5rem;
    }

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

    .section-icon-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-box {
        flex-direction: column;
    }

    /* Mobile header adjustments */
    .main-header {
        height: auto;
        padding: 12px 0;
    }

    .main-header nav {
        flex-wrap: wrap;
    }

    .nav-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Demo Section Mobile */
    .demo-section {
        padding: 60px 0;
    }

    .demo-content {
        gap: 32px;
    }

    .zoho-form-container iframe {
        min-height: 800px;
    }
}

@media (max-width: 640px) {

    .app-store-btn,
    .google-play-btn {
        width: 100%;
        justify-content: center;
    }

    /* Further mobile header adjustments */
    .logo-text {
        font-size: 1.25rem;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .nav-buttons .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .demo-text h2 {
        font-size: 1.75rem;
    }
}

/* Toast Notification */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: #333;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 350px;
    font-size: 0.95rem;
    line-height: 1.5;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 480px) {
    .toast-container {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .toast {
        max-width: 100%;
    }
}

/* Print Styles */
@media print {

    /* Hide unneeded elements */
    .main-header,
    .mobile-nav,
    .docs-sidebar,
    .footer-brand,
    .footer-section,
    .footer-bottom,
    .toast-container,
    #download-pdf-btn {
        display: none !important;
    }

    /* Reset layout for print */
    .docs-layout {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .docs-main {
        border: none !important;
        padding: 0 !important;
        background: transparent !important;
    }

    body {
        background-color: white !important;
        color: black !important;
        font-size: 12pt;
    }

    .container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Clean up sections */
    .docs-section {
        page-break-inside: avoid;
        margin-top: 20px;
    }

    h1,
    h2,
    h3 {
        color: black !important;
        page-break-after: avoid;
    }

    a {
        text-decoration: none !important;
        color: black !important;
    }
}

/* ========================================
HARDWARE PAGE STYLES
Add these styles to your existing style.css file
======================================== */

/* Hardware Page Styles */
.hardware-hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 160px 0 100px;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.hardware-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1558346490-a72e53ae2d4f?w=1200&q=80') center/cover;
    opacity: 0.1;
}

.hardware-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hardware-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: white;
}

.hardware-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Tier Sections */
.hardware-tier-section {
    padding: 100px 0;
    background-color: var(--background-color);
}

.ai-tier-section {
    background-color: var(--surface-color);
}

.tier-header {
    text-align: center;
    margin-bottom: 60px;
}

.tier-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-1-badge {
    background-color: #e3f2fd;
    color: #1976d2;
}

.tier-2-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.tier-compatibility {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.tier-focus {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

/* AI Intro Box */
.ai-intro-box {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(76, 175, 80, 0.05));
    border-left: 4px solid var(--primary-color);
    padding: 32px;
    margin-bottom: 60px;
    border-radius: var(--border-radius);
}

.ai-intro-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    color: var(--text-color);
}

/* Hardware Grid */
.hardware-slider-container {
    position: relative;
    width: 100%;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

/* Slider Functionality for Larger Screens */
@media (min-width: 993px) {
    .hardware-slider {
        display: flex;
        overflow-x: hidden;
        scroll-behavior: smooth;
        gap: 32px;
        padding: 10px 0;
    }

    .hardware-slider .hardware-card {
        flex: 0 0 calc(50% - 16px);
        min-width: calc(50% - 16px);
    }

    .slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: white;
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        color: var(--primary-color);
    }

    .slider-nav:hover {
        background-color: var(--primary-color);
        color: white;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .slider-nav:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .slider-nav:disabled:hover {
        background-color: white;
        color: var(--primary-color);
    }

    .slider-prev {
        left: -24px;
    }

    .slider-next {
        right: -24px;
    }
}

/* Hide slider navigation on smaller screens */
@media (max-width: 992px) {
    .slider-nav {
        display: none;
    }
}

.hardware-card {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 36px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.hardware-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-lg);
}

.featured-card {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, rgba(46, 125, 50, 0.02), var(--surface-color));
}

.hardware-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ai-icon {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
}

.hardware-card h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 16px;
}

.hardware-intro {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-item {
    padding-left: 0;
}

.spec-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1rem;
}

.spec-item p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.7;
}

/* Checklist Section */
.checklist-section {
    background-color: var(--surface-color);
    padding: 100px 0;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.checklist-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background-color: var(--background-color);
    padding: 28px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.checklist-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.checklist-item h4 {
    margin: 0 0 8px 0;
    color: var(--text-color);
    font-size: 1.15rem;
}

.checklist-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Fulfillment Section */
.fulfillment-section {
    background-color: var(--background-color);
    padding: 100px 0;
}

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

.fulfillment-card {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 48px;
    border: 2px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.fulfillment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-lg);
}

.recommended-card {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, rgba(46, 125, 50, 0.03), var(--surface-color));
}

.recommended-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fulfillment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(76, 175, 80, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-color);
}

.fulfillment-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-color);
}

.fulfillment-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.benefit-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-color);
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.note-box {
    background-color: rgba(255, 152, 0, 0.1);
    border-left: 4px solid #ff9800;
    padding: 16px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: left;
}

.note-box strong {
    display: block;
    color: #e65100;
    margin-bottom: 8px;
}

.note-box p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

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

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

/* Hardware CTA Section */
.hardware-cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hardware-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1558346490-a72e53ae2d4f?w=1200&q=80') center/cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.hardware-cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hardware-cta-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 32px;
}

/* Responsive Hardware Page */
@media (max-width: 992px) {
    .hardware-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .hardware-hero-content h1 {
        font-size: 2.25rem;
    }

    .hardware-subtitle {
        font-size: 1.1rem;
    }

    .hardware-tier-section {
        padding: 60px 0;
    }

    .hardware-card {
        padding: 28px;
    }

    .fulfillment-card {
        padding: 32px 24px;
    }

    .hardware-cta-section h2 {
        font-size: 2rem;
    }

    .checklist-item {
        padding: 20px;
    }
}

/* ========================================
   SECURITY PARTNERS PAGE STYLES
   Add these styles to your existing style.css file
   ======================================== */

/* Partners Hero Section */
.partners-hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 160px 0 100px;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.partners-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1200&q=80') center/cover;
    opacity: 0.1;
}

.partners-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.certification-badge-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.partners-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: white;
}

.partners-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 32px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Why Partner Section */
.why-partner-section {
    padding: 100px 0;
    background-color: var(--background-color);
}

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

.benefit-card {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--primary-color);
}

.benefit-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(76, 175, 80, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 16px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Certification Section */
.certification-section {
    padding: 100px 0;
    background-color: var(--surface-color);
}

.certification-header {
    text-align: center;
    margin-bottom: 60px;
}

.certification-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.certification-duration {
    font-size: 1.15rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 16px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.module-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 32px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.module-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow);
}

.module-header {
    margin-bottom: 20px;
}

.module-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.module-card h3 {
    font-size: 1.35rem;
    color: var(--text-color);
    margin-bottom: 16px;
}

.module-card>p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.module-topics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-topics li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.module-topics li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.training-note {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(76, 175, 80, 0.05));
    border-left: 4px solid var(--primary-color);
    padding: 24px 28px;
    margin-top: 48px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 20px;
}

.training-note svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.training-note p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-color);
}

/* Investment Section */
.investment-section {
    padding: 100px 0;
    background-color: var(--background-color);
}

.pricing-container {
    max-width: 700px;
    margin: 0 auto;
}

.investment-card {
    background: linear-gradient(to bottom, var(--surface-color), rgba(248, 249, 250, 0.5));
    border-radius: var(--border-radius);
    padding: 48px;
    border: 3px solid var(--primary-color);
    box-shadow: var(--box-shadow-lg);
    position: relative;
}

.investment-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 8px 32px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.investment-price {
    text-align: center;
    margin: 32px 0 40px;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.investment-includes {
    margin-bottom: 32px;
}

.investment-includes h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-color);
    line-height: 1.6;
}

.includes-list svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 2px;
}

.investment-guarantee {
    background: rgba(46, 125, 50, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.investment-guarantee svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.investment-guarantee h5 {
    margin: 0 0 8px 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.investment-guarantee p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.investment-card .btn {
    width: 100%;
    justify-content: center;
}

/* Partners CTA Section */
.partners-cta-section {
    padding: 100px 0;
    background-color: var(--surface-color);
}

.partners-cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.partners-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.partners-cta-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 48px;
}

.contact-info {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(76, 175, 80, 0.05));
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 4px;
}

.contact-item h4 {
    margin: 0 0 8px 0;
    color: var(--text-color);
    font-size: 1.2rem;
}

.email-link {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
}

.email-link:hover {
    text-decoration: underline;
}

.contact-note {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

.additional-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.link-button {
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.link-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1200&q=80') center/cover;
    opacity: 0.05;
}

.quote-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    opacity: 0.3;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.quote-section blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

.quote-section blockquote p {
    font-size: 2rem;
    line-height: 1.6;
    color: white;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

/* Responsive Partners Page */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .partners-hero-content h1 {
        font-size: 2.25rem;
    }

    .partners-subtitle {
        font-size: 1.1rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .benefit-card {
        padding: 32px 24px;
    }

    .investment-card {
        padding: 32px 24px;
    }

    .amount {
        font-size: 3rem;
    }

    .quote-section blockquote p {
        font-size: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .additional-links {
        flex-direction: column;
    }

    .link-button {
        width: 100%;
        text-align: center;
    }

    .training-note {
        flex-direction: column;
        text-align: center;
    }

    .investment-guarantee {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .certification-badge-large {
        width: 64px;
        height: 64px;
    }

    .partners-hero-content h1 {
        font-size: 2rem;
    }

    .partners-cta-section h2 {
        font-size: 2rem;
    }

    .quote-section blockquote p {
        font-size: 1.25rem;
    }
}