/* ========================================
   NASKAH PRIMA - MAIN STYLESHEET
   Modern, Elegant, Mobile-First Design
   Primary Color: #554D89 (Purple)
   ======================================== */

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

:root {
    /* Primary Colors */
    --primary-purple: #554d89;
    --primary-dark: #3d3666;
    --primary-light: #7068a8;

    /* Secondary Colors */
    --secondary-gold: #f4a261;
    --secondary-teal: #2a9d8f;

    /* Neutral Colors */
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --black: #0f172a;

    /* Accent Colors */
    --success-green: #10b981;
    --error-red: #ef4444;
    --warning-yellow: #f59e0b;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #554d89 0%, #7068a8 100%);
    --gradient-secondary: linear-gradient(135deg, #2a9d8f 0%, #f4a261 100%);

    /* Typography */
    --font-primary:
        "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md:
        0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg:
        0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--black);
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}
h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}
h4 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}
h5 {
    font-size: 1.125rem;
}
h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--space-sm);
}

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

a:hover {
    color: var(--primary-dark);
}

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

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: #0f172a;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    margin-bottom: var(--space-xl);
}

.section-title {
    margin-bottom: var(--space-sm);
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

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

.btn-outline {
    background: transparent;
    color: var(--gray-800);
    border-color: var(--gray-300);
}

.btn-outline:hover {
    background: var(--gray-100);
    border-color: var(--gray-600);
    color: var(--gray-800);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn i {
    font-size: 1.2em;
}

/* Pulse Animation for CTA */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(85, 77, 137, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(85, 77, 137, 0);
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--black);
}

.logo-text {
    color: var(--black);
}

.logo-highlight {
    color: var(--primary-purple);
}

.nav-menu {
    display: none;
    list-style: none;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: var(--gray-800);
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-cta {
    display: none;
}

@media (min-width: 768px) {
    .nav-cta {
        display: inline-flex;
    }
}

.nav-cta-mobile {
    display: block;
}

@media (min-width: 768px) {
    .nav-cta-mobile {
        display: none;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: all var(--transition-base);
}

/* Mobile Menu Open State */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: calc(80px + var(--space-2xl)) 0 var(--space-3xl);
    background: linear-gradient(135deg, #f8f9fa 0%, #e8e5f4 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(85, 77, 137, 0.1);
    color: var(--primary-purple);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-md);
}

.hero-title {
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: var(--font-weight-medium);
}

.hero-feature i {
    color: var(--success-green);
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-purple);
    font-weight: var(--font-weight-bold);
}

.trust-item span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    margin: 0 auto;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--white);
    box-shadow: var(--shadow-md);
    color: var(--primary-purple);
}

@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--light-bg);
    transition: all var(--transition-base);
}

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

.problem-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.problem-icon.red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-red);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.problem-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8e5f4 100%);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .solution-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.solution-card {
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

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

.solution-card.highlight {
    border: 2px solid var(--primary-purple);
}

.solution-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.solution-icon.purple {
    background: linear-gradient(135deg, #554d89 0%, #7068a8 100%);
    color: var(--white);
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.solution-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.solution-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    padding: 0.25rem 0.75rem;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: var(--space-3xl) 0;
    background: var(--primary-purple);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
}

.stat-card i {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    opacity: 0.8;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.25rem;
}

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

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    background: var(--white);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.pricing-card.popular {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .pricing-card.popular {
        transform: scale(1);
    }
}

.popular-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    z-index: 1;
}

.pricing-header {
    padding: var(--space-lg);
    text-align: center;
    background: var(--light-bg);
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.pricing-body {
    padding: var(--space-lg);
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

.pricing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-md);
}

.pricing-level {
    font-weight: var(--font-weight-semibold);
    color: var(--gray-800);
}

.pricing-price {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-purple);
}

