/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-light: #64748b;
    --accent-primary: #0f766e;
    --accent-secondary: #0891b2;
    --accent-gradient-start: #0f766e;
    --accent-gradient-end: #14b8a6;
    --btn-dark: #0f172a;
    --purple: #ede9fe;
    --blue: #e0f2fe;
    --orange: #ffedd5;
    --green: #d1fae5;
    --pink: #fce7f3;
    --light-purple: #f5f3ff;
    --border-light: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--primary-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-blue);
}

/* Buttons */
.btn-primary,
.btn-dark,
.btn-outline,
.btn-submit {
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary,
.btn-dark {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--white);
}

.btn-primary:hover,
.btn-dark:hover {
    background: linear-gradient(135deg, #0d5f58, #0e7490);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active,
.btn-dark:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 5rem 0 4rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.6s ease-out;
}

.emoji {
    font-size: 1.25rem;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

/* KPI Cards */
.kpi-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.kpi-card {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    min-width: 140px;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s both;
    transition: all 0.3s ease;
}

.kpi-card:nth-child(1) {
    animation-delay: 0.6s;
}

.kpi-card:nth-child(2) {
    animation-delay: 0.75s;
}

.kpi-card:nth-child(3) {
    animation-delay: 0.9s;
}

.kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.kpi-label {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kpi-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.check-icon {
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease-out 1s both;
}

.hero-footer {
    font-size: 0.875rem;
    color: #475569;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out 1.4s both;
}

/* Transformation Section */
.transformation {
    padding: 5rem 0;
    background-color: var(--white);
    text-align: center;
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
}

.solution-card:nth-child(1) { animation-delay: 0.2s; }
.solution-card:nth-child(2) { animation-delay: 0.35s; }
.solution-card:nth-child(3) { animation-delay: 0.5s; }

.solution-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.solution-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto 1rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.section-description {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Comparison Table */
.comparison-table {
    max-width: 1000px;
    margin: 3rem auto;
    background-color: #fafafa;
    border-radius: 12px;
    padding: 2rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.comparison-col {
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-before {
    text-align: right;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.comparison-arrow {
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 1.25rem;
}

.comparison-after {
    text-align: left;
    background-color: var(--green);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Video Demo Section */
.video-demo {
    padding: 5rem 0;
    text-align: center;
}

.video-duration {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Video Access Form */
.video-access-form {
    max-width: 500px;
    margin: 0 auto;
    opacity: 0;
    animation: scaleIn 0.8s ease-out 0.3s forwards;
}

.video-access-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.video-access-header {
    text-align: center;
    margin-bottom: 2rem;
}

.video-access-header svg {
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.video-access-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.video-access-header p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.demo-access-form {
    text-align: left;
}

.demo-access-form .form-group {
    margin-bottom: 1.5rem;
}

.demo-access-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background-color: var(--white);
}

.demo-access-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.demo-access-form input::placeholder {
    color: #cbd5e1;
}

.btn-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    opacity: 0;
    animation: scaleIn 0.8s ease-out 0.3s forwards;
}

.demo-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-video:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.01);
}

.video-placeholder {
    text-align: center;
}

.play-button {
    margin-bottom: 1.5rem;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-label {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.video-tagline {
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-gray);
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.8s forwards;
}

/* Product Screenshot Section */
.product-shot {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    text-align: center;
}

.screenshot-container {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.product-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    background: var(--white);
    opacity: 0;
    animation: scaleIn 0.8s ease-out 0.3s forwards;
    transition: all 0.4s ease;
}

.product-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 70px rgba(12, 17, 22, 0.15);
}

.screenshot-caption {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.8s forwards;
}

/* Features Grid */
.features {
    padding: 5rem 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    background-color: var(--white);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card.purple {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-color: #e9d5ff;
}

.feature-card.blue {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: #bae6fd;
}

.feature-card.orange {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-color: #fed7aa;
}

.feature-card.green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #bbf7d0;
}

.feature-card.pink {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #fecaca;
}

.feature-card.light-purple {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-color: #e9d5ff;
}

.feature-icon {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto;
}

.benefit-card {
    background-color: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.25s; }
.benefit-card:nth-child(3) { animation-delay: 0.4s; }
.benefit-card:nth-child(4) { animation-delay: 0.55s; }

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px) scale(1.02);
}

.benefit-stat {
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-stat {
    color: var(--accent-primary);
    transform: scale(1.1);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Testimonial */
.testimonial {
    max-width: 900px;
    margin: 4rem auto 0;
    background-color: #f0f9ff;
    padding: 3rem;
    border-radius: 16px;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #93c5fd;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Trust Section */
.trust {
    padding: 4rem 0;
    background-color: var(--white);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    transition: transform 0.3s ease;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.25s; }
.trust-item:nth-child(3) { animation-delay: 0.4s; }

.trust-item:hover {
    transform: translateX(5px);
}

.trust-icon {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 0.75rem;
    border-radius: 12px;
    flex-shrink: 0;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    transform: scale(1.1);
}

.trust-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.customer-testimonial {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.testimonial-author {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Team Roles Section */
.team-roles {
    padding: 5rem 0;
}

.roles-table {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.roles-header {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background-color: #f9fafb;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.role-row {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 2rem;
    padding: 1.75rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
}

.role-row:last-child {
    border-bottom: none;
}

.role-name {
    font-weight: 600;
    color: var(--text-dark);
}

.role-task {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.role-support {
    background-color: #fce7f3;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background-color: var(--white);
    text-align: center;
}

.why-headline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.why-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    text-align: center;
}

.pricing-benefits {
    max-width: 700px;
    margin: 3rem auto;
}

.pricing-benefit {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    color: var(--text-gray);
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    animation: slideInLeft 0.5s ease-out forwards;
    transition: all 0.3s ease;
}

.pricing-benefit:nth-child(1) { animation-delay: 0.1s; }
.pricing-benefit:nth-child(2) { animation-delay: 0.25s; }
.pricing-benefit:nth-child(3) { animation-delay: 0.4s; }

.pricing-benefit:hover {
    transform: translateX(10px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
}

.pricing-benefit .check-icon {
    transition: transform 0.3s ease;
}

.pricing-benefit:hover .check-icon {
    transform: scale(1.2);
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
    background-color: var(--white);
}

.form {
    max-width: 600px;
    margin: 3rem auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.form-group {
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.form-group:nth-child(1) { animation-delay: 0.5s; }
.form-group:nth-child(2) { animation-delay: 0.6s; }
.form-group:nth-child(3) { animation-delay: 0.7s; }
.form-group:nth-child(4) { animation-delay: 0.8s; }
.form-group:nth-child(5) { animation-delay: 0.9s; }

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
}

.btn-submit {
    width: 100%;
    background-color: var(--btn-dark);
    color: var(--white);
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #1a1a1a;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.footer-badge {
    background-color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-light);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .kpi-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .kpi-card {
        min-width: 200px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .comparison-before {
        text-align: left;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }

    .comparison-after {
        text-align: left;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .roles-header,
    .role-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .screenshot-container {
        padding: 0 1rem;
    }
}
