/**
 * Pawct - Unified Stylesheet
 * Shared styles for all public pages
 */

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --hero-bg: #0f1629;
    --dark-section: #0f1629;
    --text-dark: #1a1f36;
    --text-muted: #6b7280;
    --accent: #E8830C;
    --accent-hover: #d17609;
    --blue-gradient: linear-gradient(135deg, #E8830C 0%, #f5a742 100%);
    --section-bg: #f8fafc;
    --green: #22c55e;
    --red: #ef4444;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75em 3em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.logo-svg {
    height: 28px;
    width: auto;
    fill: var(--accent);
}

.footer-brand .logo-svg {
    height: 24px;
}

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

.nav-center a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
}

.nav-center a:hover,
.nav-center a.active {
    color: var(--accent);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1em;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    padding: 0.65em 1.25em;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9em;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    border: none;
    cursor: pointer;
}

.btn-text {
    color: var(--text-dark);
    background: none;
}

.btn-text:hover {
    color: var(--accent);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.btn-lg {
    padding: 0.85em 1.75em;
    font-size: 0.95em;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section {
    padding: 5em 2em;
}

.section-alt {
    background: var(--section-bg);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3em;
}

.section-header h2 {
    font-size: 2.25em;
    font-weight: 700;
    margin-bottom: 0.4em;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05em;
    line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--hero-bg);
    color: rgba(255,255,255,0.6);
    padding: 4em 2em 2em;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3em;
    max-width: 1100px;
    margin: 0 auto 3em;
}

.footer-brand img {
    height: 28px;
    filter: brightness(0) invert(1);
    margin-bottom: 1em;
}

.footer-brand p {
    font-size: 0.85em;
    line-height: 1.6;
    max-width: 250px;
}

.footer-col h5 {
    color: #fff;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 1em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85em;
    padding: 0.3em 0;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2em;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8em;
}

.footer-bottom-links {
    display: flex;
    gap: 2em;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

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

/* ==========================================================================
   Welcome Page - Hero Section
   ========================================================================== */
.hero {
    background: var(--hero-bg);
    padding: 7em 2em 3em;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(232,131,12,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5em;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 0.5em;
}

.hero-subtitle {
    font-size: 1.1em;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 1.75em;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    margin-bottom: 3em;
}

.pricing-hint {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    margin-top: 0.5em;
}

.hero-visual {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2em;
}

.hero-screenshot {
    background: #1e2642;
    border-radius: 12px;
    padding: 1em;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
}

.hero-screenshot-inner {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 8px;
    padding: 3em 2em;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.95em;
}

.hero-screenshot-inner i {
    font-size: 3em;
    margin-bottom: 0.3em;
    display: block;
}

/* Floating elements */
.hero-float {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding: 0.75em 1em;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    font-size: 0.8em;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5em;
    z-index: 10;
}

.hero-float.float-1 {
    top: 20%;
    left: 5%;
}

.hero-float.float-2 {
    top: 35%;
    right: 3%;
}

.hero-float.float-3 {
    bottom: 25%;
    left: 8%;
}

.hero-float i {
    color: var(--accent);
}

.hero-float .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}

/* ==========================================================================
   Welcome Page - Trusted Section
   ========================================================================== */
.trusted {
    padding: 2.5em 2em;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.trusted-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trusted-label {
    font-size: 0.8em;
    color: var(--text-muted);
    margin-bottom: 1.25em;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3em;
    flex-wrap: wrap;
    opacity: 0.5;
}

.trusted-logos span {
    font-size: 1em;
    font-weight: 600;
    color: #555;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   Welcome Page - Feature Rows
   ========================================================================== */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 5em;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-label {
    font-size: 0.75em;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75em;
}

.feature-content h2 {
    font-size: 2em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.6em;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 1em;
    margin-bottom: 1.25em;
    line-height: 1.7;
}

.feature-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
}

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

.feature-visual {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
}

.feature-visual-inner {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
    padding: 3em 2em;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.feature-visual-inner i {
    font-size: 3.5em;
    margin-bottom: 0.4em;
}

.feature-list {
    list-style: none;
    margin: 1em 0 1.5em;
}

.feature-list li {
    padding: 0.4em 0;
    display: flex;
    align-items: center;
    gap: 0.6em;
    color: var(--text-muted);
    font-size: 0.95em;
}

.feature-list li i {
    color: var(--accent);
    font-size: 1.1em;
}

/* ==========================================================================
   Welcome Page - Features Grid
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 1.75em;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: transparent;
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    background: #fff7ed;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
}

.feature-card-icon i {
    font-size: 1.4em;
    color: var(--accent);
}

.feature-card h4 {
    font-size: 1.05em;
    font-weight: 600;
    margin-bottom: 0.4em;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9em;
    line-height: 1.6;
}

/* ==========================================================================
   Welcome Page - Feature Tags
   ========================================================================== */
.features-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75em;
    max-width: 1000px;
    margin: 2.5em auto 0;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.6em 1em;
    background: #fff;
    border-radius: 2em;
    font-size: 0.85em;
    color: #555;
    border: 1px solid #eee;
    transition: all 0.2s;
    position: relative;
    cursor: default;
}

.feature-tag:hover {
    border-color: var(--accent);
    background: #fff7ed;
}

.feature-tag i {
    color: var(--accent);
}

.feature-tag .tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #666;
    padding: 1em 1.25em;
    border-radius: 8px;
    font-size: 0.95em;
    white-space: normal;
    width: 240px;
    text-align: left;
    line-height: 1.6;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s, visibility 0.15s;
    margin-bottom: 10px;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.feature-tag .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #fff;
}

.feature-tag:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Welcome Page - Dark Section
   ========================================================================== */
.dark-section {
    background: var(--dark-section);
    padding: 5em 2em;
    text-align: center;
}

.dark-section h2 {
    color: #fff;
    font-size: 2.25em;
    font-weight: 700;
    max-width: 550px;
    margin: 0 auto 0.5em;
    line-height: 1.25;
}

.dark-section > p {
    color: rgba(255,255,255,0.65);
    max-width: 500px;
    margin: 0 auto 2.5em;
    font-size: 1.05em;
}

.dark-screenshot {
    max-width: 900px;
    margin: 0 auto;
    background: #1e2642;
    border-radius: 12px;
    padding: 0.75em;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.dark-screenshot-inner {
    background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
    border-radius: 8px;
    padding: 4em 2em;
    color: rgba(255,255,255,0.4);
}

.dark-screenshot-inner i {
    font-size: 3.5em;
    margin-bottom: 0.3em;
}

/* ==========================================================================
   Welcome Page - Use Cases
   ========================================================================== */
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    max-width: 1050px;
    margin: 0 auto;
}

.usecase-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.usecase-header {
    background: var(--blue-gradient);
    color: #fff;
    padding: 1.5em;
}

.usecase-header i {
    font-size: 2em;
    margin-bottom: 0.3em;
    display: block;
}

.usecase-header h3 {
    font-size: 1.15em;
    font-weight: 600;
}

.usecase-body {
    padding: 1.5em;
}

.usecase-body > p {
    color: var(--text-muted);
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 1em;
}

.usecase-features {
    list-style: none;
}

.usecase-features li {
    padding: 0.35em 0;
    font-size: 0.9em;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.usecase-features li i {
    color: var(--accent);
}

/* ==========================================================================
   Welcome Page - Comparison Table
   ========================================================================== */
.comparison-wrapper {
    max-width: 850px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.comparison-table th,
.comparison-table td {
    padding: 1em 1.25em;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table thead th {
    background: #fafafa;
    font-weight: 600;
    font-size: 0.9em;
}

.comparison-table thead th:first-child {
    width: 40%;
}

.comparison-table tbody td:first-child {
    font-weight: 500;
    color: #333;
    font-size: 0.95em;
}

.comparison-table .highlight-col {
    background: rgba(232, 131, 12, 0.04);
}

.comparison-table thead .highlight-col {
    background: var(--accent);
    color: #fff;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .check {
    color: var(--green);
    font-size: 1.2em;
}

.comparison-table .cross {
    color: #ccc;
    font-size: 1.2em;
}

.comparison-table .partial {
    color: #f59e0b;
    font-size: 0.85em;
}

/* ==========================================================================
   Welcome Page - Pricing Teaser
   ========================================================================== */
#pricing-teaser .pricing-teaser-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#pricing-teaser .pricing-teaser-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2em;
    margin-bottom: 2em;
}

#pricing-teaser .pricing-teaser-item {
    background: #fff;
    border-radius: 12px;
    padding: 2em 3em;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    min-width: 220px;
    text-align: center;
}

#pricing-teaser .pricing-teaser-item h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 0.3em;
    color: var(--text-dark);
}

#pricing-teaser .pricing-teaser-item p {
    color: var(--text-muted);
    font-size: 0.9em;
    margin-bottom: 1em;
}

#pricing-teaser .pricing-teaser-price {
    display: block;
    font-size: 1.6em;
    font-weight: 700;
    color: var(--accent);
}

