* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --prediama-primary: #1a365d;
    --prediama-secondary: #2d3748;
    --prediama-accent: #d69e2e;
    --prediama-white: #ffffff;
    --prediama-gray-50: #f9fafb;
    --prediama-gray-100: #f3f4f6;
    --prediama-gray-200: #e5e7eb;
    --prediama-gray-300: #d1d5db;
    --prediama-gray-400: #9ca3af;
    --prediama-gray-500: #6b7280;
    --prediama-gray-600: #4b5563;
    --prediama-gray-700: #374151;
    --prediama-gray-800: #1f2937;
    --prediama-gray-900: #111827;
    --prediama-success: #10b981;
    --prediama-warning: #f59e0b;
    --prediama-error: #ef4444;
    --prediama-hero-gradient: linear-gradient(135deg, #1a365d 0%, #d69e2e 100%);
    --prediama-max-width: 1200px;
    --prediama-border-radius: 12px;
    --prediama-transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--prediama-gray-800);
    background: var(--prediama-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.prediama-container {
    max-width: var(--prediama-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header and Navigation */
.prediama-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--prediama-gray-200);
    z-index: 1000;
    transition: var(--prediama-transition);
}

.prediama-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--prediama-max-width);
    margin: 0 auto;
}

.prediama-logo {
    width: 180px;
    height: 60px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.prediama-company-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--prediama-primary);
    letter-spacing: 0.5px;
}

.prediama-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.prediama-nav-menu a {
    text-decoration: none;
    color: var(--prediama-gray-600);
    font-weight: 500;
    transition: var(--prediama-transition);
    position: relative;
}

.prediama-nav-menu a:hover,
.prediama-nav-active {
    color: var(--prediama-primary) !important;
}

.prediama-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--prediama-accent);
    transition: var(--prediama-transition);
}

.prediama-nav-menu a:hover::after,
.prediama-nav-active::after {
    width: 100%;
}

.prediama-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.prediama-nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--prediama-primary);
    transition: var(--prediama-transition);
}

.prediama-main {
    margin-top: 80px;
}

/* Hero Section */
.prediama-hero-services {
    position: relative;
    background: var(--prediama-hero-gradient);
    color: var(--prediama-white);
    padding: 4rem 0;
    text-align: center;
    overflow: hidden;
}

.prediama-hero-decoration {
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(214, 158, 46, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.prediama-hero-content {
    position: relative;
    z-index: 2;
}

.prediama-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prediama-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Button Styles */
.prediama-btn-primary,
.prediama-btn-secondary,
.prediama-btn-outline {
    padding: 1rem 2rem;
    border-radius: var(--prediama-border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--prediama-transition);
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.prediama-btn-primary {
    background: var(--prediama-accent);
    color: var(--prediama-white);
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.prediama-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 158, 46, 0.4);
}

.prediama-btn-secondary {
    background: transparent;
    color: var(--prediama-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.prediama-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.prediama-btn-outline {
    background: transparent;
    color: var(--prediama-primary);
    border: 2px solid var(--prediama-primary);
}

.prediama-btn-outline:hover {
    background: var(--prediama-primary);
    color: var(--prediama-white);
}

/* Section Headers */
.prediama-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.prediama-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--prediama-primary);
    margin-bottom: 1rem;
    position: relative;
}

.prediama-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--prediama-accent);
}

.prediama-section-subtitle {
    font-size: 1.1rem;
    color: var(--prediama-gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Overview Section */
.prediama-services-overview {
    padding: 5rem 0;
    background: var(--prediama-gray-100);
}

.prediama-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.prediama-overview-item {
    background: var(--prediama-white);
    padding: 2.5rem;
    border-radius: var(--prediama-border-radius);
    box-shadow: var(--prediama-card-shadow);
    text-align: center;
    transition: var(--prediama-transition);
    position: relative;
    overflow: hidden;
}

.prediama-overview-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--prediama-primary);
}

.prediama-overview-item.primary::before {
    background: var(--prediama-primary);
}

.prediama-overview-item.secondary::before {
    background: var(--prediama-accent);
}

.prediama-overview-item.tertiary::before {
    background: var(--prediama-secondary);
}

.prediama-overview-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--prediama-hover-shadow);
}

.prediama-overview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--prediama-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prediama-overview-icon img {
    width: 50px;
    height: 50px;
}

.prediama-overview-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--prediama-primary);
    margin-bottom: 1rem;
}

.prediama-overview-desc {
    color: var(--prediama-gray-600);
    line-height: 1.6;
}

/* Products Section */
.prediama-products-section {
    padding: 5rem 0;
    background: var(--prediama-white);
}

.prediama-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.prediama-product-card {
    background: var(--prediama-white);
    border-radius: var(--prediama-border-radius);
    box-shadow: var(--prediama-card-shadow);
    padding: 2.5rem;
    transition: var(--prediama-transition);
    position: relative;
    border: 1px solid var(--prediama-gray-200);
}

.prediama-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--prediama-hover-shadow);
}

