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

:root {
    --primary: #1e3a5f;
    --primary-light: #2d5a8a;
    --primary-dark: #152a45;
    --secondary: #e87b35;
    --secondary-light: #f5a623;
    --secondary-hover: #d66a25;
    --accent: #00b894;
    --accent-light: #55efc4;
    --purple: #6c5ce7;
    --pink: #fd79a8;
    --bg-light: #f8f9fa;
    --bg-alt: #e8f4f8;
    --text: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.15);
    --shadow-color: 0 10px 30px rgba(232, 123, 53, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--secondary);
}

/* === LAYOUT === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

/* === DECORATIVE ELEMENTS === */
.decoration {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(232, 123, 53, 0.1), rgba(245, 166, 35, 0.05));
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.1), rgba(85, 239, 196, 0.05));
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.dots-pattern {
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--primary) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.3;
}

/* === WAVE DIVIDERS === */
.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-top {
    top: 0;
    transform: rotate(180deg);
}

.wave-bottom {
    bottom: 0;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 3vw, 1.4rem); font-weight: 600; }

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    box-shadow: var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 123, 53, 0.4);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Pulse animation for CTA */
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232, 123, 53, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(232, 123, 53, 0); }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* === HEADER === */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    border-radius: 2px;
    transition: width var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    transition: var(--transition);
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 100px;
    /* Background set via inline style on each page */
    position: relative;
    overflow: hidden;
}

/* Subpage hero - smaller, more compact */
.hero.hero-subpage {
    min-height: auto;
    padding: 140px 0 80px;
}

/* Animated background shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s infinite ease-in-out;
}

.hero-shape:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 10%;
    animation-delay: -5s;
}

.hero-shape:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
    animation-delay: -10s;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-light);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform var(--transition);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--secondary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* === STATS BAR === */
.stats-bar {
    background: var(--white);
    padding: 40px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 0 20px;
    border-right: 1px solid #eee;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 5px;
}

/* === SERVICE CARDS === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 50px 35px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, #e8f4f8, #d4edfc); }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, #fff3e6, #ffe4cc); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 50px;
    height: 50px;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* === SOFTWARE CARDS === */
.bg-gradient {
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--white) 100%);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 123, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

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

.card:hover::after {
    opacity: 1;
}

.card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.08);
}

.card-img-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-body {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.card-body h3 {
    margin-bottom: 0.8rem;
    transition: color var(--transition);
}

.card:hover .card-body h3 {
    color: var(--secondary);
}

.card-body p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* === REFERENCES === */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.ref-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    display: block;
}

.ref-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.ref-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ref-card:hover img {
    transform: scale(1.05);
}

.ref-card-body {
    padding: 20px;
    background: linear-gradient(180deg, var(--white), var(--bg-light));
}

.ref-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.ref-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === ABOUT === */
.about-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-alt) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.about-img::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: 0.3;
}

.about-img::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--secondary) 3px, transparent 3px);
    background-size: 15px 15px;
    z-index: 0;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text);
}

.highlight-box {
    background: linear-gradient(135deg, var(--white), var(--bg-alt));
    padding: 25px 30px;
    border-radius: var(--radius);
    border-left: 5px solid var(--secondary);
    margin-top: 2rem;
    box-shadow: var(--shadow);
}

.highlight-box strong {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* === FAQ === */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
}

details {
    background: linear-gradient(135deg, var(--bg-light), var(--white));
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all var(--transition);
}

details:hover {
    box-shadow: var(--shadow-lg);
}

details[open] {
    background: var(--white);
    border-left: 4px solid var(--secondary);
}

summary {
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition);
}

summary:hover {
    color: var(--secondary);
}

summary::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--secondary);
    font-weight: 300;
    transition: transform var(--transition);
}

details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

summary::-webkit-details-marker {
    display: none;
}

details .faq-content {
    padding: 0 28px 22px;
    color: var(--text-light);
    line-height: 1.8;
}

/* === TESTIMONIALS === */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonials-section .section-title h2,
.testimonials-section .section-title p {
    color: var(--white);
}

.testimonials-section .section-title h2::after {
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial {
    background: var(--white);
    padding: 40px 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--secondary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text);
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-alt);
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* === CONTACT === */
.contact-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--bg-alt), var(--white));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary);
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.contact-item a,
.contact-item p {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--secondary);
}

/* === FOOTER === */
footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    opacity: 0.7;
    font-size: 0.95rem;
}

