/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #A9A9A9;
}

/* Buttons */
.btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.primary-btn {
    background: linear-gradient(135deg, #FFC700 0%, #FFD700 100%);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 199, 0, 0.3);
}

.secondary-btn {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.secondary-btn:hover {
    background: #FFFFFF;
    color: #000000;
    transform: translateY(-2px);
}

.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FFC700;
}

.download-btn {
    background: linear-gradient(135deg, #3CB371 0%, #2E8B57 100%);
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(60, 179, 113, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, #FFC700 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #A9A9A9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-btn {
    background: linear-gradient(135deg, #FFC700 0%, #FFD700 100%);
    color: #000000;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 199, 0, 0.4);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #FFC700;
}

.stat-label {
    font-size: 0.9rem;
    color: #A9A9A9;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.app-interface {
    width: 100%;
    height: 100%;
    position: relative;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.app-title {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
}

.damage-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.indicator-1 {
    background: #3CB371;
    color: #FFFFFF;
    border: 2px solid #3CB371;
}

.indicator-2 {
    background: #3CB371;
}

.indicator-3 {
    background: #FFFFFF;
}

.vehicle-view {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.car-outline {
    width: 200px;
    height: 100px;
    background: #A2F7A2;
    border-radius: 20px;
    position: relative;
}

.car-outline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #4F4F4F;
    border-radius: 10px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-icon svg {
    width: 30px;
    height: 30px;
}

.icon-1 {
    top: 10%;
    right: -30px;
    animation: float 6s ease-in-out infinite;
}

.icon-2 {
    bottom: 20%;
    left: -30px;
    animation: float 8s ease-in-out infinite reverse;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFC700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #A9A9A9;
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.workflow-step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 199, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    background: linear-gradient(135deg, #FFC700 0%, #FFD700 100%);
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.step-content h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.step-features {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #A9A9A9;
}

.feature-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* App Preview */
.app-preview {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.phone-mockup-large {
    width: 350px;
    height: 700px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 35px;
    padding: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.phone-screen-large {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 25px;
    padding: 25px;
}

.app-demo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.demo-header {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.demo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.damage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.damage-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.damage-item.active {
    background: rgba(255, 199, 0, 0.1);
    border-color: #FFC700;
}

.damage-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.damage-item span {
    font-size: 0.8rem;
    color: #A9A9A9;
}

.cost-estimate {
    background: rgba(60, 179, 113, 0.1);
    border: 1px solid #3CB371;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-top: auto;
}

.estimate-label {
    color: #A9A9A9;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.estimate-amount {
    color: #3CB371;
    font-size: 2rem;
    font-weight: 800;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #000000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFC700 0%, #3CB371 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 199, 0, 0.2);
}

.feature-icon-large {
    width: 60px;
    height: 60px;
    background: rgba(255, 199, 0, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-large svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    color: #A9A9A9;
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3CB371;
    font-weight: bold;
}

/* App Mockups Section */
.app-mockups {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.mockups-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.mockup-item {
    text-align: center;
}

.mockup-phone {
    width: 250px;
    height: 500px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 25px;
    padding: 15px;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.phone-screen-mockup {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 15px;
    padding: 15px;
}

.mockup-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: center;
}

.mockup-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vehicle-zones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.zone {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    font-size: 0.7rem;
    color: #A9A9A9;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.zone.active {
    background: rgba(255, 199, 0, 0.1);
    border-color: #FFC700;
    color: #FFC700;
}

.damage-summary {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px;
    font-size: 0.7rem;
}

.damage-type {
    color: #A9A9A9;
}

.damage-cost {
    color: #3CB371;
    font-weight: 600;
}

.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex: 1;
}

.photo-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.photo-actions {
    margin-top: auto;
}

.action-btn {
    background: #3CB371;
    color: #FFFFFF;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.report-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.report-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.report-section h4 {
    color: #FFFFFF;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.report-section p {
    color: #A9A9A9;
    font-size: 0.7rem;
    margin: 0;
}

.mockup-item h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.mockup-item p {
    color: #A9A9A9;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #000000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 199, 0, 0.2);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
}

.testimonial-text {
    color: #A9A9A9;
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 199, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar svg {
    width: 25px;
    height: 25px;
    color: #FFC700;
}

.author-name {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-title {
    color: #FFC700;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-company {
    color: #A9A9A9;
    font-size: 0.8rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFC700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.2rem;
    color: #A9A9A9;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #A9A9A9;
    font-size: 0.9rem;
}

.feature-check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-description {
    color: #A9A9A9;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #A9A9A9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FFC700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: #A9A9A9;
    font-size: 0.9rem;
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-toggle.active {
    background: rgba(255, 199, 0, 0.2);
}

/* Header Scroll Effect */
.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Thematic Images */
.thematic-image {
    position: absolute;
    opacity: 0.1;
    z-index: -1;
}

.thematic-image-1 {
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFC700" stroke-width="2"/><path d="M30 50L45 35L70 60" stroke="%23FFC700" stroke-width="3" fill="none"/></svg>') no-repeat center;
    background-size: contain;
}

.thematic-image-2 {
    bottom: 30%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="30" width="60" height="40" rx="5" fill="none" stroke="%233CB371" stroke-width="2"/><circle cx="35" cy="50" r="8" fill="%233CB371"/><circle cx="65" cy="50" r="8" fill="%233CB371"/></svg>') no-repeat center;
    background-size: contain;
}

.thematic-image-3 {
    top: 60%;
    right: 5%;
    width: 180px;
    height: 180px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 80,30 80,70 50,90 20,70 20,30" fill="none" stroke="%23FFC700" stroke-width="2"/><circle cx="50" cy="50" r="15" fill="%23FFC700"/></svg>') no-repeat center;
    background-size: contain;
}
.hero img{
    width: 350px;
}
.how-it-works img{
    width: 350px;
    border-radius: 20px;
    border: 2px solid #000;  
}
.mockups-grid img{
    width: 100px;
       border-radius: 10px;
    border: 2px solid #000;
    margin-left: 10px;
    margin-right: 10px;  
}
.how-it-works .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
