/* FixHub Pro - Landing Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a73e8;
    --primary-dark: #1557b0;
    --secondary: #34a853;
    --text: #333;
    --text-light: #666;
    --background: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 14px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-success {
    background: var(--secondary);
    color: var(--white);
}

.btn-success:hover {
    background: #2d8f47;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    padding: 100px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text);
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Phone Mockup */
.phone-mockup {
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    width: 300px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.phone-screen {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    height: 550px;
}

.app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header-preview {
    background: var(--primary);
    color: var(--white);
    padding: 40px 20px 20px;
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-logo-preview {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.app-content-preview {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-card-preview {
    background: var(--background);
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--background);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--background);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* For Providers */
.for-providers {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.provider-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.provider-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.provider-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.provider-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.provider-benefits li {
    padding: 10px 0;
    font-size: 1.05rem;
}

.for-providers .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.for-providers .btn-primary:hover {
    background: var(--background);
}

.provider-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: var(--text);
    max-width: 300px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.provider-avatar {
    font-size: 4rem;
    margin-bottom: 20px;
}

.provider-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.provider-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.provider-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

/* Trust Section */
.trust {
    padding: 100px 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.trust-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.trust-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: var(--background);
}

.reviews-summary {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-average {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.reviews-average-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text);
}

.reviews-average-stars {
    font-size: 1.5rem;
}

.reviews-average-count {
    font-size: 1rem;
    color: var(--text-light);
}

.review-star {
    color: #ddd;
    font-size: 1.2rem;
}

.review-star.filled {
    color: #ffc107;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.reviews-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    padding: 40px 0;
}

.review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-card-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-card-meta {
    flex: 1;
}

.review-card-meta strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 2px;
}

.review-card-stars {
    font-size: 0.9rem;
}

.review-card-date {
    font-size: 0.8rem;
    color: var(--text-light);
    white-space: nowrap;
}

.review-card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Review Replies */
.review-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.reply-toggle-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
    font-family: inherit;
}

.reply-toggle-btn:hover {
    text-decoration: underline;
}

.review-replies {
    margin-top: 12px;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
}

.reply-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.reply-item:last-child {
    border-bottom: none;
}

.reply-avatar {
    width: 32px;
    height: 32px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.reply-content {
    flex: 1;
}

.reply-content strong {
    font-size: 0.85rem;
    color: var(--text);
}

.reply-content .reply-date {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-left: 8px;
}

.reply-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 4px 0 0;
    line-height: 1.5;
}

.reply-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.reply-form input,
.reply-form textarea {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--text);
}

.reply-form input:focus,
.reply-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.reply-form textarea {
    resize: vertical;
    min-height: 60px;
}

.reply-form-actions {
    display: flex;
    gap: 8px;
}

.reply-form .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.reply-form-message {
    font-size: 0.8rem;
    margin-top: 4px;
}

.reviews-load-more {
    text-align: center;
    margin-bottom: 50px;
}

/* Review Form */
.review-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.review-form-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text);
}

.review-form-group {
    margin-bottom: 20px;
}

.review-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 0.95rem;
}

.review-form-group input[type="text"],
.review-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    transition: border-color 0.3s;
    background: var(--white);
}

.review-form-group input[type="text"]:focus,
.review-form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.review-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    gap: 8px;
}

.star-input {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    user-select: none;
}

.star-input:hover,
.star-input.active {
    color: #ffc107;
    transform: scale(1.15);
}

.review-form .btn {
    width: 100%;
    justify-content: center;
}

.review-form-note {
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
}

.review-form-error {
    color: #d32f2f;
}

.review-form-success {
    color: var(--secondary);
}

/* AI Support Chat Section */
.ai-support-section {
    padding: 100px 0;
    background: var(--white);
}

