:root {
    --primary-color: #18a87e;
    --primary-dark: #0c7358;
    --secondary-color: #697a72;
    --accent-color: #4dd4a8;
    --background-color: #f4f7f5;
    --surface-color: #ffffff;
    --text-color: #0e1712;
    --text-light: #697a72;
    --border-color: #dde5e0;
    --border-radius: 16px;
    --box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.05);
    --box-shadow-lg: 0 8px 28px rgba(0,0,0,0.10), 0 20px 48px rgba(0,0,0,0.07);
}

* {
    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: 72px 0;
}

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

h1 {
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

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

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

.bg-surface {
    background-color: var(--surface-color);
}

.recurring-fee-note {
    margin-top: -20px;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* 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;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.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: 999px;
    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-ghost {
    background-color: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}

.btn-ghost:hover {
    background-color: var(--primary-color);
    color: white;
    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 .btn {
    border-bottom: none;
    padding: 12px 24px;
    align-self: flex-start;
    margin-top: 6px;
    width: auto;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(160deg, #091a12 0%, #0f2b1f 100%);
    padding: 120px 0 80px;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(24, 168, 126, 0.18) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.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: 520px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.06);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image img:hover {
    transform: scale(1.025) translateY(-4px);
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    color: #ffffff;
}

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

.hero-section .subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.68);
    margin: 0 0 40px;
    line-height: 1.75;
}

.hero-section .btn-ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
}

.hero-section .btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: none;
    transform: translateY(-1px);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    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;
}

/* Solutions Section */
.solutions-section {
    background-color: var(--background-color);
    padding: 72px 0;
}

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

.solution-card {
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

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

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(29, 158, 117, 0.08), rgba(29, 158, 117, 0.04));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-color);
}