.prediama-product-card.featured {
    border: 2px solid var(--prediama-accent);
    background: linear-gradient(135deg, #fef7e7 0%, #ffffff 100%);
}

.prediama-product-card.highlighted {
    border: 2px solid var(--prediama-primary);
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
}

.prediama-product-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--prediama-accent);
    color: var(--prediama-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prediama-product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--prediama-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prediama-product-icon img {
    width: 50px;
    height: 50px;
}

.prediama-product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--prediama-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.prediama-product-description {
    color: var(--prediama-gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.prediama-product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.prediama-product-features li {
    padding: 0.5rem 0;
    color: var(--prediama-gray-600);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.4;
}

.prediama-product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--prediama-accent);
    font-weight: bold;
}

.prediama-product-card .prediama-btn-primary,
.prediama-product-card .prediama-btn-outline {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* Advantages Section */
.prediama-advantages-section {
    padding: 5rem 0;
    background: var(--prediama-gray-100);
}

.prediama-advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.prediama-advantages-text .prediama-section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.prediama-advantages-text .prediama-section-title::after {
    left: 0;
    transform: none;
}

.prediama-advantages-text .prediama-section-subtitle {
    text-align: left;
    margin-bottom: 2rem;
}

.prediama-advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prediama-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--prediama-white);
    padding: 1.5rem;
    border-radius: var(--prediama-border-radius);
    box-shadow: var(--prediama-card-shadow);
    transition: var(--prediama-transition);
}

.prediama-advantage-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--prediama-hover-shadow);
}

.prediama-advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--prediama-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prediama-advantage-icon img {
    width: 35px;
    height: 35px;
}

.prediama-advantage-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--prediama-primary);
    margin-bottom: 0.5rem;
}

.prediama-advantage-desc {
    color: var(--prediama-gray-600);
    line-height: 1.5;
}

.prediama-advantages-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.prediama-advantages-visual img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--prediama-border-radius);
    box-shadow: var(--prediama-card-shadow);
}

/* Cases Section */
.prediama-cases-section {
    padding: 5rem 0;
    background: var(--prediama-white);
}

.prediama-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.prediama-case-item {
    background: var(--prediama-white);
    border-radius: var(--prediama-border-radius);
    box-shadow: var(--prediama-card-shadow);
    padding: 2rem;
    border-left: 4px solid var(--prediama-accent);
    transition: var(--prediama-transition);
}

.prediama-case-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--prediama-hover-shadow);
}

.prediama-case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.prediama-case-logo {
    width: 60px;
    height: 60px;
    background: var(--prediama-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prediama-case-logo img {
    width: 40px;
    height: 40px;
}

.prediama-case-company {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--prediama-primary);
    margin-bottom: 0.2rem;
}

.prediama-case-sector {
    color: var(--prediama-gray-600);
    font-size: 0.9rem;
}

.prediama-case-quote {
    font-style: italic;
    color: var(--prediama-gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.prediama-case-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--prediama-accent);
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.3;
}

.prediama-case-results {
    display: flex;
    justify-content: space-around;
    padding-top: 1rem;
    border-top: 1px solid var(--prediama-gray-200);
}

.prediama-case-metric {
    text-align: center;
}

.prediama-metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--prediama-primary);
    display: block;
}

.prediama-metric-label {
    font-size: 0.9rem;
    color: var(--prediama-gray-600);
}

/* CTA Section */
.prediama-cta-section {
    padding: 5rem 0;
    background: var(--prediama-hero-gradient);
    color: var(--prediama-white);
    text-align: center;
}

.prediama-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prediama-cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.prediama-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Styles */
.prediama-footer {
    background: var(--prediama-primary);
    color: var(--prediama-white);
    padding: 3rem 0 1rem;
}

.prediama-footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}



.prediama-footer-brand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.prediama-company-name.footer {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    letter-spacing: 0.3px;
    max-width: 200px;
    text-align: left;
}

.prediama-footer-brand .prediama-logo {
    margin-bottom: 1rem;
}

.prediama-footer-description {
    opacity: 0.8;
    line-height: 1.6;
}

.prediama-footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.prediama-footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--prediama-accent);
}

.prediama-footer-list {
    list-style: none;
}

.prediama-footer-list li {
    margin-bottom: 0.5rem;
}

.prediama-footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--prediama-transition);
}

.prediama-footer-list a:hover {
    color: var(--prediama-white);
}

.prediama-contact-info p {
    margin-bottom: 0.25rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.prediama-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Design */
/* Footer Unified Style */
.footer {
    background-color: #1a365d;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #d69e2e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #d69e2e;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    margin-top: 0;
}

.footer-bottom p {
    opacity: 0.8;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .prediama-nav-menu {
        display: none;
    }
    
    .prediama-nav-toggle {
        display: flex;
    }
    
    .prediama-hero-title {
        font-size: 2.5rem;
    }
    
    .prediama-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .prediama-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .prediama-products-grid {
        grid-template-columns: 1fr;
    }
    
    .prediama-advantages-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .prediama-advantages-text .prediama-section-title {
        text-align: center;
    }
    
    .prediama-advantages-text .prediama-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .prediama-advantages-text .prediama-section-subtitle {
        text-align: center;
    }
    
    .prediama-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .prediama-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .prediama-footer-links {
        grid-template-columns: 1fr;
    }
    
    .prediama-container {
        padding: 0 1rem;
    }
    
    .prediama-nav {
        padding: 1rem;
    }
    
    .prediama-cta-title {
        font-size: 2rem;
    }
    
    .prediama-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .prediama-cta-buttons .prediama-btn-primary,
    .prediama-cta-buttons .prediama-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .prediama-hero-title {
        font-size: 2rem;
    }
    
    .prediama-section-title {
        font-size: 2rem;
    }
    
    .prediama-product-card,
    .prediama-overview-item,
    .prediama-case-item {
        padding: 1.5rem;
    }
    
    .prediama-advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .prediama-case-results {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
} 