/* === SCROLL ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        display: block;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image::before {
        display: none;
    }
    
    .hero-image img {
        transform: none;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item:nth-child(2) {
        border-right: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .ref-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 25px;
        gap: 20px;
        box-shadow: var(--shadow);
        z-index: 999;
    }
    
    nav.active {
        display: flex !important;
    }
    
    /* Hero mobil */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero-content {
        display: block;
    }
    
    .hero-image {
        display: block;
        max-width: 350px;
        margin: 2rem auto 0;
    }
    
    .hero-image img {
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }
    
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 8px;
    }
    
    .hero-feature {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .about-img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-img::before,
    .about-img::after {
        display: none;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-bar {
        margin-top: -30px;
        border-radius: var(--radius);
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-item {
        border-right: none;
        padding: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ref-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        margin-bottom: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==========================================================================
   ALOLDAL STÍLUSOK (keszlet-raktar.html és hasonló aloldalak)
   ========================================================================== */

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:first-child {
    border-top: 4px solid var(--secondary);
}

.pricing-card:last-child {
    border-top: 4px solid var(--accent);
}

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

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card:last-child .pricing-price {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    flex-shrink: 0;
}

/* Features detailed */
.features-detailed {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-top: 3rem;
}

.features-detailed h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-alt);
}

.features-detailed h2 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.features-detailed h2:first-child {
    margin-top: 0;
}

.features-detailed h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.features-detailed h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.features-detailed h5 {
    margin-top: 1.5rem;
    color: var(--secondary);
}

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

.features-detailed strong {
    color: var(--primary);
}

.features-detailed ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-light);
}

