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

:root {
    --prediama-primary: #1a365d;
    --prediama-secondary: #2d3748;
    --prediama-accent: #d69e2e;
    --prediama-light: #f7fafc;
    --prediama-white: #ffffff;
    --prediama-gray-100: #f7fafc;
    --prediama-gray-200: #edf2f7;
    --prediama-gray-300: #e2e8f0;
    --prediama-gray-600: #718096;
    --prediama-gray-800: #2d3748;
    --prediama-blue-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --prediama-hero-gradient: linear-gradient(135deg, #1a365d 0%, #2d3748 50%, #4a5568 100%);
    --prediama-card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --prediama-hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    --prediama-border-radius: 12px;
    --prediama-transition: all 0.3s ease;
    --prediama-max-width: 1200px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--prediama-gray-800);
    background-color: 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;
}

.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;
}

.prediama-hero {
    position: relative;
    background: var(--prediama-hero-gradient);
    color: var(--prediama-white);
    padding: 6rem 0;
    overflow: hidden;
}

.prediama-hero-decoration {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    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 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--prediama-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.prediama-hero-title {
    font-size: 3.5rem;
    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.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.prediama-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.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;
}

.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);
}

.prediama-hero-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--prediama-border-radius);
    box-shadow: var(--prediama-card-shadow);
}

.prediama-services-overview {
    padding: 6rem 0;
    background: var(--prediama-gray-100);
}

.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;
}

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

.prediama-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.prediama-service-card {
    background: var(--prediama-white);
    padding: 2.5rem;
    border-radius: var(--prediama-border-radius);
    text-align: center;
    box-shadow: var(--prediama-card-shadow);
    transition: var(--prediama-transition);
    position: relative;
    overflow: hidden;
}

.prediama-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1a365d 0%, #d69e2e 100%);
}

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

.prediama-service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.prediama-service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--prediama-primary);
    margin-bottom: 1rem;
}

.prediama-service-description {
    color: var(--prediama-gray-600);
    line-height: 1.6;
}

.prediama-stats-section {
    padding: 4rem 0;
    background: var(--prediama-hero-gradient);
    color: var(--prediama-white);
}

.prediama-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.prediama-stat-item {
    padding: 1rem;
}

.prediama-stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prediama-stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

.prediama-about-preview {
    padding: 6rem 0;
}

.prediama-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.prediama-about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--prediama-primary);
    margin-bottom: 1.5rem;
}

.prediama-about-description {
    font-size: 1.125rem;
    color: var(--prediama-gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.prediama-about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.prediama-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--prediama-gray-100);
    border-radius: 8px;
    transition: var(--prediama-transition);
}

.prediama-feature-item:hover {
    background: var(--prediama-gray-200);
}

.prediama-feature-icon {
    width: 40px;
    height: 40px;
}

.prediama-about-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--prediama-border-radius);
    box-shadow: var(--prediama-card-shadow);
}

.prediama-partners-section {
    padding: 4rem 0;
    background: var(--prediama-gray-100);
}

.prediama-partners-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--prediama-primary);
    margin-bottom: 3rem;
}

.prediama-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}
.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-partner-logo {
    width: 150px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--prediama-transition);
}

.prediama-partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.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 .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;
}

/* 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-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .prediama-hero-title {
        font-size: 2.5rem;
    }
    
    .prediama-about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .prediama-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .prediama-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prediama-hero-buttons {
        justify-content: center;
    }
    
    .prediama-container {
        padding: 0 1rem;
    }
    
    .prediama-nav {
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .prediama-about-content.redesigned {
        flex-direction: column;
        gap: 2.5rem;
        padding: 2rem 0;
    }
    .prediama-about-card {
        max-width: 100%;
        min-width: 0;
        padding: 2rem 1.2rem;
    }
    .prediama-about-visual img {
        max-width: 100%;
    }
}

.prediama-process-section {
    padding: 5rem 0 4rem 0;
    background: var(--prediama-gray-100);
}

.prediama-process-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--prediama-primary);
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.prediama-process-desc {
    text-align: center;
    color: var(--prediama-gray-600);
    font-size: 1.08rem;
    margin-bottom: 3.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.prediama-process-steps.refined {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.prediama-process-step.refined {
    background: var(--prediama-white);
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(26,54,93,0.09);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    min-width: 180px;
    max-width: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 0.5rem;
    position: relative;
    z-index: 2;
    transition: box-shadow 0.2s, transform 0.2s;
}

.prediama-process-step.refined:hover {
    box-shadow: 0 8px 32px rgba(26,54,93,0.13);
    transform: translateY(-6px) scale(1.04);
}

.prediama-process-icon-bg {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a365d 0%, #d69e2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 10px rgba(26,54,93,0.10);
}

.prediama-process-icon {
    width: 48px;
    height: 48px;
    display: block;
}

.prediama-process-step-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--prediama-primary);
    margin-bottom: 0.4rem;
    letter-spacing: 0.2px;
}

.prediama-process-step-desc {
    font-size: 0.98rem;
    color: var(--prediama-gray-600);
    opacity: 0.92;
    line-height: 1.5;
}

.prediama-process-arrow {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #1a365d 0%, #d69e2e 100%);
    align-self: center;
    margin: 0 0.2rem;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}
.prediama-process-arrow::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #d69e2e;
    border-right: 2px solid #d69e2e;
    transform: rotate(45deg);
    border-radius: 1px;
}

@media (max-width: 1100px) {
    .prediama-process-step.refined {
        min-width: 140px;
        max-width: 170px;
        padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    }
    .prediama-process-icon-bg {
        width: 56px;
        height: 56px;
    }
    .prediama-process-icon {
        width: 36px;
        height: 36px;
    }
    .prediama-process-arrow {
        width: 24px;
    }
}

@media (max-width: 800px) {
    .prediama-process-steps.refined {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .prediama-process-arrow {
        width: 2px;
        height: 32px;
        background: linear-gradient(180deg, #1a365d 0%, #d69e2e 100%);
        margin: 0.2rem 0;
    }
    .prediama-process-arrow::after {
        left: -4px;
        top: auto;
        bottom: -6px;
        right: auto;
        width: 10px;
        height: 10px;
        border-top: none;
        border-right: 2px solid #d69e2e;
        border-bottom: 2px solid #d69e2e;
        transform: rotate(135deg);
    }
    .prediama-process-step.refined {
        margin: 0.5rem 0;
        min-width: 0;
        max-width: 320px;
        width: 100%;
    }
}