: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', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--armansyah-text-primary);
    background: var(--armansyah-bg-primary);
    overflow-x: hidden;
}

.armansyah-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.armansyah-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--armansyah-border);
    z-index: 1000;
    transition: var(--armansyah-transition);
}

.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;
}

.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-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);
}

/* Hero Section */
.armansyah-hero {
    position: relative;
    background: var(--armansyah-bg-gradient);
    color: white;
    padding: 6rem 0 4rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.armansyah-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
}

.armansyah-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.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: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.armansyah-shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.armansyah-shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.armansyah-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.armansyah-hero-text {
    max-width: 500px;
}

.armansyah-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--armansyah-radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.armansyah-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.armansyah-hero-title-line {
    display: block;
    background: linear-gradient(135deg, var(--armansyah-accent-light) 0%, var(--armansyah-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.armansyah-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.armansyah-hero-visual {
    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 {
    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.2) 0%, rgba(79, 70, 229, 0.2) 100%);
    pointer-events: none;
}

/* Privacy Overview Section */
.armansyah-privacy-overview {
    padding: 6rem 0;
    background: var(--armansyah-bg-secondary);
}

.armansyah-privacy-overview-content {
    text-align: center;
}

.armansyah-privacy-overview-text {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.armansyah-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--armansyah-text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--armansyah-primary) 0%, var(--armansyah-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.armansyah-section-subtitle {
    font-size: 1.125rem;
    color: var(--armansyah-text-secondary);
    line-height: 1.6;
}

.armansyah-privacy-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.armansyah-privacy-overview-card {
    background: var(--armansyah-bg-primary);
    padding: 2.5rem 2rem;
    border-radius: var(--armansyah-radius);
    box-shadow: var(--armansyah-shadow);
    transition: var(--armansyah-transition);
    text-align: center;
    border: 1px solid var(--armansyah-border);
}

.armansyah-privacy-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--armansyah-shadow-hover);
}

.armansyah-privacy-overview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--armansyah-primary) 0%, var(--armansyah-primary-dark) 100%);
    border-radius: 50%;
}

.armansyah-privacy-overview-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.armansyah-privacy-overview-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--armansyah-text-primary);
    margin-bottom: 1rem;
}

.armansyah-privacy-overview-card p {
    color: var(--armansyah-text-secondary);
    line-height: 1.6;
}

/* Privacy Details Section */
.armansyah-privacy-details {
    padding: 6rem 0;
    background: var(--armansyah-bg-primary);
}

.armansyah-privacy-details-content {
    max-width: 1000px;
    margin: 0 auto;
}

.armansyah-privacy-section {
    margin-bottom: 4rem;
    background: var(--armansyah-bg-secondary);
    border-radius: var(--armansyah-radius);
    padding: 3rem;
    box-shadow: var(--armansyah-shadow);
    border: 1px solid var(--armansyah-border);
}

.armansyah-privacy-section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--armansyah-border);
}

.armansyah-privacy-section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--armansyah-accent) 0%, var(--armansyah-accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.armansyah-privacy-section-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.armansyah-privacy-section-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--armansyah-text-primary);
    margin: 0;
}

.armansyah-privacy-section-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.armansyah-privacy-item {
    background: var(--armansyah-bg-primary);
    padding: 2rem;
    border-radius: var(--armansyah-radius-sm);
    border: 1px solid var(--armansyah-border);
}

.armansyah-privacy-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--armansyah-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--armansyah-primary);
}

.armansyah-privacy-item ul {
    list-style: none;
    padding: 0;
}

