/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #14b8a6;
    --accent-color: #f59e0b;
    
    /* Neutral Colors */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --white: #ffffff;
    --light-bg: #f8fafc;
    
    /* Gradient */
    --gradient: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
    --gradient-hover: linear-gradient(135deg, #4f46e5 0%, #0d9488 100%);
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

p {
    color: var(--gray);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===========================
   CONTAINER
   =========================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 20px 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-icon {
    font-size: 1.8rem;
}

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

.nav-link {
    color: var(--gray);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        background: var(--white);
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

/* ===========================
   PAGE HEADER
   =========================== */
.page-header {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    text-align: center;
}

.page-title {
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   VISION & MISSION
   =========================== */
.vision-mission {
    padding: var(--section-padding);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.vm-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.vm-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vm-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.vm-card p {
    color: var(--gray);
}

/* ===========================
   SECTIONS
   =========================== */
.featured-projects,
.why-choose,
.company-story,
.core-values,
.what-we-do,
.projects-detail {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 15px;
}

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

/* ===========================
   PROJECTS GRID
   =========================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.project-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.project-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.project-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.project-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* ===========================
   FEATURES GRID
   =========================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===========================
   PROJECT DETAIL
   =========================== */
.project-detail-card {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
}

.project-detail-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--gray-light);
}

.project-detail-icon {
    font-size: 4rem;
}

.project-detail-header h2 {
    margin-bottom: 5px;
}

.project-tag {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-detail-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray);
}

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

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tech-tag {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--primary-light);
}

/* ===========================
   ABOUT US SECTIONS
   =========================== */
.company-story {
    background: var(--light-bg);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-text {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.9;
}

.vision-mission-detailed {
    padding: var(--section-padding);
}

.vm-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.vm-card-detailed {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.vm-icon-large {
    font-size: 4rem;
    margin-bottom: 25px;
}

.vm-card-detailed h2 {
    margin-bottom: 20px;
}

.vm-card-detailed p {
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-card h3 {
    margin-bottom: 12px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 12px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.service-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    margin-bottom: 15px;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info h2 {
    margin-bottom: 15px;
}

.contact-intro {
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-text a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-text p {
    margin: 0;
}

.contact-cta {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-cta h3 {
    margin-bottom: 20px;
}

.contact-reasons {
    list-style: none;
}

.contact-reasons li {
    padding: 10px 0;
    color: var(--gray);
}

/* ===========================
   CONTACT FORM
   =========================== */
.contact-form-container {
    background: var(--white);
    padding: 45px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form h2 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--light-bg);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--dark);
    color: var(--gray-light);
    padding: 60px 0 30px;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--gray-light);
    margin-top: 10px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--gray-light);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark-light);
}

.footer-bottom p {
    color: var(--gray);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .vm-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .project-detail-card {
        padding: 30px 20px;
    }
    
    .project-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
}

/* ===========================
   UTILITIES
   =========================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Smooth Page Transitions */
.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* ===========================
   PRODUCT PAGES
   =========================== */
.product-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.product-hero-content {
    position: relative;
    z-index: 1;
}

.product-logo-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.product-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
}

.juridik-logo-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    font-size: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
}

.product-title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.product-tagline {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.product-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.product-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.badge {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
}

.badge-primary {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    color: var(--white);
}

.badge-secondary {
    background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
    color: var(--white);
}

.badge-accent {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: var(--white);
}

.product-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 16px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

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

/* Product Overview */
.product-overview {
    padding: var(--section-padding);
    background: var(--white);
}

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

.overview-text {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--gray);
    line-height: 1.9;
}

/* Features Showcase */
.features-showcase {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.feature-showcase-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
}

.feature-showcase-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 25px;
}

.feature-showcase-card h3 {
    margin-bottom: 20px;
    color: var(--dark);
}

.feature-showcase-card p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 1.05rem;
}

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

.feature-list-bullets li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray);
}

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

/* Nutrition Categories */
.nutrition-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.nutrition-category {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 12px;
}

.nutrition-category h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.nutrition-category p {
    margin: 0;
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-bottom: 15px;
}

