/* ===========================
   TameerAI Landing Page Styles
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-400: #2dd4bf;
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --emerald-400: #5eead4;
    --orange-500: #F97316;
    --orange-600: #EA580C;
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-100: #f1f5f9;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #ffffff;
    position: relative;
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 99px,
            rgba(94, 234, 212, 0.08) 99px,
            rgba(94, 234, 212, 0.08) 100px
        ),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 99px,
            rgba(94, 234, 212, 0.08) 99px,
            rgba(94, 234, 212, 0.08) 100px
        );
    pointer-events: none;
    z-index: 0;
}

/* ============ NAVIGATION ============ */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(20, 184, 166, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    max-width: 450px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-500), var(--cyan-500));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--teal-600);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 3rem;
    overflow: hidden;
    z-index: 1;
    background: #ffffff;
}

/* Milestone Animation Container - Above Hero */
.milestone-animation-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0.5rem;
    background: #ffffff;
}

#hexagonNetwork {
    position: relative;
    width: 100%;
    height: 120px;
    z-index: 1;
    pointer-events: none;
}

/* Hide animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .milestone-animation-container {
        display: none;
    }
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
    display: none; /* Hidden for pure white background */
}

.gradient-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--teal-400), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--cyan-400), transparent);
    bottom: -250px;
    right: -250px;
    animation-delay: 7s;
}

.gradient-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--emerald-400), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(50px, -50px);
    }
    50% {
        transform: translate(-30px, 30px);
    }
    75% {
        transform: translate(40px, 20px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--teal-600);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.hero-badge-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(234, 88, 12, 0.15));
    color: var(--orange-600);
    border: 1px solid rgba(249, 115, 22, 0.4);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.gradient-text {
    background: linear-gradient(135deg, var(--teal-500) 0%, var(--cyan-500) 50%, var(--emerald-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-check {
    color: var(--teal-600);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(249, 115, 22, 0.5);
    background: linear-gradient(135deg, var(--orange-600) 0%, #DC2626 100%);
}

.btn-secondary {
    background: white;
    color: var(--teal-600);
    border: 2px solid var(--teal-500);
}

.btn-secondary:hover {
    background: var(--teal-50);
    transform: translateY(-2px);
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
    padding: 1.2rem 3rem;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(249, 115, 22, 0.5);
    background: linear-gradient(135deg, var(--orange-600) 0%, #DC2626 100%);
}

.btn-secondary-large {
    background: white;
    color: var(--teal-600);
    border: 2px solid var(--teal-500);
    padding: 1.2rem 3rem;
}

.btn-secondary-large:hover {
    background: rgba(20, 184, 166, 0.05);
    transform: translateY(-2px);
}

/* ============ STATS SECTION ============ */
.stats-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, white 0%, rgba(240, 253, 250, 0.5) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(20, 184, 166, 0.1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.stat-icon {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.stat-icon svg {
    display: block;
    margin: 0 auto;
}

.stat-icon-highlight {
    color: var(--orange-500);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--teal-600);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ============ PRODUCT SECTION ============ */
.product-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    position: relative;
    z-index: 1;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-content {
    margin-top: 4rem;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(20, 184, 166, 0.1);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--teal-500), var(--cyan-500));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal-500);
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-description {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.8;
}

.product-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* ============ BENTO GRID SECTION ============ */
.bento-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray-600);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    grid-auto-rows: 300px;
}

.bento-card {
    background: linear-gradient(135deg, white 0%, rgba(240, 253, 250, 0.8) 100%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(20, 184, 166, 0.15);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(20, 184, 166, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.bento-large {
    grid-column: span 8;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 4;
}

.bento-wide {
    grid-column: span 12;
}

.card-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--teal-600);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.card-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(20, 184, 166, 0.1);
    color: var(--teal-600);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.card-link {
    display: inline-block;
    color: var(--teal-600);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--teal-500);
    transform: translateX(5px);
}

.icon-badge {
    margin-bottom: 1.5rem;
    display: block;
    color: var(--gray-700);
}

.icon-badge svg {
    display: block;
}

.visual-gradient {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--teal-400), transparent);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

/* ============ WHY DIFFERENT SECTION ============ */
.why-different {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(240, 253, 250, 0.5) 0%, white 100%);
    position: relative;
    z-index: 1;
}

.difference-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.difference-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(20, 184, 166, 0.1);
}

.difference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.15);
}

.difference-icon {
    margin-bottom: 1.5rem;
    display: block;
    color: var(--gray-700);
}

.difference-icon svg {
    display: block;
}

.difference-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.difference-card p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============ ABOUT SECTION ============ */
.about-section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-container {
    background: linear-gradient(135deg, white 0%, rgba(240, 253, 250, 0.8) 100%);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 8px 40px rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.15);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-values {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(20, 184, 166, 0.1);
    padding: 1rem 1.8rem;
    border-radius: 50px;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    stroke: var(--gray-700);
}

.value-text {
    font-weight: 600;
    color: var(--teal-600);
    font-size: 1.1rem;
}

/* ============ CONTACT CTA SECTION ============ */
.contact-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--teal-500) 0%, var(--cyan-500) 100%);
    margin: 4rem 0;
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
    background: #78716c;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 4rem 2rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 100px;
    width: auto;
    max-width: 400px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1024px) {
    .bento-large {
        grid-column: span 12;
        grid-row: span 1;
    }

    .bento-medium {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .bento-medium {
        grid-column: span 12;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .about-container {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .cta-title {
        font-size: 2rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn,
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        text-align: center;
    }
}