.solution-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.solution-card 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(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

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

.feature-item:hover {
    transform: translateY(-3px);
    border-color: rgba(24, 168, 126, 0.35);
    box-shadow: 0 0 0 3px rgba(24, 168, 126, 0.08), var(--box-shadow-lg);
}

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

.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 — scrolling ticker */
.testimonials-section {
    background: linear-gradient(160deg, #091a12 0%, #0f2b1f 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0 72px;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
    margin-bottom: 48px;
}

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

.testimonials-track-wrapper {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: testimonials-scroll 48s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes testimonials-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-slide {
    width: 360px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testimonial-role-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 999px;
    width: fit-content;
}

.badge-manager { background: rgba(24, 168, 126, 0.2); color: #4dd4a8; }
.badge-resident { background: rgba(99, 179, 237, 0.2); color: #90cdf4; }
.badge-partner  { background: rgba(246, 173, 85, 0.2);  color: #f6ad55; }
.badge-guard    { background: rgba(252, 129, 74, 0.15); color: #fc814a; }

.testimonial-stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 1;
}

.testimonial-slide blockquote {
    font-size: 0.925rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.72;
    margin: 0;
    border: none;
    padding: 0;
    flex: 1;
}

.testimonial-slide-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.testimonial-slide-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.testimonial-slide-place {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

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

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

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

.faq-item:hover {
    border-color: rgba(24, 168, 126, 0.3);
    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 {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    color: var(--text-light);
    line-height: 1.7;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.3s ease;
}
.faq-answer.open {
    max-height: 600px;
    margin-top: 16px;
}

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

.demo-section-alt {
    padding: 80px 0;
    background: linear-gradient(160deg, #091a12 0%, #0f2b1f 100%);
    position: relative;
    overflow: hidden;
}

.demo-section-alt::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(24, 168, 126, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

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

.demo-section-alt h2 {
    color: white;
}

.demo-section-alt .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
}

.demo-section-alt .btn-ghost {
    border-color: rgba(255, 255, 255, 0.45);
    color: rgba(255, 255, 255, 0.85);
}

.demo-section-alt .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
}

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

.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(29, 158, 117, 0.15);
}

/* 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;
}

.footer-bottom a {
    text-decoration: none;
    color: inherit;
}

/* 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: #edf7f3;
    border: 1px solid #b8e0d2;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    display: flex;
    gap: 16px;
}

.info-box.success {
    background: #e1f5ee;
    border-color: #5DCAA5;
}

.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(29, 158, 117, 0.05), rgba(29, 158, 117, 0.02));
    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(29, 158, 117, 0.05);
    color: var(--primary-color);
}

.sidebar-link.active {
    background-color: rgba(29, 158, 117, 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 {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.legal-intro p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-intro p + p {
    margin-top: 12px;
}

.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.75rem;
    }

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

    .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: 60px;
        padding: 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: 2.25rem;
    }

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

    .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(160deg, #091a12 0%, #0f2b1f 100%);
    color: white;
    padding: 160px 0 100px;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.hardware-hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(24, 168, 126, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.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(29, 158, 117, 0.05), rgba(29, 158, 117, 0.02));
    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;
}

/* Hardware Interactive Selector */
.hw-interactive {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: flex-start;
}

.hw-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 100px;
}

.hw-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1.5px solid var(--border-color);
    background: var(--surface-color);
    cursor: pointer;
    text-align: left;
    transition: all 0.22s ease;
    width: 100%;
    color: var(--text-color);
}

.hw-tab:hover {
    border-color: var(--primary-color);
    background: rgba(24, 168, 126, 0.04);
}

.hw-tab.active {
    border-color: var(--primary-color);
    background: rgba(24, 168, 126, 0.07);
    box-shadow: 0 0 0 3px rgba(24, 168, 126, 0.1);
}

.hw-tab-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(24, 168, 126, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.22s;
}

.hw-tab.active .hw-tab-icon {
    background: var(--primary-color);
    color: white;
}

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

.hw-tab-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
}

.hw-tab-sub {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2px;
}

.hw-tab-chevron {
    color: var(--text-light);
    flex-shrink: 0;
    transition: color 0.22s;
}

.hw-tab.active .hw-tab-chevron {
    color: var(--primary-color);
}

.hw-detail {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hw-center {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: var(--surface-color);
    border-radius: 18px;
    border: 1.5px solid var(--border-color);
}

.hw-center-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(24, 168, 126, 0.1);
    border: 2px solid rgba(24, 168, 126, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.hw-center h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-color);
}

.hw-center p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.hw-bubbles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.hw-bubble {
    background: var(--surface-color);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 22px;
    animation: hw-bubble-in 0.32s ease both;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hw-bubble:hover {
    border-color: rgba(24, 168, 126, 0.4);
    box-shadow: 0 0 0 3px rgba(24, 168, 126, 0.07);
}

.hw-bubble-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.hw-bubble p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

@keyframes hw-bubble-in {
    from {
        opacity: 0;
        transform: scale(0.88) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 860px) {
    .hw-interactive {
        grid-template-columns: 1fr;
    }

    .hw-selector {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .hw-tab {
        flex-shrink: 0;
        min-width: 160px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px 16px;
    }

    .hw-tab-chevron {
        display: none;
    }

    .hw-bubbles {
        grid-template-columns: 1fr;
    }
}

/* 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: 64px 0 72px;
}

.fulfillment-section .section-subtitle {
    margin-bottom: 0;
}

.procurement-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0 56px;
    align-items: stretch;
    margin-top: 40px;
    max-width: 860px;
}

.procurement-divider {
    width: 1px;
    background: var(--border-color);
}

.procurement-option {
    padding: 4px 0;
    display: flex;
    flex-direction: column;
}

.procurement-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.procurement-option h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.procurement-option > p {
    color: var(--text-light);
    line-height: 1.65;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.procurement-option .btn {
    margin-top: auto;
    align-self: flex-start;
}

.procurement-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.procurement-list li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.procurement-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
}

.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(160deg, #091a12 0%, #0f2b1f 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hardware-cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(24, 168, 126, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.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;
    }

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

    .procurement-divider {
        width: 100%;
        height: 1px;
        margin: 40px 0;
    }

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

@media (max-width: 768px) {
    .hardware-hero-section {
        padding: 100px 0 60px;
    }

    .hardware-hero-content h1 {
        font-size: 2.25rem;
    }

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

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

    .hardware-card {
        padding: 28px;
    }

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

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

/* Guide / Documentation Page */
.guide-nav-bar {
    background: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 72px;
    z-index: 90;
}

.guide-nav {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.guide-nav::-webkit-scrollbar { display: none; }

.guide-nav-link {
    padding: 15px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

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

.guide-nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.guide-body {
    background: var(--background-color);
    padding: 72px 0 96px;
}

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

.guide-section {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
    scroll-margin-top: 130px;
}

.guide-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.guide-section-num {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.guide-section h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    text-align: left;
    border: none;
    padding: 0;
}

.guide-lead {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 32px;
}

.guide-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin: 0 0 14px;
}

.guide-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    counter-reset: guide-step;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guide-steps li {
    counter-increment: guide-step;
    display: flex;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    align-items: flex-start;
}

.guide-steps li::before {
    content: counter(guide-step);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(24, 168, 126, 0.12);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.guide-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guide-point {
    padding: 18px 22px;
    background: var(--surface-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s;
}

.guide-point:hover {
    border-color: rgba(24, 168, 126, 0.3);
}

.guide-point strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.guide-point p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
}

.guide-point-alert {
    border-left: 3px solid #d32f2f;
}

.guide-point-alert strong {
    color: #c62828;
}

.guide-callout {
    background: rgba(24, 168, 126, 0.06);
    border: 1px solid rgba(24, 168, 126, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 4px;
}

.guide-callout strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.guide-callout p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
}

.guide-entry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.guide-entry-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.guide-entry-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.guide-entry-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.guide-entry-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 640px) {
    .guide-entry-grid {
        grid-template-columns: 1fr;
    }

    .guide-section h2 {
        font-size: 1.3rem;
    }
}

/* Legal pages (Privacy Policy, Terms of Service) */
.legal-intro {
    padding: 28px 0 32px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.legal-intro p {
    font-size: 0.925rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.guide-section > p {
    font-size: 0.925rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-list li {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 18px;
    position: relative;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
    flex-shrink: 0;
}

.legal-contact {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 4px;
}

.legal-contact p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.9;
}

.legal-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* ---- Mobile fixes for new components ---- */
@media (max-width: 768px) {
    .guide-nav-bar {
        top: 60px;
    }

    .mobile-nav {
        top: 60px;
    }

    .guide-body {
        padding: 48px 0 64px;
    }

    .guide-section {
        padding-bottom: 28px;
        margin-bottom: 28px;
    }

    /* hw-center: tighter padding, stack icon above text */
    .hw-center {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    /* demo CTA buttons: full width when stacked */
    .demo-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .demo-cta-buttons .btn {
        text-align: center;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hardware-hero-section {
        padding: 90px 0 48px;
    }

    .hw-tab {
        min-width: 140px;
    }

    .guide-container {
        padding: 0 16px;
    }

    .legal-contact {
        padding: 16px 18px;
    }
}

/* ========================================
   SECURITY PARTNERS PAGE STYLES
   ======================================== */

/* Partners Hero Section */
.partners-hero-section {
    background: linear-gradient(160deg, #091a12 0%, #0f2b1f 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: -30%;
    right: -10%;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(24, 168, 126, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.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(29, 158, 117, 0.08), rgba(29, 158, 117, 0.04));
    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(29, 158, 117, 0.05), rgba(29, 158, 117, 0.02));
    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: 80px 0 40px;
    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: 40px 0 80px;
    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(29, 158, 117, 0.05), rgba(29, 158, 117, 0.02));
    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: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(29,158,117,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.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;
    }
}
/* ========================================
   PRICING ESTIMATOR & PARTNER HQ STYLES
   ======================================== */

.page-tabs { display: flex; gap: 6px; margin-bottom: 2rem; border-bottom: 1px solid var(--border-color); padding-bottom: 0.75rem; flex-wrap: wrap; }
.page-tab { padding: 8px 20px; font-size: 13px; border: 1px solid var(--border-color); border-radius: 8px; cursor: pointer; background: var(--surface-color); color: var(--text-light); transition: all .15s; font-weight: 500; }
.page-tab:hover { background: var(--background-color); }
.page-tab.active { background: #1a1a18; color: #fff; border-color: #1a1a18; }
.page-panel { display: none; }
.page-panel.active { display: block; }

.intro { font-size: 14px; color: var(--text-light); margin-bottom: 2rem; max-width: 680px; line-height: 1.7; text-align: left; }
.step-block { background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem; text-align: left; }
.step-label { font-size: 11px; font-weight: 700; color: #888780; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.step-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; color: var(--text-color); }
.step-sub { font-size: 14px; color: var(--text-light); margin-bottom: 1.25rem; line-height: 1.6; }

.toggle-row { display: flex; align-items: flex-start; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #f1f1f1; gap: 16px; }
.toggle-row:last-child { border-bottom: none; }
.toggle-left { flex: 1; text-align: left; }
.toggle-label { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; color: var(--text-color); }
.toggle-desc { font-size: 13px; color: var(--text-light); margin-top: 4px; line-height: 1.5; }

.plan-tag { font-size: 10px; background: #f1f1f1; color: #888780; border-radius: 4px; padding: 2px 8px; font-weight: 600; white-space: nowrap; text-transform: uppercase; }
.plan-tag.active { background: #E1F5EE; color: #085041; }
.plan-tag.included { background: #E1F5EE; color: #085041; }

.tog { position: relative; width: 40px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.tog input { opacity: 0; width: 0; height: 0; }
.tsl { position: absolute; cursor: pointer; inset: 0; background: #d3d1c7; border-radius: 20px; transition: .2s; }
.tsl:before { content: ''; position: absolute; width: 18px; height: 18px; left: 2px; bottom: 2px; background: #fff; border-radius: 50%; transition: .2s; }
input:checked + .tsl { background: #1D9E75; }
input:checked + .tsl:before { transform: translateX(18px); }
.tog-always .tsl { background: #1D9E75; pointer-events: none; }
.tog-always .tsl:before { transform: translateX(18px); }

.upgrade-hint { font-size: 13px; color: #633806; background: #FAEEDA; border-radius: 8px; padding: 12px 16px; margin-top: 1rem; display: none; line-height: 1.6; border-left: 4px solid #EF9F27; }

.slider-wrap { margin-bottom: 1rem; }
.slider-wrap label { font-size: 14px; color: var(--text-color); display: flex; justify-content: space-between; margin-bottom: 8px; font-weight: 500; }
.slider-wrap label span { font-weight: 700; color: var(--primary-color); font-size: 1.1rem; }
.slider-wrap input[type=range] { width: 100%; accent-color: var(--primary-color); height: 6px; border-radius: 3px; background: #e0e0e0; outline: none; }

.band-note { font-size: 13px; color: var(--text-light); margin-top: 1rem; padding: 12px 16px; background: #f1f1f1; border-radius: 8px; line-height: 1.6; border-left: 3px solid var(--primary-color); }
.cam-breakdown { margin-top: 1rem; display: none; background: #fafafa; padding: 1rem; border-radius: 8px; border: 1px solid var(--border-color); }
.cam-row { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; border-bottom: 1px solid #eee; color: var(--text-light); }
.cam-row:last-child { border-bottom: none; font-weight: 700; color: var(--text-color); padding-top: 10px; margin-top: 4px; border-top: 1px solid #ddd; }
.cam-row span:last-child { font-weight: 600; color: var(--text-color); }

.summary-card { background: #1a1a18; color: #fff; border-radius: 16px; padding: 2rem; margin-top: 2rem; box-shadow: var(--box-shadow-lg); }
.sum-title { font-size: 11px; color: #888780; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; font-weight: 700; }
.sum-line { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid #2c2c2a; }
.sln { font-size: 14px; color: #b4b2a9; }
.slv { font-size: 14px; font-weight: 600; color: #fff; }
.slv-hi { color: #5DCAA5; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; padding: 20px 0 0; margin-top: 10px; border-top: 1px solid #3a3a38; }
.st-label { font-size: 1.1rem; font-weight: 600; color: #fff; }
.st-val { font-size: 2rem; font-weight: 700; color: #5DCAA5; }
.sum-monthly { font-size: 14px; color: #888780; text-align: right; margin-top: 6px; }
.sum-unit { font-size: 13px; color: #888780; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #2c2c2a; line-height: 1.7; }
.sum-disclaimer { font-size: 11px; color: #666360; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid #2c2c2a; line-height: 1.6; }
.band-note-cta { color: var(--primary-dark); font-weight: 500; }
.band-note-cta a { color: var(--primary-color); text-decoration: underline; }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
@media(max-width:640px){ .features-grid { grid-template-columns: 1fr; } }
.fi { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid #f1f1f1; font-size: 13px; }
.fi:last-child { border-bottom: none; }
.fck { color: #1D9E75; font-size: 14px; flex-shrink: 0; margin-top: 2px; font-weight: 700; }
.fno { color: #d3d1c7; font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.fn { flex: 1; line-height: 1.5; color: var(--text-color); }
.fn-off { color: #b4b2a9; }

.payg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin-top: 1rem; }
.payg-card { border: 1px solid var(--border-color); border-radius: 12px; padding: 1.5rem; text-align: center; position: relative; background: #fafafa; }
.payg-card.best { border-color: #1D9E75; background: #fff; box-shadow: 0 4px 12px rgba(29, 158, 117, 0.1); }
.payg-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); font-size: 10px; font-weight: 700; background: #1D9E75; color: #fff; padding: 4px 12px; border-radius: 0 0 8px 8px; white-space: nowrap; text-transform: uppercase; }
.payg-save { font-size: 10px; font-weight: 700; background: #FAEEDA; color: #633806; padding: 4px 10px; border-radius: 6px; display: inline-block; margin-bottom: 8px; text-transform: uppercase; }
.payg-name { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text-color); }
.payg-price { font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; color: var(--primary-color); }
.payg-units { font-size: 13px; color: var(--text-light); }
.payg-rate { font-size: 11px; color: #999; margin-top: 6px; }

.cta { margin-top: 2rem; text-align: center; padding: 2.5rem; background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 16px; }
.cta p { font-size: 15px; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.7; }

.partner-hero { background: #1a1a18; color: #fff; border-radius: 16px; padding: 2rem; margin-bottom: 1.5rem; text-align: left; }
.partner-hero h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; color: #fff; }
.partner-hero p { font-size: 14px; color: #888780; line-height: 1.7; max-width: 680px; }

.plan-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-bottom: 2rem; }
.plan-card { background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: left; transition: all 0.3s; }
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--box-shadow-lg); }
.plan-card.featured { border: 2px solid #1D9E75; position: relative; }
.pct { font-size: 10px; font-weight: 700; color: #fff; display: inline-block; padding: 4px 12px; border-radius: 6px; margin-bottom: 1rem; text-transform: uppercase; }
.plan-card h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; color: var(--text-color); }
.pc-price { font-size: 2rem; font-weight: 700; margin: 16px 0 8px; color: var(--primary-color); }
.pc-sub { font-size: 14px; color: var(--text-light); margin-bottom: 1.5rem; }
.pc-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; padding: 6px 0; color: var(--text-light); line-height: 1.5; }
.pc-row .fck { font-size: 14px; color: #1D9E75; font-weight: 700; margin-top: 2px; }

.divider { height: 1px; background: var(--border-color); margin: 3rem 0; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 2rem; }
@media(max-width:640px){ .info-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 12px; padding: 1.5rem; text-align: left; }
.info-card h5 { font-size: 15px; font-weight: 600; margin-bottom: 10px; color: var(--text-color); }
.info-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.value-block { background: #f8f7f4; border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; text-align: left; }
.value-block h5 { font-size: 15px; font-weight: 600; margin-bottom: 1.25rem; color: var(--text-color); }
.value-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid #e8e6e0; font-size: 14px; gap: 16px; }
.value-row:last-child { border-bottom: none; }
.value-row span:first-child { color: var(--text-light); flex-shrink: 0; }
.value-row span:last-child { font-weight: 600; text-align: right; color: var(--text-color); }

/* Helper Classes to replace inline styles */
.text-left { text-align: left !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mt-32 { margin-top: 2rem !important; }

.pricing-teaser-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--background-color);
    padding: 48px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
}

.pricing-hero-section {
    padding-top: 140px;
    padding-bottom: 56px;
    background: var(--background-color);
}

/* Dark banner for simple inner page heroes (why-choose-us) */
.inner-hero-dark {
    padding-top: 140px;
    padding-bottom: 56px;
    background: linear-gradient(160deg, #091a12 0%, #0f2b1f 100%);
    position: relative;
    overflow: hidden;
}

.inner-hero-dark::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(24, 168, 126, 0.16) 0%, transparent 70%);
    pointer-events: none;
}

.inner-hero-dark h2 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.inner-hero-dark .intro {
    color: rgba(255, 255, 255, 0.68);
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.plan-tag-starter { background: #888780 !important; }
.plan-tag-popular { background: #1D9E75 !important; }
.plan-tag-enterprise { background: #1a1a18 !important; }

.pc-price-custom { font-size: 1.5rem !important; }

.value-block-highlight { background: #E1F5EE !important; }
.value-block-highlight h5 { color: #085041 !important; }
.value-row-highlight { color: #0F6E56 !important; }

.step-title-addon { font-size: 12px; font-weight: 400; color: #5f5e5a; margin-left: 4px; }
.plan-label-highlight { color: #1D9E75 !important; }
.plan-sublabel-text { font-size: 14px; color: var(--text-light); margin-bottom: 1.5rem; }


/* ========================================
   PREMIUM TRANSITIONS & ANIMATIONS
   ======================================== */

/* Header glass effect on scroll */
.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    border-bottom-color: transparent;
}

/* Scroll-triggered fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

/* Platform section */
.platform-section {
    background-color: var(--surface-color);
}
.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.platform-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 36px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.platform-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.35s ease;
}
.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-lg);
    border-color: rgba(29, 158, 117, 0.3);
}
.platform-card:hover::after {
    opacity: 1;
}
.platform-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}
.platform-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}
.platform-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }
}

/* Trusted / Partners section */
.trusted-section {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0;
}
.trusted-section h2 {
    margin-bottom: 48px;
}
.partner-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 36px 48px;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    min-width: 220px;
    transition: box-shadow 0.2s;
}
.partner-card:hover {
    box-shadow: var(--box-shadow-lg);
}
.partner-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}
.partner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.partner-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

@media (max-width: 600px) {
    .partner-card {
        width: 100%;
    }
}

/* Tech stack strip */
.stack-section {
    background-color: var(--background-color);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}
.stack-section p {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 20px;
}
.stack-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.stack-tag {
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 14px;
    letter-spacing: 0.02em;
    transition: all 0.2s;
}
.stack-tag:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Mobile nav transition */
.mobile-nav {
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    visibility: hidden;
    display: flex !important;
}
.mobile-nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

/* Nav link active underline */
.nav-links a {
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Partners page — modernised */
.p-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
}
.p-benefit {
    background: var(--surface-color);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.p-benefit:hover {
    border-color: rgba(24, 168, 126, 0.35);
    box-shadow: 0 0 0 4px rgba(24, 168, 126, 0.06);
}
.p-benefit-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 14px;
}
.p-benefit h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}
.p-benefit p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}
.p-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 44px;
}
.p-module {
    background: var(--background-color);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
}
.p-module-num {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.p-module h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}
.p-module > p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
}
.p-module-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.p-module-list li {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 7px 0 7px 18px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.p-module-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}
.p-module-list li:last-child {
    border-bottom: none;
}
.p-training-note {
    margin-top: 32px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}
.p-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 44px;
}
.p-compare-col {
    border-radius: 16px;
    padding: 28px 32px;
}
.p-compare-before {
    background: var(--surface-color);
    border: 1.5px solid var(--border-color);
}
.p-compare-after {
    background: rgba(24, 168, 126, 0.05);
    border: 1.5px solid rgba(24, 168, 126, 0.25);
}
.p-compare-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.p-compare-before .p-compare-label { color: var(--text-light); }
.p-compare-after .p-compare-label { color: var(--primary-color); }
.p-compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.p-compare-before .p-compare-list li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
}
.p-compare-before .p-compare-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--text-light);
}
.p-compare-after .p-compare-list li {
    font-size: 0.9rem;
    color: var(--text-color);
    padding-left: 20px;
    position: relative;
}
.p-compare-after .p-compare-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}
@media (max-width: 900px) {
    .p-benefit-grid,
    .p-modules-grid,
    .p-compare {
        grid-template-columns: 1fr;
    }
}

/* ── Partner plan tier cards ──────────────────────────────────────────────── */
.plan-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.plan-tier-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}
.plan-tier-card.is-featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}
.plan-tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.plan-tier-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}
.plan-tier-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}
.plan-tier-price {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}
.plan-tier-price .price-main {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
}
.plan-tier-price .price-period {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}
.plan-tier-price .price-annual {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 6px;
}
.plan-tier-limits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.plan-tier-limit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-color);
}
.plan-tier-limit::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}
.plan-tier-limit.unlimited::before {
    background: var(--primary-color);
}
@media (max-width: 900px) {
    .plan-tiers-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Training credits info block ─────────────────────────────────────────── */
.credits-info-box {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 36px 40px;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.credits-info-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}
.credits-info-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}
.credits-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.credits-steps li {
    display: flex;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-color);
    line-height: 1.5;
}
.credits-steps li span.step-num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
@media (max-width: 768px) {
    .credits-info-box {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }
}

/* ── Partners index landing (two tracks) ─────────────────────────────────── */
.partner-tracks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}
.partner-track-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-decoration: none;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.partner-track-card:hover {
    box-shadow: var(--box-shadow-lg);
    border-color: var(--primary-color);
}
.partner-track-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.35;
    line-height: 1;
}
.partner-track-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}
.partner-track-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}
.partner-track-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
}
.partner-track-cta::after {
    content: '→';
}
@media (max-width: 700px) {
    .partner-tracks {
        grid-template-columns: 1fr;
    }
    .partner-track-card {
        padding: 36px 28px;
    }
}

/* ── Academy page ────────────────────────────────────────────────────────── */
.academy-section {
    padding: 80px 0;
}
.academy-section + .academy-section {
    border-top: 1px solid var(--border-color);
}
.academy-section.bg-surface {
    background: var(--surface-color);
}
.academy-track-label {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.academy-how-it-works {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.academy-step {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px 20px;
}
.academy-step-num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.academy-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}
.academy-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 900px) {
    .academy-how-it-works {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .academy-how-it-works {
        grid-template-columns: 1fr;
    }
    .academy-section {
        padding: 56px 0;
    }
}