/* Why Product */
.why-product {
    padding: var(--section-padding);
}

/* Tech Stack Section */
.tech-stack-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.tech-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-category-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.tech-category-card h3 {
    margin-bottom: 20px;
    color: var(--dark);
}

.tech-category-card ul {
    list-style: none;
    padding: 0;
}

.tech-category-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
}

.tech-category-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Juridik Specific Styles */
.juridik-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.juridik-hero .product-title,
.juridik-hero .product-tagline,
.juridik-hero .product-description {
    color: var(--white);
}

.juridik-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.juridik-feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-align: center;
}

.juridik-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.juridik-feature-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.juridik-feature-card p {
    color: var(--gray);
    text-align: left;
}

/* Features Showcase Section */
.features-showcase-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

/* Use Cases Section */
.use-cases-section {
    padding: var(--section-padding);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.use-case-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 16px;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.use-case-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.use-case-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

/* Benefits Section */
.benefits-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

/* Responsive Design for Product Pages */
@media (max-width: 768px) {
    .product-title {
        font-size: 2.5rem;
    }
    
    .product-tagline {
        font-size: 1.2rem;
    }
    
    .product-logo {
        width: 100px;
        height: 100px;
    }
    
    .juridik-logo-placeholder {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .product-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 100%;
        max-width: 300px;
    }
    
    .product-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .product-cta-buttons .btn {
        width: 100%;
    }
    
    .feature-showcase-card {
        padding: 30px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Problem Showcase (for Realify) */
.problem-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid #ef4444;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.problem-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.problem-card p {
    color: var(--gray);
}

.platforms-section {
    padding: var(--section-padding);
    background: var(--white);
}

/* ===========================
   LEGAL PAGES & HOW IT WORKS
   =========================== */

/* Legal Content */
.legal-content {
    padding: 60px 0;
    background: var(--light-bg);
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.legal-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
    padding: 20px;
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-light);
}

.legal-section p {
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 15px;
}

.legal-section ul {
    list-style-position: inside;
    margin: 20px 0;
    padding-left: 20px;
}

.legal-section li {
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.legal-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--dark);
    font-weight: 600;
}

.legal-back-link {
    margin-top: 50px;
    text-align: center;
}

/* How It Works Pages */
.how-it-works-intro {
    padding: 60px 0;
    background: var(--white);
}

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

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
}

.getting-started-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Logging Methods */
.logging-methods {
    padding: var(--section-padding);
    background: var(--white);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.method-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.method-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.method-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.method-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.mini-step {
    display: inline-block;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dark);
    border-left: 3px solid var(--primary-color);
}

/* AI Features */
.ai-features-section {
    padding: var(--section-padding);
    background: var(--dark);
    color: var(--white);
}

.ai-features-section .section-title {
    color: var(--white);
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ai-feature-card {
    background: var(--dark-light);
    padding: 40px;
    border-radius: 16px;
    transition: var(--transition);
}

.ai-feature-card:hover {
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid var(--primary-color);
}

.ai-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.ai-feature-card p {
    color: var(--gray-light);
    line-height: 1.6;
}

/* Progress Tracking */
.progress-tracking {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.progress-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.progress-feature {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.progress-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.progress-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.progress-content h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.progress-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Features */
.social-features {
    padding: var(--section-padding);
    background: var(--white);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.social-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 16px;
    transition: var(--transition);
    text-align: center;
}

.social-card:hover {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.05);
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.social-card:hover h3,
.social-card:hover p {
    color: var(--white);
}

.social-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Premium Features */
.premium-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.premium-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.premium-feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.premium-check {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.premium-feature h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.premium-feature p {
    color: var(--gray);
    line-height: 1.5;
}

/* Tips Section */
.tips-section {
    padding: var(--section-padding);
    background: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid var(--accent-color);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.tip-number {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tip-card h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.tip-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* CTA Buttons Group */
.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .legal-document {
        padding: 30px 20px;
    }
    
    .steps-grid,
    .methods-grid,
    .ai-features-grid,
    .social-grid,
    .premium-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons-group {
        flex-direction: column;
    }
}