.pricing-features {
    list-style: none;
    margin-bottom: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.pricing-features li i {
    color: var(--success-green);
    margin-top: 0.25rem;
}

.pricing-features li.disabled i {
    color: var(--gray-300);
}

.pricing-footer {
    padding: 0 var(--space-lg) var(--space-lg);
}

.pricing-footer .btn {
    width: 100%;
}

.pricing-note {
    text-align: center;
    padding: var(--space-md);
    background: rgba(85, 77, 137, 0.05);
    border-radius: var(--radius-lg);
    color: var(--gray-600);
}

.pricing-note i {
    color: var(--primary-purple);
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8e5f4 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--space-sm);
}

.testimonial-rating i {
    color: var(--secondary-gold);
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.author-meta {
    font-size: 0.75rem;
    color: var(--primary-purple);
    font-weight: var(--font-weight-semibold);
}

.testimonial-cta {
    margin-top: var(--space-xl);
    font-size: 1.125rem;
}

.testimonial-cta a {
    font-weight: var(--font-weight-semibold);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 5 Columns for 5 steps */
.process-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

@media (max-width: 1200px) {
    .process-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

.process-card {
    text-align: center;
    position: relative;
}

.process-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.25rem;
    z-index: 1;
}

.process-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-md);
    background: var(--light-bg);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-purple);
}

.process-grid-5 .process-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.process-grid-5 .process-card h3 {
    font-size: 1rem;
}

.process-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.process-grid-5 .process-card p {
    font-size: 0.875rem;
}
/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8e5f4 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--black);
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-question:hover {
    color: var(--primary-purple);
}

.faq-question i {
    color: var(--primary-purple);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    opacity: 0.95;
}

.cta-content .btn {
    margin-bottom: var(--space-sm);
}

.cta-subtext {
    font-size: 0.9375rem;
    opacity: 0.85;
}

