:root {
    --armansyah-primary: #6366f1;
    --armansyah-primary-dark: #4f46e5;
    --armansyah-secondary: #64748b;
    --armansyah-accent: #f59e0b;
    --armansyah-accent-light: #fbbf24;
    --armansyah-success: #10b981;
    --armansyah-warning: #f59e0b;
    --armansyah-error: #ef4444;
    --armansyah-text-primary: #0f172a;
    --armansyah-text-secondary: #475569;
    --armansyah-text-light: #94a3b8;
    --armansyah-bg-primary: #ffffff;
    --armansyah-bg-secondary: #f8fafc;
    --armansyah-bg-dark: #0f172a;
    --armansyah-bg-gradient: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    --armansyah-bg-gradient-alt: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --armansyah-border: #e2e8f0;
    --armansyah-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --armansyah-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --armansyah-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --armansyah-radius: 20px;
    --armansyah-radius-sm: 16px;
    --armansyah-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--armansyah-text-primary);
    background: var(--armansyah-bg-primary);
    overflow-x: hidden;
}

.armansyah-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.company-logo {
    display: flex;
    align-items: center;
    width: 180px;
    height: 60px;
    img{
        margin-right: 20px;
        width: 40px;
        height: 40px;
    }
    p{
        font-size: 22px;
        font-weight: 700;
    }
}

.armansyah-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 0 2rem;
}

.armansyah-nav {
    padding: 1.5rem 0;
}

.armansyah-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.armansyah-nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0 2rem;
}

.armansyah-nav-link {
    text-decoration: none;
    color: var(--armansyah-text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--armansyah-transition);
    position: relative;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: transparent;
}

.armansyah-nav-link:hover,
.armansyah-nav-link.active {
    color: var(--armansyah-primary);
    background: rgba(99, 102, 241, 0.05);
}

.armansyah-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--armansyah-bg-gradient);
    border-radius: 2px;
}

.armansyah-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.armansyah-nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--armansyah-text-primary);
    border-radius: 2px;
    transition: var(--armansyah-transition);
}

main {
    margin-top: 100px;
}

.armansyah-hero {
    position: relative;
    background: var(--armansyah-bg-gradient);
    color: white;
    padding: 10rem 0 8rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.armansyah-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.armansyah-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.armansyah-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

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

.armansyah-shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.armansyah-shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.armansyah-shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.armansyah-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.armansyah-hero-text {
    max-width: 650px;
}

.armansyah-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.armansyah-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
}

.armansyah-hero-title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.armansyah-hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.armansyah-hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.armansyah-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: var(--armansyah-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--armansyah-transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

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

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

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

.armansyah-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--armansyah-shadow-hover);
}

.armansyah-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.armansyah-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.armansyah-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.armansyah-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.armansyah-hero-image-container {
    position: relative;
    border-radius: var(--armansyah-radius);
    overflow: hidden;
    box-shadow: var(--armansyah-shadow-lg);
}

.armansyah-hero-image-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.armansyah-hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(79, 70, 229, 0.3) 100%);
    pointer-events: none;
}

.armansyah-hero-stats {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2.5rem;
    background: white;
    padding: 2rem 3rem;
    border-radius: var(--armansyah-radius);
    box-shadow: var(--armansyah-shadow-lg);
}

.armansyah-hero-stat {
    text-align: center;
}

.armansyah-hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--armansyah-primary);
    margin-bottom: 0.5rem;
}

.armansyah-hero-stat-label {
    font-size: 0.875rem;
    color: var(--armansyah-text-secondary);
    font-weight: 500;
}

.armansyah-features {
    padding: 10rem 0;
    background: var(--armansyah-bg-primary);
    position: relative;
}

.armansyah-features-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.armansyah-features-header-content {
    max-width: 600px;
}

.armansyah-section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--armansyah-text-primary);
    background: var(--armansyah-bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.armansyah-section-subtitle {
    font-size: 1.375rem;
    color: var(--armansyah-text-secondary);
    line-height: 1.6;
}

.armansyah-features-header-visual {
    position: relative;
    width: 300px;
    height: 300px;
}

.armansyah-features-pattern {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, var(--armansyah-primary) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, var(--armansyah-accent) 0%, transparent 50%);
    border-radius: 50%;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.armansyah-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.armansyah-feature-card {
    background: white;
    padding: 3.5rem;
    border-radius: var(--armansyah-radius);
    box-shadow: var(--armansyah-shadow);
    transition: var(--armansyah-transition);
    border: 1px solid var(--armansyah-border);
    position: relative;
    overflow: hidden;
}

.armansyah-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--armansyah-bg-gradient);
    transform: scaleX(0);
    transition: var(--armansyah-transition);
}

.armansyah-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--armansyah-shadow-hover);
}

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

.armansyah-feature-card-1::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.armansyah-feature-card-2::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.armansyah-feature-card-3::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.armansyah-feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 25px;
    position: relative;
}

.armansyah-feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--armansyah-bg-gradient);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: var(--armansyah-transition);
}

.armansyah-feature-card:hover .armansyah-feature-icon::before {
    opacity: 1;
}

