/* ============================================
   ORANGE FORGE AI - STYLE SHEET
   Clean, Modern, Professional Design
   ============================================ */

/* CSS Variables */
:root {
    --primary-blue: #0a5a96;
    --secondary-blue: #1e88e5;
    --accent-orange: #ff8c42;
    --light-orange: #ffe6d5;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
    --white: #ffffff;
    --text-color: #333333;
    --transition: all 0.3s ease;
}

/* ============================================
   GLOBAL 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', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(10, 90, 150, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    flex: 1;
}

.home-link {
    text-decoration: none;
    color: inherit;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--secondary-blue);
    border-bottom: 2px solid var(--accent-orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 5px 0;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 8rem 2rem;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--accent-orange);
    font-size: 1rem;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent-orange);
}

/* ============================================
   PRODUCT SECTION
   ============================================ */

.product-section {
    padding: 6rem 2rem;
    background-color: var(--light-gray);
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(10, 90, 150, 0.1);
    border-left: 6px solid var(--accent-orange);
}

.product-content h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.product-description {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ============================================
   DISCLAIMER BADGE
   ============================================ */

.disclaimer-badge {
    background-color: var(--light-orange);
    border: 2px solid var(--accent-orange);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.disclaimer-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.disclaimer-text {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   PRODUCT FEATURES
   ============================================ */

.product-features {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
}

.product-features h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

.about-content p:first-child {
    color: var(--primary-blue);
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

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

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-orange);
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-orange);
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-section a:hover {
    color: var(--accent-orange);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ============================================
   PRIVACY PAGE STYLES
   ============================================ */

.privacy-main {
    min-height: calc(100vh - 200px);
    padding: 4rem 2rem;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-container h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--border-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    color: var(--secondary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-orange);
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.privacy-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.privacy-section a {
    color: var(--secondary-blue);
    text-decoration: none;
    transition: var(--transition);
}

.privacy-section a:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero {
        padding: 5rem 2rem;
        min-height: 400px;
    }

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

    .product-card {
        padding: 2rem;
    }

    .product-content h3 {
        font-size: 1.5rem;
    }

    .disclaimer-badge {
        flex-direction: column;
        align-items: flex-start;
    }

    .disclaimer-icon {
        margin-top: 0;
    }

    .about-content p {
        text-align: left;
    }

    .privacy-container h1 {
        font-size: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
    }

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

@media (max-width: 600px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .company-name {
        font-size: 1.1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border-gray);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid var(--border-gray);
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

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

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

    .hero {
        padding: 3rem 1.5rem;
        min-height: 300px;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

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

    .product-card {
        padding: 1.5rem;
        border-left: 4px solid var(--accent-orange);
    }

    .product-content h3 {
        font-size: 1.3rem;
    }

    .product-description {
        font-size: 1rem;
    }

    .product-features {
        padding: 1.5rem;
    }

    .product-features li {
        padding-left: 1.2rem;
    }

    .about-section {
        padding: 3rem 1.5rem;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .privacy-main {
        padding: 2rem 1rem;
    }

    .privacy-container h1 {
        font-size: 1.5rem;
    }

    .privacy-section h2 {
        font-size: 1.1rem;
    }

    .privacy-section {
        margin-bottom: 1.5rem;
    }

    .privacy-section ul {
        margin-left: 1.5rem;
    }

    .privacy-section li {
        font-size: 0.95rem;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section h4 {
        font-size: 0.9rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }
}

/* ============================================
   ACCESSIBILITY & UTILITIES
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 3px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    header,
    footer,
    .cta-button {
        display: none;
    }

    body {
        color: black;
    }

    a {
        color: #0000ee;
    }
}