.features-detailed ul li {
    margin-bottom: 0.3rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.gallery-item::after {
    content: '🔍 Kattints a nagyításhoz';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 30px 15px 15px;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.back-link:hover {
    opacity: 1;
    color: var(--white);
}

.back-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb-separator {
    opacity: 0.5;
}

.breadcrumb-current {
    color: var(--white);
    font-weight: 500;
}

/* Subpage hero adjustments */
.hero-subpage .hero-grid {
    gap: 40px;
}

.hero-subpage h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 1rem;
}

.hero-subpage .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.hero-subpage .hero-features {
    margin-bottom: 2rem;
}

.hero-subpage .hero-image {
    max-width: 500px;
}

.hero-subpage .hero-image img {
    border-radius: var(--radius);
}

/* Video container */
.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-thumbnail img {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.video-thumbnail:hover .video-overlay {
    background: rgba(0,0,0,0.2);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(232,123,53,0.4);
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--secondary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.lightbox-close:hover {
    background: var(--secondary-hover);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}

.lightbox-nav:hover {
    background: var(--secondary);
    color: white;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* ALOLDAL RESPONSIVE */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    /* Pricing mobil */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
    
    /* Benefits mobil */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    /* Gallery mobil */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .gallery-item::after {
        opacity: 1;
        font-size: 0.8rem;
        padding: 20px 10px 10px;
    }
    
    /* Features detailed mobil */
    .features-detailed {
        padding: 25px 20px;
        margin-top: 2rem;
    }
    
    .features-detailed h3 {
        font-size: 1.2rem;
    }
    
    .features-detailed p {
        font-size: 0.95rem;
    }
    
    /* Back link */
    .back-link {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    /* Lightbox mobil */
    .lightbox-content {
        max-width: 100%;
    }
    
    .lightbox-close {
        top: -45px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lightbox-prev {
        left: 5px;
    }
    
    .lightbox-next {
        right: 5px;
    }
}

/* === TRUST BADGES === */
.trust-badges {
    padding: 40px 0;
    background: var(--bg-light);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.badge {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.badge svg {
    margin: 0 auto 15px;
    display: block;
}

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

.badge strong {
    color: var(--primary);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .badges-grid {
        grid-template-columns: 1fr;
    }
}

/* === MIÉRT VÁLASSZ ENGEM === */
.why-choose {
    padding: 80px 0;
    background: var(--bg-gradient);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.reason {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
    border-top: 4px solid var(--primary);
}

.reason:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--secondary);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.reason h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.reason p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Színes top border minden kártyára */
.reason:nth-child(1) {
    border-top-color: #1e3a5f; /* primary */
}

.reason:nth-child(2) {
    border-top-color: #e87b35; /* secondary */
}

.reason:nth-child(3) {
    border-top-color: #00b894; /* accent */
}

.reason:nth-child(4) {
    border-top-color: #6c5ce7; /* purple */
}

/* Mobil nézet */
@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .reason {
        padding: 25px;
    }
    
    .reason-icon {
        font-size: 2.5rem;
    }
}

/* === CTA BOXES & SECTIONS === */

/* CTA Box (Szolgáltatások után) */
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 50px 40px;
    margin: 60px auto;
    max-width: 800px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box h3 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.cta-box .btn {
    position: relative;
    z-index: 1;
    background: var(--white);
    color: var(--primary);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-box .btn:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 123, 53, 0.4);
}

/* CTA Section (Referenciák után) */
.cta-section {
    background: var(--bg-light);
    padding: 60px 40px;
    margin: 80px auto;
    max-width: 700px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 3px solid var(--secondary);
    position: relative;
}

.cta-section::before {
    content: '✨';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    background: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--secondary);
}

.cta-section h3 {
    color: var(--primary);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 25px;
    margin-top: 20px;
}

.cta-section .btn {
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-section .btn:hover {
    transform: scale(1.05);
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
    .cta-box,
    .cta-section {
        padding: 40px 30px;
        margin: 50px 20px;
    }
    
    .cta-box h3,
    .cta-section h3 {
        font-size: 1.3rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
    
    .cta-box .btn,
    .cta-section .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .cta-section::before {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
        top: -25px;
    }
}

@media (max-width: 480px) {
    .cta-box,
    .cta-section {
        padding: 30px 20px;
        margin: 40px 15px;
        border-radius: var(--radius);
    }
    
    .cta-box h3 {
        font-size: 1.2rem;
    }
    
    .cta-section h3 {
        font-size: 1.1rem;
    }
}

/* ============================================
   ÚJ ELEMEK CSS - keszlet-raktar.html
   ============================================ */

/* === DEMO SCHEDULING FORM === */
.demo-section {
    padding: 80px 0;
    background: var(--white);
}

.demo-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition);
    background: var(--white);
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.demo-form textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .demo-form-wrapper {
        padding: 30px 20px;
    }
}

/* === FEATURE COMPARISON TABLE === */
.comparison-table-wrapper {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--bg-light);
}

.comparison-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
    margin-bottom: 30px;
}

.comparison-table {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 20px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th {
    background: var(--primary);
    color: var(--white);
    padding: 15px 10px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
}

.comparison-table th.featured-col {
    background: var(--secondary);
}

.price-small {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    display: block;
    margin-top: 5px;
}

.comparison-table td {
    padding: 15px 10px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text);
}

.comparison-table .featured-col {
    background: rgba(232, 123, 53, 0.05);
}

.check {
    color: #00b894;
    font-size: 1.5rem;
    font-weight: bold;
    display: inline-block;
}

.cross {
    color: #d63031;
    font-size: 1.5rem;
    font-weight: bold;
    display: inline-block;
}

.comparison-table small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 3px;
}

.highlight-row {
    background: rgba(30, 58, 95, 0.03);
}

.highlight-row td {
    font-weight: 600;
}

.total-row {
    background: var(--bg-light);
    font-size: 1.1rem;
}

.total-row td {
    padding: 20px 10px;
    border-bottom: none;
}

.best-value {
    color: var(--secondary);
    font-weight: 700;
    display: inline-block;
    margin-top: 5px;
}

.comparison-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(232, 123, 53, 0.1);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .comparison-table {
        padding: 10px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 5px;
        font-size: 0.85rem;
    }
    
    .check, .cross {
        font-size: 1.2rem;
    }
}

/* === HOGYAN MŰKÖDIK / PROCESS FLOW === */
.process-section {
    padding: 80px 0;
    background: var(--bg-gradient);
}

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

.process-step {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(30, 58, 95, 0.3);
}

.step-icon {
    font-size: 3rem;
    margin: 20px 0 15px;
}

.process-step h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.step-time {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    background: rgba(232, 123, 53, 0.1);
    border-radius: var(--radius);
    display: inline-block;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 60px auto 40px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    flex-wrap: wrap;
    max-width: 900px;
}

.timeline-item {
    text-align: center;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    min-width: 140px;
}

.timeline-item.success {
    background: rgba(0, 184, 148, 0.1);
    border: 2px solid #00b894;
}

.timeline-day {
    display: block;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-item.success .timeline-day {
    color: #00b894;
    font-size: 1.2rem;
}

.timeline-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.timeline-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
}

.process-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 184, 148, 0.1);
    border-radius: var(--radius);
    border-left: 4px solid #00b894;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
    }
    
    .timeline-item {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
}