.chat-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--background);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.chat-messages {
    height: 420px;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.chat-message {
    display: flex;
    gap: 12px;
    max-width: 85%;
    animation: chatFadeIn 0.3s ease;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

@keyframes chatFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-avatar-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.chat-avatar-user {
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.75rem;
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    word-break: break-word;
}

.chat-bubble ul {
    margin: 8px 0;
    padding-left: 20px;
}

.chat-bubble li {
    margin-bottom: 4px;
}

.chat-message.assistant .chat-bubble {
    background: var(--white);
    color: var(--text);
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.chat-message.user .chat-bubble {
    background: var(--primary);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.chat-input-area {
    padding: 16px 24px;
    border-top: 1px solid #e0e0e0;
    background: var(--white);
}

.chat-suggested {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.chat-suggestion-btn {
    padding: 6px 14px;
    background: var(--background);
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.chat-suggestion-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.chat-input-wrapper {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.chat-input-wrapper textarea {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    resize: none;
    min-height: 44px;
    max-height: 120px;
    overflow-y: auto;
    transition: border-color 0.3s;
    line-height: 1.4;
}

.chat-input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.chat-input-wrapper textarea:disabled {
    background: #f5f5f5;
    color: #999;
}

.chat-send-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.2s;
}

.chat-send-btn:hover {
    background: #1557b0;
    transform: scale(1.05);
}

.chat-send-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.chat-disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 8px;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 4px 0;
    align-items: center;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #bbb;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Download Section */
.download {
    padding: 100px 0;
    background: var(--background);
    text-align: center;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1a1a1a;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.store-button:hover {
    background: #333;
    transform: translateY(-2px);
}

.store-button div {
    text-align: left;
}

.store-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.store-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: var(--background);
    border-radius: 16px;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #999;
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-brand .logo {
    color: var(--white);
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Nav Buttons */
.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Hero Platform Link */
.hero-platform-link {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.hero-platform-link a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    margin-left: 8px;
}

.hero-platform-link a:hover {
    text-decoration: underline;
}

/* Featured Service Card */
.service-card-featured {
    position: relative;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%);
    border: 2px solid var(--primary);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-card-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.service-card-link:hover {
    text-decoration: underline;
}

/* Permit Expediting Section */
.permit-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
}

.permit-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.permit-overview-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.permit-overview-item:hover {
    transform: translateY(-5px);
}

.permit-overview-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.permit-overview-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text);
}

.permit-overview-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.permit-audiences {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.permit-audience-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.permit-audience-header {
    padding: 30px;
    color: var(--white);
}

.permit-audience-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.permit-audience-header p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.permit-audience-customer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.permit-audience-provider {
    background: linear-gradient(135deg, var(--secondary) 0%, #2d8f48 100%);
}

.permit-audience-benefits {
    list-style: none;
    padding: 24px 30px;
}

.permit-audience-benefits li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.permit-audience-benefits li:last-child {
    border-bottom: none;
}

.benefit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #e8f5e9;
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 2px;
}

.permit-audience-benefits strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text);
}

.permit-audience-benefits p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

.permit-cta {
    text-align: center;
}

.permit-cta-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Service Contracts Section */
.contracts-section {
    padding: 100px 0;
    background: var(--white);
}

.contracts-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contracts-overview-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--background);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.contracts-overview-item:hover {
    transform: translateY(-5px);
}

.contracts-overview-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contracts-overview-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text);
}

.contracts-overview-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contracts-audiences {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contracts-audience-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contracts-audience-header {
    padding: 30px;
    color: var(--white);
}

.contracts-audience-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.contracts-audience-header p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.contracts-audience-customer {
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
}

.contracts-audience-provider {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
}

.contracts-audience-benefits {
    list-style: none;
    padding: 24px 30px;
}

.contracts-audience-benefits li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contracts-audience-benefits li:last-child {
    border-bottom: none;
}

.contracts-audience-benefits strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text);
}

.contracts-audience-benefits p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

.contracts-cta {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.contracts-cta .contracts-cta-note {
    width: 100%;
}

.contracts-cta-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Platform Access in Download Section */
.platform-access {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.platform-access p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .provider-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .provider-benefits {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .permit-overview {
        grid-template-columns: repeat(2, 1fr);
    }

    .permit-audiences {
        grid-template-columns: 1fr;
    }

    .contracts-overview {
        grid-template-columns: repeat(2, 1fr);
    }

    .contracts-audiences {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-buttons .btn-secondary {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 1rem;
    }

    .nav-buttons {
        display: none;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .permit-overview {
        grid-template-columns: 1fr;
    }

    .contracts-overview {
        grid-template-columns: 1fr;
    }

    .contracts-cta {
        flex-direction: column;
        align-items: center;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-form-container {
        padding: 24px;
    }

    .ai-support-section {
        padding: 60px 0;
    }

    .chat-messages {
        height: 350px;
        padding: 16px;
    }

    .chat-container {
        border-radius: 12px;
    }

    .chat-message {
        max-width: 92%;
    }

    .chat-input-area {
        padding: 12px 16px;
    }

    .chat-suggested {
        gap: 6px;
    }

    .chat-suggestion-btn {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