/* ==========================================================================
   Welcome Page - Workflow Steps
   ========================================================================== */
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    max-width: 900px;
    margin: 0 auto;
}

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

.step-number {
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5em;
    margin: 0 auto 1em;
}

.workflow-step h3 {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 0.4em;
}

.workflow-step p {
    color: var(--text-muted);
    font-size: 0.9em;
    line-height: 1.5;
}

/* ==========================================================================
   Welcome Page - Testimonial
   ========================================================================== */
.testimonial-section {
    background: var(--section-bg);
    padding: 5em 2em;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5em;
    align-items: center;
}

.testimonial-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef3e2 0%, #fde9d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    color: var(--accent);
}

.testimonial-quote {
    font-size: 1.35em;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.25em;
    line-height: 1.5;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3em;
    color: var(--accent);
    position: absolute;
    top: -0.3em;
    left: -0.5em;
    font-style: normal;
    line-height: 1;
}

.testimonial-author h4 {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 0.1em;
}

.testimonial-author p {
    color: var(--text-muted);
    font-size: 0.9em;
}

/* ==========================================================================
   Welcome Page - Stats Section
   ========================================================================== */
.stats-section {
    background: var(--blue-gradient);
    padding: 4em 2em;
    text-align: center;
    color: #fff;
}