.cta-subtext a {
    color: var(--white);
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
    padding: var(--space-3xl) 0 var(--space-lg);
    background: var(--black);
    color: var(--gray-300);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer-column p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: var(--gray-300);
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--primary-purple);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.trust-badge i {
    color: var(--success-green);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-links {
    display: flex;
    gap: var(--space-md);
}

.footer-links a {
    color: var(--gray-300);
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%,
    100% {
        box-shadow:
            0 4px 12px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow:
            0 4px 12px rgba(37, 211, 102, 0.4),
            0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 767px) {
    :root {
        font-size: 14px;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

/* ===== LOADING & ANIMATION ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .whatsapp-float,
    .scroll-indicator {
        display: none !important;
    }
}

/* Blog Search */
.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #554d89;
}

.search-btn {
    padding: 0.75rem 1rem;
    background: #554d89;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #443d6e;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.blog-pagination nav {
    display: flex;
    gap: 0.5rem;
}

.blog-pagination .pagination {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    padding: 0;
    margin: 0;
}

.blog-pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination .page-item .page-link:hover {
    background: #554d89;
    border-color: #554d89;
    color: white;
}

.blog-pagination .page-item.active .page-link {
    background: #554d89;
    border-color: #554d89;
    color: white;
}

.blog-pagination .page-item.disabled .page-link {
    color: #ccc;
    pointer-events: none;
}

/* Pagination */
.pagination-nav {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-item .page-link:hover {
    background: #554d89;
    border-color: #554d89;
    color: white;
}

.page-item.active .page-link {
    background: #554d89;
    border-color: #554d89;
    color: white;
}

.page-item.disabled .page-link {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}

/* ========================================
   BLOG HOME SECTION
======================================== */
.blog-home-section {
    padding: var(--space-3xl) 0;
    background: var(--light-bg);
}

.blog-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

@media (max-width: 991px) {
    .blog-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .blog-home-grid {
        grid-template-columns: 1fr;
    }
}

.blog-home-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.blog-home-image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.blog-home-card:hover .blog-home-image img {
    transform: scale(1.05);
}

.blog-home-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-home-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

.blog-home-content {
    padding: var(--space-md);
}

.blog-home-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(85, 77, 137, 0.1);
    color: var(--primary-purple);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
    transition: all var(--transition-fast);
}

.blog-home-category:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.blog-home-title {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-home-title a {
    color: var(--black);
    transition: color var(--transition-fast);
}

.blog-home-title a:hover {
    color: var(--primary-purple);
}

.blog-home-excerpt {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-home-meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.blog-home-meta i {
    margin-right: 0.25rem;
}

.blog-home-cta {
    text-align: center;
}

.blog-home-empty {
    text-align: center;
    padding: var(--space-3xl);
    color: var(--gray-500);
}

.blog-home-empty i {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    opacity: 0.3;
}

/* ========================================
   BLOG PAGINATION (PROPER)
======================================== */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    display: inline-block;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: var(--white);
    color: var(--gray-800);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
}

.pagination a:hover {
    background: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

.pagination .active span {
    background: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

.pagination .disabled span {
    color: var(--gray-400);
    cursor: not-allowed;
}

/* ========================================
   ETHICS SECTION - NO CONFLICTS
   ======================================== */

/* Section Container */
.ethics-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.ethics-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Intro Box */
.ethics-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ethics-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #554d89 0%, #7068a8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ethics-icon-large i {
    font-size: 36px;
    color: var(--white);
}

.ethics-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.ethics-lead strong {
    color: var(--primary-purple);
}

/* Do & Don't Grid */
.ethics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .ethics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ethics-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ethics-column h3 i {
    font-size: 1.2rem;
}

.ethics-column:first-child h3 {
    color: var(--success-green);
}

.ethics-column:last-child h3 {
    color: var(--error-red);
}

/* Lists */
.ethics-list {
    list-style: none;
    padding: 0;
}

.ethics-list li {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ethics-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.do-list li {
    border-left: 4px solid var(--success-green);
}

.dont-list li {
    border-left: 4px solid var(--error-red);
}

.ethics-list li > i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.do-list li > i {
    color: var(--success-green);
}

.dont-list li > i {
    color: var(--error-red);
}

.ethics-list li div {
    flex: 1;
}

.ethics-list li strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--gray-800);
}

.ethics-list li span {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Declaration Box */
.ethics-declaration {
    margin: 50px 0;
}

.ethics-box-purple {
    background: linear-gradient(135deg, #554d89 0%, #7068a8 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(85, 77, 137, 0.2);
}

.quote-left,
.quote-right {
    font-size: 2rem;
    opacity: 0.3;
    position: absolute;
}

.quote-left {
    top: 20px;
    left: 30px;
}

.quote-right {
    bottom: 20px;
    right: 30px;
}

.ethics-box-purple p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Expert Quotes */
.ethics-experts {
    margin: 60px 0;
}

.experts-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--gray-800);
}

.experts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .experts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.expert-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(85, 77, 137, 0.15);
    border-color: var(--primary-purple);
}

.expert-quote-text {
    position: relative;
    margin-bottom: 25px;
}

.expert-quote-icon {
    color: var(--primary-purple);
    opacity: 0.2;
    font-size: 2.5rem;
    position: absolute;
    top: -10px;
    left: -10px;
}

.expert-quote-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    font-style: italic;
    padding-left: 30px;
    position: relative;
    z-index: 1;
}

.expert-info {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--gray-100);
}

.expert-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #554d89 0%, #7068a8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expert-avatar i {
    font-size: 24px;
    color: var(--white);
}

.expert-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--gray-800);
}

.expert-details p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 3px;
}

.expert-meta {
    font-size: 0.8rem;
    color: var(--primary-purple);
    font-weight: 600;
}

/* Precedent Section */
.ethics-precedent {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 2px solid var(--success-green);
    border-radius: 16px;
    padding: 40px;
    margin-top: 50px;
}

.ethics-precedent h4 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--gray-800);
}

.precedent-companies {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .precedent-companies {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .precedent-companies {
        grid-template-columns: repeat(3, 1fr);
    }
}

.precedent-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.precedent-icon-check {
    width: 40px;
    height: 40px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.precedent-icon-check i {
    color: var(--white);
    font-size: 1.2rem;
}

.precedent-content h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--gray-800);
}

.precedent-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.precedent-note {
    text-align: center;
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--success-green);
}

.precedent-note i {
    color: var(--success-green);
    margin-right: 8px;
}

.precedent-note strong {
    color: var(--success-green);
}