.armansyah-privacy-item li {
    padding: 0.5rem 0;
    color: var(--armansyah-text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.armansyah-privacy-item li::before {
    content: '•';
    color: var(--armansyah-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Privacy Contact Section */
.armansyah-privacy-contact {
    padding: 6rem 0;
    background: var(--armansyah-bg-secondary);
}

.armansyah-privacy-contact-content {
    text-align: center;
}

.armansyah-privacy-contact-text {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.armansyah-privacy-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.armansyah-privacy-contact-card {
    background: var(--armansyah-bg-primary);
    padding: 2.5rem 2rem;
    border-radius: var(--armansyah-radius);
    box-shadow: var(--armansyah-shadow);
    transition: var(--armansyah-transition);
    text-align: center;
    border: 1px solid var(--armansyah-border);
}

.armansyah-privacy-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--armansyah-shadow-hover);
}

.armansyah-privacy-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--armansyah-success) 0%, #059669 100%);
    border-radius: 50%;
}

.armansyah-privacy-contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.armansyah-privacy-contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--armansyah-text-primary);
    margin-bottom: 1rem;
}

.armansyah-privacy-contact-card p {
    color: var(--armansyah-primary);
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.armansyah-privacy-contact-label {
    display: block;
    color: var(--armansyah-text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* CTA Section */
.armansyah-cta {
    padding: 6rem 0;
    background: var(--armansyah-bg-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.armansyah-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.armansyah-cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.armansyah-cta-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.armansyah-cta-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.armansyah-cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.armansyah-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.armansyah-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--armansyah-radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: var(--armansyah-transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    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-accent);
    color: white;
    box-shadow: var(--armansyah-shadow);
}

.armansyah-btn-primary:hover {
    background: var(--armansyah-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--armansyah-shadow-hover);
}

.armansyah-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.armansyah-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.armansyah-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.armansyah-cta-btn {
    background: var(--armansyah-accent);
    color: white;
}

.armansyah-cta-btn:hover {
    background: var(--armansyah-accent-light);
}

/* Footer */
.armansyah-footer {
    background: var(--armansyah-bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.armansyah-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.armansyah-footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--armansyah-accent-light);
}

.armansyah-footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.armansyah-footer-section ul {
    list-style: none;
    padding: 0;
}

.armansyah-footer-section ul li {
    margin-bottom: 0.75rem;
}

.armansyah-footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--armansyah-transition);
}

.armansyah-footer-section ul li a:hover {
    color: var(--armansyah-accent-light);
}

.armansyah-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Cookies Banner */
.armansyah-cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--armansyah-bg-dark);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.armansyah-cookies-banner .armansyah-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.armansyah-cookies-banner p {
    flex: 1;
    margin: 0;
    line-height: 1.5;
}

.armansyah-cookies-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.armansyah-cookies-buttons .armansyah-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.armansyah-cookies-buttons .armansyah-btn-primary {
    background: var(--armansyah-accent);
    color: white;
    border: none;
}

.armansyah-cookies-buttons .armansyah-btn-primary:hover {
    background: var(--armansyah-accent-light);
}

.armansyah-cookies-buttons .armansyah-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.armansyah-cookies-buttons .armansyah-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .armansyah-nav-menu {
        display: none;
    }

    .armansyah-nav-toggle {
        display: flex;
    }

    .armansyah-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .armansyah-hero-title {
        font-size: 2.5rem;
    }

    .armansyah-section-title {
        font-size: 2rem;
    }

    .armansyah-privacy-overview-grid,
    .armansyah-privacy-contact-grid {
        grid-template-columns: 1fr;
    }

    .armansyah-privacy-section-content {
        grid-template-columns: 1fr;
    }

    .armansyah-privacy-section {
        padding: 2rem;
    }

    .armansyah-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .armansyah-cookies-banner .armansyah-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .armansyah-cookies-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .armansyah-container {
        padding: 0 1rem;
    }

    .armansyah-hero {
        padding: 4rem 0 2rem;
        min-height: 60vh;
    }

    .armansyah-hero-title {
        font-size: 2rem;
    }

    .armansyah-hero-subtitle {
        font-size: 1rem;
    }

    .armansyah-privacy-overview,
    .armansyah-privacy-details,
    .armansyah-privacy-contact,
    .armansyah-cta {
        padding: 4rem 0;
    }
}