.stats-section > p {
    font-size: 1.1em;
    margin-bottom: 2em;
    opacity: 0.9;
}

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

.stat-item h3 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 0.1em;
}

.stat-item span {
    font-size: 1em;
    opacity: 0.85;
}

/* ==========================================================================
   Welcome Page - Reviews
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.5em;
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 0.75em;
    font-size: 0.9em;
}

.review-text {
    font-size: 0.9em;
    color: var(--text-dark);
    margin-bottom: 1em;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75em;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85em;
    font-weight: 600;
}

.review-author-info h5 {
    font-size: 0.85em;
    font-weight: 600;
}

.review-author-info p {
    font-size: 0.75em;
    color: var(--text-muted);
}

/* ==========================================================================
   Welcome Page - Help Section
   ========================================================================== */
.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    max-width: 900px;
    margin: 0 auto;
}

.help-card {
    text-align: center;
    padding: 2em;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    transition: all 0.2s;
}

.help-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: transparent;
}

.help-icon {
    width: 56px;
    height: 56px;
    background: #fff7ed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1em;
}

.help-icon i {
    font-size: 1.5em;
    color: var(--accent);
}

.help-card h4 {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 0.4em;
}

.help-card p {
    color: var(--text-muted);
    font-size: 0.9em;
}

/* ==========================================================================
   Welcome Page - Final CTA
   ========================================================================== */
.final-cta {
    padding: 4em 2em;
    background: var(--section-bg);
}

.final-cta-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--hero-bg);
    border-radius: 20px;
    padding: 3.5em;
    text-align: center;
    color: #fff;
}

.final-cta-box h2 {
    font-size: 1.75em;
    margin-bottom: 0.4em;
}

.final-cta-box p {
    opacity: 0.7;
    margin-bottom: 1.5em;
}

.final-cta-box .btn-primary {
    background: var(--accent);
}

/* ==========================================================================
   Pricing Page - Hero Section
   ========================================================================== */
.pricing-hero {
    background: #fff;
    padding: 8em 2em 3em;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 4.5em;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 0.4em;
    color: var(--text-dark);
}

.pricing-hero .subtitle {
    font-size: 1.1em;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 2em;
}

/* ==========================================================================
   Pricing Page - Segment Toggle
   ========================================================================== */
.segment-toggle {
    display: inline-flex;
    align-items: center;
    background: #f3f4f6;
    padding: 0.35em;
    border-radius: 8px;
    margin-bottom: 3em;
}