/* Standards Badges */
.ethics-standards {
    text-align: center;
    margin-top: 50px;
}

.ethics-standards h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gray-600);
}

.ethics-badges-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ethics-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.ethics-badge-item:hover {
    border-color: var(--primary-purple);
    background: rgba(85, 77, 137, 0.05);
}

.ethics-badge-item i {
    color: var(--success-green);
    font-size: 1rem;
}

/* CTA */
.ethics-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--gray-200);
}

.ethics-cta-text {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.ethics-cta-text a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ethics-cta-text a:hover {
    color: var(--primary-dark);
}

.ethics-cta-text i {
    font-size: 0.9rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.ethics-cta-text a:hover i {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .ethics-icon-large {
        width: 60px;
        height: 60px;
    }

    .ethics-icon-large i {
        font-size: 28px;
    }

    .ethics-lead {
        font-size: 1rem;
    }

    .ethics-list li {
        padding: 15px;
    }

    .ethics-box-purple {
        padding: 30px 20px;
    }

    .ethics-box-purple p {
        font-size: 1rem;
    }

    .expert-card {
        padding: 20px;
    }

    .expert-quote-text p {
        font-size: 0.95rem;
    }

    .ethics-precedent {
        padding: 25px;
    }

    .ethics-badges-row {
        flex-direction: column;
        align-items: stretch;
    }
}
/* ========================================
   TESTIMONIAL SCREENSHOT SLIDER
   ======================================== */

.testimonial-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 100%;
    margin: 0 auto;
}

.testimonial-slider {
    overflow: hidden;
    flex: 1;
}

.testimonial-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.testimonial-slide {
    flex: 0 0 auto;
    width: 280px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.testimonial-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(85, 77, 137, 0.2);
}

.testimonial-slide img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover;
}

/* Slider Buttons */
.slider-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-purple);
    background: var(--white);
    color: var(--primary-purple);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-purple);
    transform: scale(1.2);
}

/* Empty State */
.testimonial-empty {
    padding: 60px 20px;
    color: var(--gray-500);
}

.testimonial-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-slide {
        width: 220px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .testimonial-slider-wrapper {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .testimonial-slide {
        width: 180px;
    }

    .slider-btn {
        display: none;
    }

    .testimonial-slider-track {
        gap: 12px;
    }
}

/* ===== FIELDS/BIDANG DILAYANI SECTION ===== */
.fields-section {
    padding: var(--space-lg) 0;
    background: var(--light-bg);
    border-bottom: 1px solid var(--gray-200);
}

.fields-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.fields-label {
    font-weight: var(--font-weight-semibold);
    color: var(--gray-700);
    font-size: 0.95rem;
}

.fields-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.field-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.fields-nonit-banner {
    width: 100%;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    background: linear-gradient(90deg, #f3f1fb, #e8e5f4, #f3f1fb);
    background-size: 200% auto;
    border-radius: var(--radius-full);
    border: 1px solid rgba(85, 77, 137, 0.15);
    animation: shimmer-bg 3s linear infinite;
    flex-wrap: wrap;
}

.fields-nonit-banner > i:first-child {
    color: var(--primary-purple);
    font-size: 0.9rem;
}

.fields-nonit-banner span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.fields-nonit-banner span strong {
    color: var(--primary-purple);
}

.fields-nonit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: var(--primary-purple);
    color: var(--white) !important;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.fields-nonit-btn:hover {
    background: var(--primary-dark);
    transform: translateX(3px);
}

.fields-nonit-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.fields-nonit-btn:hover i {
    transform: translateX(3px);
}

@keyframes shimmer-bg {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@media (max-width: 768px) {
    .fields-nonit-banner {
        flex-direction: column;
        text-align: center;
        border-radius: var(--radius-xl);
        gap: 8px;
    }
}

.fields-note i {
    margin-right: 5px;
}

.field-tag:hover {
    background: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

@media (max-width: 768px) {
    .fields-content {
        flex-direction: column;
        text-align: center;
    }

    .fields-label {
        margin-bottom: var(--space-sm);
    }

    .field-tag {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}