.armansyah-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.armansyah-feature-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--armansyah-text-primary);
    text-align: center;
}

.armansyah-feature-card p {
    color: var(--armansyah-text-secondary);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.armansyah-feature-link {
    text-align: center;
}

.armansyah-feature-link a {
    color: var(--armansyah-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--armansyah-transition);
    position: relative;
}

.armansyah-feature-link a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--armansyah-primary);
    transition: var(--armansyah-transition);
}

.armansyah-feature-link a:hover::after {
    width: 100%;
}

.armansyah-stats {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--armansyah-bg-dark) 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.armansyah-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
}

.armansyah-stats-content {
    position: relative;
    z-index: 2;
}

.armansyah-stats-text {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.armansyah-stats-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.armansyah-stats-text p {
    font-size: 1.25rem;
    color: var(--armansyah-text-light);
    line-height: 1.6;
}

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

.armansyah-stat-item {
    padding: 3rem 2rem;
    position: relative;
}

.armansyah-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--armansyah-accent);
    border-radius: 2px;
}

.armansyah-stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--armansyah-accent);
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.armansyah-stat-label {
    font-size: 1.25rem;
    color: var(--armansyah-text-light);
    font-weight: 500;
}

.armansyah-cta {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--armansyah-bg-secondary) 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.armansyah-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
}

.armansyah-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.armansyah-cta-text {
    margin-bottom: 3rem;
}

.armansyah-cta-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--armansyah-text-primary);
}

.armansyah-cta-text p {
    font-size: 1.375rem;
    color: var(--armansyah-text-secondary);
    line-height: 1.6;
}

.armansyah-cta-visual {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
}

.armansyah-cta-pattern {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, var(--armansyah-accent) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, var(--armansyah-primary) 0%, transparent 50%);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.armansyah-cta-btn {
    margin: 0 auto;
    font-size: 1.125rem;
    padding: 1.5rem 3rem;
}

.armansyah-footer {
    background: var(--armansyah-bg-dark);
    color: white;
    padding: 5rem 0 2rem;
}

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

.armansyah-footer-section h4 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--armansyah-accent);
}

.armansyah-footer-section p {
    color: var(--armansyah-text-light);
    line-height: 1.6;
}

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

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

.armansyah-footer-section ul li a {
    color: var(--armansyah-text-light);
    text-decoration: none;
    transition: var(--armansyah-transition);
}

.armansyah-footer-section ul li a:hover {
    color: var(--armansyah-accent);
}

.armansyah-footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2.5rem;
    text-align: center;
    color: var(--armansyah-text-light);
}

.armansyah-cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--armansyah-bg-primary);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    z-index: 1000;
    display: none;
}

.armansyah-cookies-banner .armansyah-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.armansyah-cookies-banner p {
    color: var(--armansyah-text-secondary);
    margin: 0;
}

.armansyah-cookies-buttons {
    display: flex;
    gap: 1rem;
}

.armansyah-cookies-buttons .armansyah-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    min-width: 80px;
}

.armansyah-cookies-buttons .armansyah-btn-primary {
    background: var(--armansyah-bg-gradient-alt);
    color: var(--armansyah-bg-primary);
    border: none;
}

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

.armansyah-cookies-buttons .armansyah-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--armansyah-shadow-hover);
}

@media (max-width: 1200px) {
    .armansyah-hero-title {
        font-size: 3.5rem;
    }
    
    .armansyah-hero-content {
        gap: 4rem;
    }
    
    .armansyah-features-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .armansyah-nav-container {
        padding: 0 24px;
    }
    
    .armansyah-nav-menu {
        margin: 0 1.5rem;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .armansyah-header {
        padding: 0 1rem;
    }
    
    .armansyah-nav-container {
        padding: 0 16px;
    }
    
    .armansyah-nav-menu {
        display: none;
        margin: 0;
        gap: 0;
    }
    
    .armansyah-nav-toggle {
        display: flex;
    }
    
    .armansyah-hero {
        padding: 8rem 0 6rem;
        min-height: auto;
    }
    
    .armansyah-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .armansyah-hero-title {
        font-size: 3rem;
    }
    
    .armansyah-hero-buttons {
        justify-content: center;
    }
    
    .armansyah-hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 3rem;
    }
    
    .armansyah-features-grid {
        grid-template-columns: 1fr;
    }
    
    .armansyah-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .armansyah-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .armansyah-cookies-banner .armansyah-container {
        flex-direction: column;
        text-align: center;
    }
    
    .armansyah-cookies-buttons {
        justify-content: center;
    }
    
    .armansyah-cta-visual {
        display: none;
    }
}

@media (max-width: 480px) {
    .armansyah-header {
        padding: 0 0.5rem;
    }
    
    .armansyah-nav-container {
        padding: 0 12px;
    }
    
    .armansyah-hero-title {
        font-size: 2.5rem;
    }
    
    .armansyah-section-title {
        font-size: 2.5rem;
    }
    
    .armansyah-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .armansyah-stat-number {
        font-size: 3rem;
    }
    
    .armansyah-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }
    
    .armansyah-container {
        padding: 0 20px;
    }
}