.segment-toggle button {
    padding: 0.6em 1.5em;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.segment-toggle button.active {
    background: #fff;
    color: var(--text-dark);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.segment-toggle button:hover:not(.active) {
    color: var(--text-dark);
}

/* ==========================================================================
   Pricing Page - Pricing Cards
   ========================================================================== */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
}

.pricing-card {
    flex: 0 1 340px;
    max-width: 340px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2em;
    position: relative;
    transition: all 0.2s;
    text-align: left;
}

.pricing-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.pricing-card.popular {
    border-color: var(--accent);
    border-width: 2px;
}

.pricing-card.large {
    flex: 0 1 510px;
    max-width: 510px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 1.5em;
    background: var(--text-dark);
    color: #fff;
    font-size: 0.7em;
    font-weight: 600;
    padding: 0.4em 0.8em;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.4em;
}

.popular-badge i {
    font-size: 1.1em;
}

.pricing-card-header {
    margin-bottom: 1.5em;
    text-align: left;
}

.pricing-card-header h3 {
    font-size: 1.75em;
    font-weight: 700;
    margin-bottom: 0.3em;
    color: var(--text-dark);
}

.pricing-card-header p {
    font-size: 0.85em;
    color: var(--text-muted);
    line-height: 1.5;
}

.pricing-amount {
    margin-bottom: 1.5em;
    text-align: left;
}

.pricing-amount .price {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-amount .price .currency {
    font-size: 0.5em;
    vertical-align: super;
}

.pricing-amount .price .price-from {
    font-size: 0.5em;
    font-weight: 500;
}

.pricing-amount .period {
    font-size: 0.9em;
    color: var(--text-muted);
}

.pricing-note {
    font-size: 0.75em;
    color: var(--text-muted);
    margin-top: -1em;
    margin-bottom: 1.5em;
    line-height: 1.4;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 1.5em;
}

.pricing-card.popular .btn-primary {
    background: var(--text-dark);
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6em;
    padding: 0.5em 0;
    font-size: 0.9em;
    color: var(--text-dark);
    text-align: left;
}

.pricing-features li i {
    margin-top: 0.15em;
    font-size: 1.1em;
}

.pricing-features li i.la-check {
    color: var(--accent);
}

.pricing-features li i.la-times {
    color: #d1d5db;
}

.pricing-features li.disabled {
    color: #9ca3af;
}

/* ==========================================================================
   Pricing Page - Comparison Section
   ========================================================================== */
.comparison-section {
    padding: 5em 2em;
    background: #fff;
}

.comparison-section h2 {
    text-align: center;
    font-size: 1.75em;
    margin-bottom: 2em;
}

.comparison-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-section .comparison-table th,
.comparison-section .comparison-table td {
    text-align: center;
}

.comparison-section .comparison-table th:first-child,
.comparison-section .comparison-table td:first-child {
    text-align: left;
}

.comparison-section .comparison-table thead th {
    font-weight: 600;
    font-size: 0.9em;
    color: var(--text-dark);
    padding-bottom: 1.5em;
    background: transparent;
}

.comparison-section .comparison-table .category-row td {
    background: #f9fafb;
    font-weight: 600;
    font-size: 0.85em;
    color: var(--text-dark);
    padding: 0.75em 1.25em;
}

.comparison-section .comparison-table tbody td:first-child {
    font-size: 0.9em;
    color: #555;
    font-weight: normal;
}

.comparison-section .comparison-table .check {
    color: var(--accent);
    font-size: 1.2em;
}

.comparison-section .comparison-table .cross {
    color: #d1d5db;
    font-size: 1.2em;
}

.comparison-section .comparison-table .text-value {
    font-size: 0.85em;
    color: var(--text-muted);
}

.show-all-features {
    text-align: center;
    margin-top: 2em;
}

.show-all-features button {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 0.75em 1.5em;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.2s;
}

.show-all-features button:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ==========================================================================
   Pricing Page - Included Section
   ========================================================================== */
.included-section {
    padding: 5em 2em;
    background: var(--section-bg);
}

.included-section h2 {
    text-align: center;
    font-size: 1.75em;
    margin-bottom: 0.4em;
}

.included-section .subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3em;
}

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

.included-card {
    background: #fff;
    padding: 1.5em;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.included-card-icon {
    width: 44px;
    height: 44px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
}

.included-card-icon i {
    font-size: 1.25em;
    color: var(--accent);
}

.included-card h4 {
    font-size: 0.95em;
    font-weight: 600;
    margin-bottom: 0.4em;
}

.included-card p {
    font-size: 0.85em;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Pricing Page - FAQ Section
   ========================================================================== */
.faq-section {
    padding: 5em 2em;
    background: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 1.75em;
    margin-bottom: 2em;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25em 0;
    background: none;
    border: none;
    font-size: 0.95em;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    font-size: 1.2em;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 1.25em;
    font-size: 0.9em;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ==========================================================================
   Pricing Page - CTA Section
   ========================================================================== */
.cta-section {
    padding: 5em 2em;
    background: var(--section-bg);
    text-align: center;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--hero-bg);
    border-radius: 16px;
    padding: 3em;
    color: #fff;
}

.cta-box h2 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

.cta-box p {
    opacity: 0.7;
    margin-bottom: 1.5em;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .nav-center {
        display: none;
    }

    .hero h1 {
        font-size: 2.75em;
    }

    .pricing-hero h1 {
        font-size: 2.75em;
    }

    .feature-row,
    .testimonial {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .features-grid,
    .usecases-grid,
    .workflow-steps,
    .stats-grid,
    .reviews-grid,
    .help-grid,
    .included-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        max-width: 400px;
    }

    .pricing-card {
        flex: 0 1 100%;
        max-width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1em;
        text-align: center;
    }

    .hero-float {
        display: none;
    }

    .comparison-table {
        font-size: 0.85em;
    }
}

/* ==========================================================================
   Feature Pages
   ========================================================================== */

/* Feature Hero */
.feature-hero {
    background: var(--hero-bg);
    color: #fff;
    padding: 10em 3em 5em;
    text-align: center;
}

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

.feature-hero-label {
    display: inline-block;
    background: rgba(232, 131, 12, 0.2);
    color: var(--accent);
    padding: 0.4em 1em;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5em;
}

.feature-hero h1 {
    font-size: 4.5em;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 0.5em;
    letter-spacing: -0.02em;
}

.feature-hero-subtitle {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2em;
}

.feature-hero-cta {
    display: flex;
    justify-content: center;
    gap: 1em;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Animal Types Grid */
.animal-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
    max-width: 900px;
    margin: 0 auto;
}

.animal-type-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 2em;
    text-align: center;
    transition: all 0.2s;
}

.animal-type-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: transparent;
}

.animal-type-card.custom {
    background: #fff7ed;
    border-color: var(--accent);
    border-style: dashed;
}

.animal-type-icon {
    width: 64px;
    height: 64px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1em;
    font-size: 1.8em;
    color: var(--accent);
}

.animal-type-card.custom .animal-type-icon {
    background: #fff;
}

.animal-type-card h4 {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 0.5em;
}

.animal-type-card p {
    font-size: 0.9em;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Field Types Grid */
.field-types-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    max-width: 700px;
    margin: 0 auto;
}

.field-type-item {
    display: flex;
    align-items: center;
    gap: 0.5em;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0.8em 1.2em;
    font-size: 0.95em;
    font-weight: 500;
}

.field-type-item i {
    color: var(--accent);
    font-size: 1.2em;
}

/* Feature Page Responsive */
@media (max-width: 768px) {
    .feature-hero {
        padding: 8em 1.5em 3em;
    }

    .feature-hero h1 {
        font-size: 2.8em;
    }

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

    .animal-types-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .animal-types-grid {
        grid-template-columns: 1fr;
    }
}

/* All Features Section (for feature pages) */
.all-features-section {
    background: var(--section-bg);
}

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

.all-features-item {
    display: flex;
    align-items: center;
    gap: 1em;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1.25em;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.all-features-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.all-features-item.active {
    border-color: var(--accent);
    background: #fff7ed;
}

.all-features-icon {
    width: 44px;
    height: 44px;
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    color: var(--accent);
    flex-shrink: 0;
}

.all-features-item.active .all-features-icon {
    background: var(--accent);
    color: #fff;
}

.all-features-content {
    flex: 1;
    min-width: 0;
}

.all-features-content h4 {
    font-size: 0.95em;
    font-weight: 600;
    margin-bottom: 0.2em;
}

.all-features-content p {
    font-size: 0.8em;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

.all-features-arrow {
    color: #ccc;
    font-size: 1.1em;
    flex-shrink: 0;
    transition: all 0.2s;
}

.all-features-item:hover .all-features-arrow {
    color: var(--accent);
    transform: translateX(3px);
}

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

@media (max-width: 600px) {
    .all-features-grid {
        grid-template-columns: 1fr;
    }
}
