@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ============================================
   1. CSS VARIABLES & ROOT CONFIGURATION
   ============================================ */
:root {
    /* ===== DARK THEME BASE COLORS ===== */
    --base-sdb: #11121a;
    --line-sdb: #42434a;
    --hover-sdb: #222533;
    --text-sdb: #e6e6ef;
    --secondary-text-sdb: #b0b3c1;
    --section-bg: #181a23;
    --input-bg: rgba(34, 37, 51, 0.5);

    /* ===== MOJISLI BRAND COLORS ===== */
    --mojisli-primary: #22C55E;
    --mojisli-secondary: #10B981;
    --mojisli-accent: #06B6D4;
    --mojisli-light: #ECFDF5;

    /* Accent is now Mojisli Green */
    --accent-sdb: #22C55E;
    --accent-dark: #16A34A;

    /* ===== STATUS COLORS ===== */
    --error-color: #ff6b6b;
    --success-color: #2ecc71;
    --warning-color: #f39c12;

    /* ===== SPACING SCALE ===== */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 6rem;

    /* ===== TYPOGRAPHY ===== */
    --font-primary: 'Poppins', 'Segoe UI', sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.1rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3.5rem;

    /* ===== BORDER RADIUS ===== */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;

    /* ===== TRANSITIONS ===== */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   2. GLOBAL RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: var(--font-primary);
    line-height: 1.6;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-sdb) var(--base-sdb);
    font-size: 16px;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-sdb);
    overflow-x: hidden;
}

/* ============================================
   3. TYPOGRAPHY & SEMANTIC HTML
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

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

ul,
ol {
    list-style: none;
}

a {
    color: var(--accent-sdb);
    text-decoration: none;
    transition: color var(--transition-normal);
}

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

/* ============================================
   4. CUSTOM BRAND ICONS
   ============================================ */

button.to-top {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    border: 0;
    color: var(--text-color);
    text-align: center;
    padding: 0 10px;
    background-color: rgba(0, 0, 0, 0);
    font-size: 20px;
}

/* Custom Icon untuk Logo */
.fa-akfo-brand {
    display: inline-block;
    width: 3em;
    height: 1em;
    background-image: url('./assets/img/logo-brand.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.fa-akfo {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url('./assets/img/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.fa-akfo-white {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url('./assets/img/logo-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

/* Service Custom Icons */
.fa-mojisli {
    display: inline-block;
    width: 5em;
    height: 5em;
    background-image: url('./assets/img/mojisli.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.fa-mojisli-text {
    display: inline-block;
    width: 5em;
    height: 2em;
    background-image: url('./assets/img/mojisli-text.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.em-1 {
    width: 1em !important;
    height: 1em !important;
}

/* top hero */
.top-hero {
    top: 75px !important;
    margin-bottom: 3.5rem !important;
}

/* ============================================
   5. ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes badge-pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

/* ============================================
   6. NAVBAR & NAVIGATION
   ============================================ */
nav {
    background: rgba(17, 18, 26, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-lg);
}

.logo {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-sdb);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    z-index: 1001;
    transition: all var(--transition-normal);
}

.logo:hover {
    opacity: 0.8;
}

.logo i,
.logo span span {
    color: var(--accent-sdb);
    transition: color var(--transition-normal);
}

/* Main Navigation Links */
.nav-links {
    display: flex;
    gap: var(--spacing-sm);
    list-style: none;
    margin: 0;
    justify-content: center;
    position: relative;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    color: var(--text-sdb);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-normal);
    position: relative;
    padding: var(--spacing-xs) var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links>li>a:hover {
    color: var(--accent-sdb);
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-sdb);
    transition: width var(--transition-normal);
}

.nav-links>li>a:hover::after {
    width: 100%;
}

/* Dropdown Toggle - with animated chevron */
.dropdown-toggle {
    position: relative;
}

.dropdown-toggle .dropdown-icon {
    font-size: 0.7rem;
    transition: transform var(--transition-normal);
    margin-left: 0.2rem;
}

.nav-links>li:hover .dropdown-toggle .dropdown-icon {
    transform: rotate(-180deg);
    color: var(--accent-sdb);
}

/* Dropdown Menu - Professional & Konsisten */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm) 0;
    min-width: 260px;
    background-color: var(--base-sdb);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(34, 197, 94, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition-normal);
    z-index: 1001;
    list-style: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.nav-links>li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    color: var(--secondary-text-sdb);
    text-decoration: none;
    padding: 0.75rem var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
    position: relative;
    font-size: var(--font-size-sm);
    font-weight: 500;
    line-height: 1.5;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-sdb), var(--accent-dark));
    transform: scaleY(0);
    transform-origin: center;
    transition: transform var(--transition-normal);
}

.dropdown-menu li a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.08), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
    pointer-events: none;
}

.dropdown-menu li a:hover {
    color: var(--text-sdb);
    padding-left: calc(var(--spacing-md) + 0.25rem);
}

.dropdown-menu li a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu li a:hover::after {
    transform: scaleX(1);
}

/* Icon dalam dropdown - Professional styling */
.dropdown-menu li a i {
    font-size: 0.875rem;
    opacity: 0.7;
    transition: all var(--transition-normal);
    width: 1rem;
    text-align: center;
}

.dropdown-menu li a:hover i {
    opacity: 1;
    color: var(--accent-sdb);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-sdb);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 100;
    background: transparent;
    border: none;
    outline: none;
}

.hamburger-inner {
    display: block;
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--text-sdb);
    border-radius: 4px;
    left: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--text-sdb);
    border-radius: 4px;
    left: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.hamburger.open .hamburger-inner {
    transform: rotate(135deg);
}

.hamburger.open .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
}

.hamburger.open .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    opacity: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 18, 26, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Language Selector Styling */
.language-selector {
    display: flex;
    align-items: center;
}

.language-select {
    background-color: transparent;
    border: 1px solid var(--line-sdb);
    border-radius: var(--radius-md);
    color: var(--text-sdb);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all var(--transition-normal);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: var(--spacing-md);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6e6ef' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right var(--spacing-xs) center;
    background-size: 1.2em 1.2em;
    padding-right: calc(var(--spacing-md) + var(--spacing-xs));
}

.language-select:hover {
    border-color: var(--accent-sdb);
    background-color: rgba(34, 197, 94, 0.05);
}

.language-select:focus {
    outline: none;
    border-color: var(--accent-sdb);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.language-select option {
    background-color: var(--section-bg);
    color: var(--text-sdb);
    padding: var(--spacing-sm);
}

.language-select option:hover {
    background-color: var(--hover-sdb);
}

/* ============================================
   7. CONTAINERS & CARDS
   ============================================ */
.container {
    width: 100%;
    max-width: 450px;
    background-color: transparent;
    border-radius: 12px;
    padding: 48px 40px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: visible;
}

.container.container-full {
    max-width: 100%;
}

.container-top {
    margin-top: 60px;
}

.card {
    width: 100%;
    background-color: rgba(17, 18, 26, 0.8);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid var(--line-sdb);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.card-header {
    text-align: left;
    margin-bottom: 24px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

.card-header>div:first-child {
    text-align: center;
    flex: 1;
}

.card-header h1 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-sdb);
}

.card-header h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-sdb);
}

.card-header p {
    color: var(--secondary-text-sdb);
    font-size: 14px;
}

/* ============================================
   8. FORM ELEMENTS
   ============================================ */
.form-group {
    position: relative;
    margin-bottom: 14px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    height: 56px;
    padding: 0 40px 0 14px;
    border: 1px solid var(--line-sdb);
    border-radius: 4px;
    background-color: transparent;
    color: var(--text-sdb);
    font-size: 16px;
    outline: none;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.form-textarea {
    height: auto;
    min-height: 100px;
    padding: 14px;
    resize: vertical;
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
    border-color: var(--secondary-text-sdb);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--accent-sdb);
    box-shadow: 0 0 0 1px var(--accent-sdb);
}

.form-label {
    position: absolute;
    left: 14px;
    top: 16px;
    color: var(--secondary-text-sdb);
    font-size: 16px;
    font-weight: 400;
    transition: all var(--transition-fast);
    pointer-events: none;
}

.form-input:focus+.form-label,
.form-input:not(:placeholder-shown)+.form-label,
.form-textarea:focus+.form-label,
.form-textarea:not(:placeholder-shown)+.form-label {
    background-color: rgba(17, 18, 26, 1);
    top: -10px;
    font-size: 12px;
    font-weight: 400;
    padding: 0 8px;
    color: var(--accent-sdb);
}

.input-icon {
    position: absolute;
    right: 14px;
    top: 20px;
    color: var(--secondary-text-sdb);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 16px;
}

.input-icon:hover {
    color: var(--accent-sdb);
}

/* ============================================
   9. FORM VALIDATION STATES
   ============================================ */
.form-group.error .form-input,
.form-group.error .form-textarea,
.form-group.error .form-select {
    border-color: var(--error-color);
}

.form-group.error .form-label {
    color: var(--error-color);
}

.error-message {
    color: var(--error-color);
    font-size: 12px;
    margin-top: 6px;
    margin-bottom: 10px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.success-message {
    display: none;
    text-align: center;
    padding: 16px;
    background-color: rgba(34, 197, 94, 0.15);
    border: 1px solid var(--accent-sdb);
    border-radius: 4px;
    margin-bottom: 20px;
    color: var(--accent-sdb);
    font-size: 14px;
    animation: fadeIn var(--transition-normal);
}

.success-message i {
    margin-right: 8px;
}

/* ============================================
   10. BUTTONS & CALL-TO-ACTION
   ============================================ */

/*
   BUTTON VARIANTS DOCUMENTATION
   
   Available Button Classes:
   
   COLOR VARIANTS:
   - .btn-primary: Main action button with gradient (Default)
   - .btn-secondary: Secondary action with outlined style
   - .btn-ghost: Minimal style with hover effect
   - .btn-outline: Outlined button with transparent background
   - .btn-soft: Soft background with accent color
   - .btn-dark: Dark background button
   - .btn-success: Success/positive action (green)
   - .btn-error / .btn-danger: Error/destructive action (red)
   - .btn-warning: Warning action (orange)
   - .btn-gradient-border: Gradient border button
   - .btn-text: Link-like button with underline
   
   SIZE VARIANTS:
   - .btn-sm: Small button (36px height)
   - Default: Medium button (48px height)
   - .btn-lg: Large button (56px height)
   - .btn-xl: Extra large button (64px height)
   
   SPECIAL VARIANTS:
   - .btn-icon: Icon-only button (circular)
   - .btn-block / .btn.full-width: Full width button
   - .btn-fab: Floating action button (fixed position)
   - .btn-group: Group multiple buttons together
   
   STATES:
   - :hover - Hover effect with lift animation
   - :active - Active/pressed state
   - :focus-visible - Keyboard focus state
   - :disabled - Disabled state
   - .is-loading - Loading state with spinner
   
   EXAMPLES:
   <a href="#" class="btn btn-primary">Primary Button</a>
   <button class="btn btn-secondary btn-lg">Large Secondary</button>
   <a href="#" class="btn btn-icon"><i class="fas fa-arrow-right"></i></a>
   <div class="btn-group">
     <button class="btn btn-primary">Option 1</button>
     <button class="btn btn-primary">Option 2</button>
   </div>
*/

/* BASE BUTTON STYLES */
.btn {
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-base);
    border: 2px solid;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.4px;
}

.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 ease;
    z-index: 1;
}

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

.btn:disabled,
.btn[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover,
.btn[aria-disabled="true"]:hover {
    transform: none;
}

/* Primary Button Style */
.btn-primary {
    background: linear-gradient(135deg, var(--mojisli-primary) 0%, var(--mojisli-secondary) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(34, 197, 94, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Secondary Button Style */
.btn-secondary {
    background-color: transparent;
    color: var(--text-sdb);
    border-color: var(--line-sdb);
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    border-color: var(--mojisli-primary);
    color: var(--mojisli-primary);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.15);
    background-color: rgba(34, 197, 94, 0.05);
}

/* Size Variants */
.btn-sm {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: var(--font-size-sm);
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-lg);
    border-radius: var(--radius-lg);
}

/* Extra Large Button */
.btn-xl {
    padding: calc(var(--spacing-md) + 0.25rem) calc(var(--spacing-lg) * 1.5);
    font-size: var(--font-size-xl);
    border-radius: var(--radius-lg);
}

/* Loading State */
.btn.is-loading {
    cursor: not-allowed;
    opacity: 0.8;
}

.btn.is-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 16px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

/* Full Width Button Variant */
.btn-block,
.btn.full-width {
    width: 100%;
    display: flex;
}

/* Icon Support */
.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-md);
}

.btn-icon.lg {
    width: 52px;
    height: 52px;
}

.btn-icon i,
.btn-icon svg {
    width: 20px;
    height: 20px;
}

.btn-icon.lg i,
.btn-icon.lg svg {
    width: 24px;
    height: 24px;
}

/* Additional Button Variants */

/* Ghost Button - Minimal style */
.btn-ghost {
    background-color: transparent;
    color: var(--mojisli-primary);
    border: none;
    box-shadow: none;
}

.btn-ghost:hover {
    background-color: rgba(34, 197, 94, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.15);
}

.btn-ghost:active {
    transform: translateY(-1px);
}

/* Outline Button */
.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: var(--mojisli-primary);
    color: white;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.15);
    background-color: rgba(34, 197, 94, 0.05);
}

.btn-outline:active {
    transform: translateY(-1px);
}

/* Soft Button - Subtle background */
.btn-soft {
    background-color: rgba(34, 197, 94, 0.12);
    color: var(--mojisli-primary);
    border: 2px solid transparent;
}

.btn-soft:hover {
    background-color: rgba(34, 197, 94, 0.18);
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(34, 197, 94, 0.2);
}

.btn-soft:active {
    transform: translateY(-1px);
}

/* Dark Button */
.btn-dark {
    background-color: var(--base-sdb);
    color: white;
    border: 2px solid var(--line-sdb);
}

.btn-dark:hover {
    background-color: var(--hover-sdb);
    border-color: var(--mojisli-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.15);
    color: var(--mojisli-primary);
}

.btn-dark:active {
    transform: translateY(-1px);
    background-color: var(--base-sdb);
}

/* Button with Gradient Border */
.btn-gradient-border {
    background: transparent;
    color: var(--mojisli-primary);
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--mojisli-primary), var(--mojisli-secondary)) 1;
    position: relative;
}

.btn-gradient-border:hover {
    color: var(--mojisli-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.25);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(16, 185, 129, 0.03));
}

.btn-gradient-border:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.15);
}

/* Text Button - Link like button */
.btn-text {
    background: transparent;
    color: var(--mojisli-primary);
    border: none;
    text-decoration: underline;
    text-underline-offset: 4px;
    padding: 8px 12px;
    height: auto;
    box-shadow: none;
}

.btn-text:hover {
    color: var(--mojisli-primary);
    transform: none;
    box-shadow: none;
    text-decoration: underline solid;
    text-decoration-thickness: 2px;
    opacity: 0.9;
}

.btn-text:active {
    transform: none;
    box-shadow: none;
    opacity: 0.8;
}

/* Success Button */
.btn-success {
    background: linear-gradient(135deg, var(--success-color), #16a34a);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.btn-success:hover {
    box-shadow: 0 15px 45px rgba(46, 204, 113, 0.4);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-success:active {
    transform: translateY(-1px);
}

/* Error/Danger Button */
.btn-error,
.btn-danger {
    background: linear-gradient(135deg, var(--error-color), #dc2626);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-error:hover,
.btn-danger:hover {
    box-shadow: 0 15px 45px rgba(255, 107, 107, 0.4);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-error:active,
.btn-danger:active {
    transform: translateY(-1px);
}

/* Warning Button */
.btn-warning {
    background: linear-gradient(135deg, var(--warning-color), #f97316);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.btn-warning:hover {
    box-shadow: 0 15px 45px rgba(243, 156, 18, 0.4);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-warning:active {
    transform: translateY(-1px);
}

/* Button Group Styles */
.btn-group {
    display: inline-flex;
    gap: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: transparent;
}

.btn-group .btn {
    border-radius: 0;
    margin: 0;
    border-right: 1px solid rgba(34, 197, 94, 0.2);
}

.btn-group .btn:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.btn-group .btn:last-child {
    border-right: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.btn-group .btn:hover {
    z-index: 10;
}

.btn-group.vertical {
    flex-direction: column;
    gap: 0;
}

.btn-group.vertical .btn {
    border-right: none;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0;
}

.btn-group.vertical .btn:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.btn-group.vertical .btn:last-child {
    border-bottom: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* Floating Action Button */
.btn-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mojisli-primary), var(--mojisli-secondary));
    color: white;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.35);
    border: 2px solid transparent;
    z-index: 99;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-fab::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 ease;
    z-index: 1;
}

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

.btn-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(34, 197, 94, 0.4);
}

.btn-fab:active {
    transform: translateY(-1px);
}

.btn-fab.fab-sm {
    width: 48px;
    height: 48px;
    bottom: 24px;
    right: 24px;
}

.btn-fab i,
.btn-fab svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   11. TEXT & LINK UTILITIES
   ============================================ */
.text-center {
    text-align: center;
    margin: 24px 0;
}

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

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

.text-primary {
    color: var(--accent-sdb);
}

.text-secondary {
    color: var(--secondary-text-sdb);
}

.text-error {
    color: var(--error-color);
}

.text-success {
    color: var(--success-color);
}

.link {
    color: var(--accent-sdb);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.link:hover {
    text-decoration: underline;
}

.link-secondary {
    color: var(--secondary-text-sdb);
}

.link-secondary:hover {
    color: var(--accent-sdb);
}

/* ============================================
   12. SPACING UTILITIES
   ============================================ */
.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mt-5 {
    margin-top: 40px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mb-5 {
    margin-bottom: 40px;
}

.p-1 {
    padding: 8px;
}

.p-2 {
    padding: 16px;
}

.p-3 {
    padding: 24px;
}

.p-4 {
    padding: 32px;
}

.p-5 {
    padding: 40px;
}

/* ============================================
   13. FOOTER
   ============================================ */
footer {
    background: linear-gradient(180deg, #0a0a10 0%, rgba(10, 10, 16, 0.8) 100%);
    padding: var(--spacing-2xl) var(--spacing-lg);
    text-align: center;
    border-top: 1px solid rgba(34, 197, 94, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
}

.footer-logo {
    display: flex;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-sdb);
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-normal);
}

.footer-logo:hover {
    color: var(--accent-sdb);
}

.footer-logo i,
.footer-logo span span {
    color: var(--accent-sdb);
}

.footer-description {
    color: var(--secondary-text-sdb);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 0.95rem;
    line-height: 1.6;
    letter-spacing: 0.3px;
    font-weight: 300;
    transition: all var(--transition-normal);
    padding: 15px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--secondary-text-sdb);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: var(--font-size-base);
    font-weight: 500;
    position: relative;
    display: inline-block;
    letter-spacing: 0.2px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-sdb), transparent);
    transition: width var(--transition-normal);
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: var(--spacing-lg);
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.footer-social-links li {
    margin: 0;
}

.footer-social-links a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(24, 26, 35, 0.5));
    color: var(--text-sdb);
    border-radius: 50%;
    transition: all var(--transition-normal);
    font-size: 1.3rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.footer-social-links a:hover {
    background: linear-gradient(135deg, var(--accent-sdb), var(--mojisli-secondary));
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
    border-color: transparent;
}

.copyright,
.copyright a {
    color: var(--secondary-text-sdb);
    font-size: var(--font-size-sm);
}

.copyright a {
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-normal);
}

.copyright a:hover {
    color: var(--accent-sdb);
}

/* ============================================
   14. ALERT & MESSAGE BOXES
   ============================================ */
.alert-container {
    margin-bottom: 20px;
    min-height: 0;
    transition: min-height var(--transition-normal);
}

.alert {
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: slideInLeft var(--transition-normal);
}

.alert-info {
    background-color: rgba(34, 197, 94, 0.15);
    border: 1px solid var(--accent-sdb);
    color: var(--accent-sdb);
}

.alert-success {
    background-color: rgba(46, 204, 113, 0.15);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.alert-warning {
    background-color: rgba(243, 156, 18, 0.15);
    border: 1px solid var(--warning-color);
    color: var(--warning-color);
}

.alert-error {
    background-color: rgba(255, 107, 107, 0.15);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

.alert i {
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-message {
    flex: 1;
}

/* ============================================
   15. CHECKBOX STYLING
   ============================================ */
.checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 8px;
}

.form-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    cursor: pointer;
}

.checkbox-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--line-sdb);
    border-radius: 3px;
    background-color: transparent;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.checkbox-icon {
    color: white;
    font-size: 12px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.checkbox-wrapper:hover .checkbox-box {
    border-color: var(--secondary-text-sdb);
    background-color: rgba(34, 197, 94, 0.05);
}

.form-checkbox:checked+.checkbox-box {
    background-color: var(--accent-sdb);
    border-color: var(--accent-sdb);
    box-shadow: 0 0 0 1px var(--accent-sdb), 0 0 8px rgba(34, 197, 94, 0.2);
}

.form-checkbox:checked+.checkbox-box .checkbox-icon {
    opacity: 1;
}

.form-checkbox:focus-visible+.checkbox-box {
    outline: 2px solid var(--accent-sdb);
    outline-offset: 2px;
}

.checkbox-label {
    color: var(--secondary-text-sdb);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.checkbox-wrapper:hover .checkbox-label {
    color: var(--text-sdb);
}

/* ============================================
   16. FORM REMEMBER & LANGUAGE SELECTOR
   ============================================ */
.form-remember {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px !important;
    gap: 16px;
}

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    list-style: none;
}

.language-select {
    height: 40px;
    padding: 0 36px 0 12px;
    border: 1px solid var(--line-sdb);
    border-radius: 4px;
    background-color: transparent;
    color: var(--text-sdb);
    font-size: 14px;
    outline: none;
    transition: all var(--transition-fast);
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b0b3c1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 1rem;
}

.language-select:hover {
    border-color: var(--secondary-text-sdb);
    color: var(--accent-sdb);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322C55E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.language-select:focus {
    border-color: var(--accent-sdb);
    box-shadow: 0 0 0 1px var(--accent-sdb);
    color: var(--accent-sdb);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322C55E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.language-select option {
    background-color: var(--section-bg);
    color: var(--text-sdb);
    padding: 8px;
    font-weight: 500;
}

.language-select option:checked {
    background-color: var(--accent-sdb);
    color: white;
}

/* ============================================
   17. MOJISLI-SPECIFIC ENHANCEMENTS
   ============================================ */
.hero-image {
    overflow: visible;
}

.logo span span {
    font-weight: 700;
    color: var(--text-sdb);
}

/* Pricing Cards */
.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border: 2px solid var(--mojisli-primary);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.15);
}

.pricing-header h3 {
    color: var(--text-sdb);
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-features li {
    color: var(--secondary-text-sdb);
    transition: all 0.3s ease;
}

.pricing-features li:hover {
    color: var(--mojisli-primary);
    transform: translateX(5px);
}

.pricing-features li i {
    color: var(--mojisli-primary);
    margin-right: 10px;
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.15);
}

.feature-icon {
    color: var(--mojisli-primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: var(--mojisli-secondary);
    transform: scale(1.1) rotate(5deg);
}

/* Service Status Badge */
.service-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--mojisli-primary), var(--mojisli-secondary));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badge-pop 0.5s ease;
}

section, footer {
    padding: 3rem !important;
}

/* Section Background */
.section-dark-bg {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(16, 185, 129, 0.05));
}

/* FAQ Styling */
.faq-detail {
    max-width: 800px;
    margin: 0 auto;
}

/* Animation Delays */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    border-top-color: var(--mojisli-primary);
    animation: spin 1s ease-in-out infinite;
}

/* ============================================
   17.5. SCROLLBAR & ACCESSIBILITY
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--base-sdb);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-sdb);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* Focus states & Accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-sdb);
    outline-offset: 2px;
}

.btn:focus-visible {
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3);
    outline: 2px solid white;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    .btn {
        border: 2px solid currentColor;
    }

    .btn-primary {
        border-color: white;
    }

    .btn-secondary {
        border-width: 2px;
    }
}

/* ============================================
   18. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 850px) {
    nav {
        flex-direction: column;
    }

    .nav-links {
        position: fixed;
        padding-top: 200px;
        top: 70px;
        right: -100vw;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background-color: var(--base-sdb);
        padding: var(--spacing-lg) var(--spacing-md);
        height: calc(100vh - 70px);
        overflow-y: auto;
        width: 100vw;
        transition: transform var(--transition-normal);
    }

    .nav-links.active {
        transform: translateX(-100vw);
    }

    .nav-links>li {
        width: 100%;
    }

    .nav-links>li>a {
        padding: var(--spacing-xs);
        justify-content: space-between;
        font-size: 0.9rem;
    }

    .nav-links>li>a::after {
        display: none;
    }

    .dropdown-menu,
    .sub-dropdown-menu {
        position: static;
        padding: 0;
        box-shadow: none;
        border: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-normal);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: block;
        background-color: transparent;
        backdrop-filter: none;
    }

    .dropdown-menu.active,
    .sub-dropdown-menu.active {
        max-height: 1000px;
    }

    .dropdown-menu li a {
        padding: 0.6rem var(--spacing-sm);
        font-size: 0.85rem;
    }

    .dropdown-menu li a::before {
        display: none;
    }

    .dropdown-menu li a::after {
        display: none;
    }

    .dropdown-menu li a:hover {
        padding-left: calc(var(--spacing-md) + 0.3rem);
        background-color: rgba(34, 197, 94, 0.05);
    }

    .hamburger {
        display: flex;
        align-items: center;
    }

    .language-selector {
        width: 100%;
        margin-top: var(--spacing-md);
        padding: 0;
    }

    .language-select {
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 15px;
    }

    .logo {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        min-height: auto;
    }

    .service-status {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
        font-size: 11px;
    }

    .feature-card:hover {
        transform: translateY(-3px);
    }

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .footer-links li {
        margin: 0;
    }

    footer {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .footer-social-links {
        gap: var(--spacing-xs);
    }

    .footer-social-links a {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 600px) {

    .navbar {
        height: 56px;
        padding: 0 16px;
    }

    .container {
        padding: 0;
        width: 100%;
    }

    .card {
        padding: 24px;
        background-color: transparent;
        border: none;
        box-shadow: none;
    }

    .card-header h1 {
        font-size: 20px;
    }

    .card-header h2 {
        font-size: 18px;
    }

    .btn {
        width: 100%;
        font-size: 16px;
    }

    .btn-lg {
        height: 52px;
        padding: 14px 28px;
        font-size: 16px;
    }

    .btn-sm {
        height: 40px;
        padding: 10px 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

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


    .form-input,
    .form-textarea,
    .form-select {
        font-size: 16px;
    }

    .language-select {
        height: 36px;
        font-size: 13px;
        padding: 0 32px 0 10px;
    }

    .form-remember {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .faq-detail {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        height: 48px;
        padding: 12px 20px;
        font-size: 15px;
        border-radius: 6px;
    }

    .btn-lg {
        height: 48px;
        padding: 12px 20px;
        font-size: 15px;
    }

    .btn-sm {
        height: 40px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .btn:active {
        transform: translateY(0) scale(0.98);
    }

    .faq-detail {
        padding: 0 15px;
    }

    .faq-item-detail {
        padding: 15px;
    }
}

/* ============================================
   19. PRINT STYLES
   ============================================ */
@media print {
    nav, footer, .alert-container {
        display: none;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .card {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .btn {
        display: none;
    }
}

/* ============================================
   20. ACCESSIBILITY & REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    .section-dark-bg {
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    }
}

/* ============================================
                   WELCOME PAGE STYLES
                   ============================================ */

/* DESIGN SYSTEM & VARIABLES */
:root {
    --primary-color: var(--accent-sdb, #22c55e);
    --primary-dark: #16a34a;
    --primary-light: #dcfce7;
    --secondary-color: #3b82f6;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --border-color: var(--border-color-sdb, #e2e8f0);
    --text-primary: var(--primary-text-sdb, #1e293b);
    --text-secondary: var(--secondary-text-sdb, #64748b);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ANIMATIONS FOR WELCOME PAGE */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes blink {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-content h1 {
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 500;
}

.hero-image {
    animation: float 4s ease-in-out infinite, slideInRight 0.8s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(150px, 20vw, 280px);
    filter: drop-shadow(0 20px 40px rgba(34, 197, 94, 0.2));
}

.cta-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--mojisli-primary) 0%, var(--mojisli-secondary) 100%);
    color: white;
    font-weight: 700;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.35);
    filter: brightness(1.1);
}

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

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.3);
    filter: brightness(0.98);
}

.btn-secondary {
    background-color: transparent;
    color: var(--mojisli-primary);
    border: 2px solid var(--mojisli-primary);
    font-weight: 700;
}

.btn-secondary:hover {
    background-color: rgba(34, 197, 94, 0.08);
    border-color: var(--mojisli-primary);
    color: var(--mojisli-primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.2);
}

.btn-secondary:active {
    transform: translateY(0);
    background-color: rgba(34, 197, 94, 0.05);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.15);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1.05rem;
}

/* SECTIONS */
.features,
section.features {
    padding: 80px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.short-link {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(15, 23, 42, 0.95) 100%);
    color: white;
}

.section-dark-bg {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(15, 23, 42, 0.95) 100%);
    color: white;
}

.section-dark-bg h2,
.section-dark-bg h3 {
    color: white;
}

.section-dark-bg p {
    color: rgba(255, 255, 255, 0.8);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out;
}

.section-title h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title .text-normal {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark-bg .text-normal {
    color: rgba(255, 255, 255, 0.75);
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    color: var(--text-secondary);
}

/* FEATURE CARDS */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 0;
}

.feature-card {
    padding: 40px;
    border-radius: 16px;
    background: white;
    border: 1.5px solid var(--border-color);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.section-dark-bg .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: white;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.12), 0 0 1px rgba(34, 197, 94, 0.3);
}

.section-dark-bg .feature-card:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15), 0 0 40px rgba(34, 197, 94, 0.1);
}

.feature-icon {
    font-size: 2.8em;
    margin-bottom: 28px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), rgba(34, 197, 94, 0.1));
    border-radius: 16px;
    transition: var(--transition);
    flex-shrink: 0;
}

.section-dark-bg .feature-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.25);
}

.feature-card h3 {
    margin: 0 0 16px 0;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
}

.section-dark-bg .feature-card h3 {
    color: white;
}

.feature-card p {
    font-size: 0.96rem;
    line-height: 1.75;
    margin: 0;
    flex-grow: 1;
    color: var(--text-secondary);
}

.section-dark-bg .feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* PRICING SECTION */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0;
    list-style: none;
    margin: 0;
}

.pricing-card {
    padding: 45px;
    border-radius: 16px;
    background: white;
    border: 1.5px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out;
    overflow: hidden;
}

.section-dark-bg .pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.12), 0 0 1px rgba(34, 197, 94, 0.3);
}

.section-dark-bg .pricing-card:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15), 0 0 40px rgba(34, 197, 94, 0.1);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, white 0%, var(--primary-light) 100%);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
    border-width: 2px;
}

.section-dark-bg .pricing-card.popular {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2), 0 0 40px rgba(34, 197, 94, 0.1);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 70px rgba(34, 197, 94, 0.25);
}

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

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

.service-status {
    position: absolute;
    top: 12px;
    right: 12px;
    transform: none;
    background: linear-gradient(135deg, var(--mojisli-primary), var(--mojisli-secondary));
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
    z-index: 10;
    white-space: nowrap;
    animation: slideInRight 0.4s ease-out;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.section-dark-bg .pricing-header h3 {
    color: white;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-content: center;
    margin: 24px 0;
    flex-wrap: wrap;
}

.price-symbol {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.price-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.section-dark-bg .price-period {
    color: rgba(255, 255, 255, 0.7);
}

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

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.96rem;
    line-height: 1.6;
    transition: var(--transition);
}

.section-dark-bg .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.popular .pricing-features li {
    border-bottom-color: rgba(34, 197, 94, 0.2);
    color: var(--text-primary);
}

.section-dark-bg .pricing-card.popular .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.15);
    color: white;
}

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

.pricing-features li:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.section-dark-bg .pricing-features li:hover {
    color: var(--primary-color);
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.pricing-btn {
    color: white;
    width: 100%;
    margin-top: 30px;
    border-radius: 12px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    text-decoration: none;
}

.pricing-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 ease;
    pointer-events: none;
}

.pricing-btn:hover {
    text-decoration: none !important;
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.35), 0 0 20px rgba(34, 197, 94, 0.15);
    letter-spacing: 0.5px;
}

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

.pricing-btn:active {
    text-decoration: none !important;
    transform: translateY(-1px) scale(1);
}

.pricing-btn:focus,
.pricing-btn:focus-visible {
    text-decoration: none !important;
}

.section-dark-bg .pricing-btn {
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
}

.section-dark-bg .pricing-btn:hover {
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4), 0 0 25px rgba(34, 197, 94, 0.2);
}

.vision-card {
    min-height: 380px;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.mission-item {
    padding: 16px 0;
    padding-left: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.96rem;
    line-height: 1.75;
    position: relative;
    transition: var(--transition);
}

.mission-item:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.mission-item:last-child {
    border-bottom: none;
}

.mission-item:hover {
    color: white;
    transform: translateX(4px);
}

/* FAQ SECTION */
.faq-detail {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-detail {
    margin: 18px 0;
    padding: 0;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out;
}

.section-dark-bg .faq-item-detail {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item-detail:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.08);
}

.section-dark-bg .faq-item-detail:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
}

.faq-item-detail[open] {
    background: var(--primary-light);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.08);
}

.section-dark-bg .faq-item-detail[open] {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
}

.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 24px 28px;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition);
}

.section-dark-bg .faq-summary {
    color: white;
}

.faq-summary:hover {
    background: rgba(34, 197, 94, 0.03);
}

.section-dark-bg .faq-summary:hover {
    background: rgba(34, 197, 94, 0.08);
}

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

.faq-summary h3 {
    margin: 0;
    font-size: 1.15rem;
    letter-spacing: -0.3px;
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.faq-item-detail[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 28px 28px 28px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 0.96rem;
    animation: fadeInUp 0.3s ease-out;
}

.section-dark-bg .faq-content {
    color: rgba(255, 255, 255, 0.8);
}

/* CTA SECTION */
.cta {
    text-align: center;
    padding: 120px 20px;
}

.cta-container {
    max-width: 750px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.cta-container h2 {
    color: white;
    margin-bottom: 24px;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-container p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 48px;
    line-height: 1.85;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* RIPPLE EFFECT */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

.typed-cursor {
    animation: blink 1s infinite;
}

/* SMOOTH TRANSITIONS */
button,
a,
input,
select,
textarea {
    transition: var(--transition);
}

/* ============================================
   ADVANCED STYLING & ENHANCEMENTS
   ============================================ */

/* Enhanced shadow definitions */
.feature-card,
.pricing-card,
.faq-item-detail {
    position: relative;
}

/* Better text rendering */
body,
.feature-card,
.pricing-card {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Improved link styling in cards */
.feature-card a,
.pricing-card a,
.faq-content a {
    font-weight: 600;
    transition: var(--transition);
}

.feature-card a:hover,
.pricing-card a:hover,
.faq-content a:hover {
    text-decoration: underline;
}

/* Button improvements */
.btn {
    position: relative;
    isolation: isolate;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.btn-primary::before {
    background: rgba(255, 255, 255, 0.15);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary::before {
    background: rgba(34, 197, 94, 0.1);
}

.btn-secondary:hover::before {
    opacity: 1;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 32px;
    }

    .pricing-card {
        padding: 40px;
    }

    .pricing-btn {
        margin-top: 28px;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-base: 15px;
    }

    .hero {
        padding: 50px 25px;
        min-height: auto;
    }

    .hero-container {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .hero-image {
        font-size: clamp(100px, 22vw, 160px);
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .features,
    section.features {
        padding: 60px 25px;
    }

    .section-title {
        margin-bottom: 45px;
    }

    .section-title h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 28px 24px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
        font-size: 2.2em;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .pricing-card {
        padding: 28px 24px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .pricing-header h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .price {
        margin: 16px 0;
    }

    .price-value {
        font-size: 2rem;
    }

    .price-symbol {
        font-size: 18px;
    }

    .pricing-features li {
        padding: 10px 0;
        font-size: 0.9rem;
        gap: 10px;
    }

    .service-status {
        padding: 5px 10px;
        font-size: 0.65rem;
        top: 10px;
        right: 10px;
    }

    .pricing-btn {
        margin-top: 24px;
    }

    .cta {
        padding: 70px 30px;
    }

    .cta-container h2 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .cta-container p {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

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

    .faq-summary {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-content {
        padding: 0 20px 16px 20px;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .faq-item-detail {
        margin: 12px 0;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-base: 14px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 0.95rem;
    }

    .hero {
        min-height: auto;
        padding: 30px 16px;
        gap: 30px;
    }

    .hero-container {
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .features,
    section.features {
        padding: 40px 20px;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .section-title .text-normal {
        font-size: 0.85rem;
    }

    .feature-card,
    .pricing-card {
        padding: 20px 16px;
        margin: 0.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
        font-size: 2em;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .pricing-header h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .price {
        flex-direction: row;
        gap: 4px;
        margin: 12px 0;
    }

    .price-value {
        font-size: 1.7rem;
    }

    .price-symbol {
        font-size: 14px;
    }

    .price-period {
        font-size: 0.8rem;
    }

    .pricing-features li {
        padding: 8px 0;
        font-size: 0.85rem;
        gap: 8px;
    }

    .service-status {
        padding: 4px 8px;
        font-size: 0.6rem;
        top: 8px;
        right: 8px;
    }

    .pricing-btn {
        margin-top: 20px;
        height: 44px;
        font-size: 14px;
    }

    .faq-summary {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .faq-summary h3 {
        font-size: 0.95rem;
    }

    .faq-content {
        padding: 0 16px 14px 16px;
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .faq-item-detail {
        margin: 10px 0;
    }

    .cta {
        padding: 50px 16px;
    }

    .cta-container h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .cta-container p {
        font-size: 0.9rem;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .btn {
        padding: 11px 20px;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .cta-buttons {
        gap: 10px;
        flex-direction: column;
    }

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

/* ANIMATION DELAYS */
.animate-fade-in {
    animation: fadeInUp 0.6s ease-out backwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* ============================================
   FREE PAGE STYLES
   ============================================ */

/* Hero Section */
.hero-free {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.hero-free::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-free::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-free-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.hero-free h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--mojisli-primary), var(--mojisli-secondary)) 0%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-free p {
    font-size: 18px;
    color: var(--secondary-text-sdb);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Main Sections */
.free-generator-section {
    padding: 70px 30px;
}

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

/* Form Card */
.form-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
    animation: slideInUp 0.6s ease-out;
}

.form-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-sdb);
}

.form-card>p {
    color: var(--secondary-text-sdb);
    margin-bottom: 40px;
    font-size: 16px;
}

/* Form Elements */
.form-group {
    margin-bottom: 35px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-sdb);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-help {
    display: block;
    font-size: 13px;
    color: var(--secondary-text-sdb);
    margin-top: 8px;
}

/* Emoji Dropdown */
.emoji-dropdown {
    position: relative;
}

.emoji-select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(10, 15, 28, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    color: var(--text-sdb);
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.emoji-select:hover {
    border-color: var(--mojisli-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.emoji-select:focus {
    outline: none;
    border-color: var(--mojisli-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.emoji-select option {
    background: rgba(30, 41, 59, 0.8);
    color: var(--text-sdb);
    padding: 10px;
}

/* Domain Input Group */
.domain-input-group {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.domain-prefix {
    display: flex;
    align-items: center;
    background: rgba(10, 15, 28, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px 0 0 12px;
    padding: 0 16px;
    font-weight: 600;
    color: var(--mojisli-primary);
    min-width: 120px;
}

.domain-input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(10, 15, 28, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 0 12px 12px 0;
    color: var(--text-sdb);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.domain-input:hover {
    border-color: var(--mojisli-primary);
}

.domain-input:focus {
    outline: none;
    border-color: var(--mojisli-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.domain-input:disabled {
    background: rgba(30, 41, 59, 0.6);
    color: var(--secondary-text-sdb);
    cursor: not-allowed;
}

/* Length Slider */
.length-control {
    display: flex;
    gap: 20px;
    align-items: center;
}

.length-slider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: rgba(10, 15, 28, 0.6);
    outline: none;
    appearance: none;
    cursor: pointer;
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.length-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mojisli-primary), var(--mojisli-secondary));
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    transition: all 0.2s ease;
}

.length-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.6);
}

.length-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mojisli-primary), var(--mojisli-secondary));
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    transition: all 0.2s ease;
}

.length-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.6);
}

.length-value {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 50px;
    background: rgba(10, 15, 28, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--mojisli-primary);
}

/* Buttons */
.btn-generate {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--mojisli-primary), var(--mojisli-secondary));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
}

.btn-generate:active {
    transform: translateY(0);
}

.btn-generate:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-generate i {
    font-size: 18px;
}

/* Loading Spinner */
.spinner-free {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

/* Result Section */
.result-section {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.result-section.show {
    display: block;
}

.result-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
}

.result-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-sdb);
}

.result-card>p {
    color: var(--secondary-text-sdb);
    margin-bottom: 30px;
}

.result-link-display {
    background: rgba(10, 15, 28, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.result-link-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--mojisli-primary);
    word-break: break-all;
    flex: 1;
}

.btn-copy {
    padding: 12px 24px;
    background: var(--success-color);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-copy:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-new-link {
    width: 100%;
    padding: 16px 24px;
    background: rgba(10, 15, 28, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    color: var(--text-sdb);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-new-link:hover {
    border-color: var(--mojisli-primary);
    background: rgba(34, 197, 94, 0.1);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-sdb);
}

/* Steps & Benefits Grid */
.steps-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.step-card,
.benefit-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.step-card:nth-child(1),
.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.step-card:nth-child(2),
.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.step-card:nth-child(3),
.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}

.step-card:nth-child(4),
.benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

.step-card:hover,
.benefit-card:hover {
    border-color: var(--mojisli-primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.2);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--mojisli-primary), var(--mojisli-secondary));
    border-radius: 50%;
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
}

.step-card h3,
.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-sdb);
}

.step-card p,
.benefit-card p {
    color: var(--secondary-text-sdb);
    line-height: 1.8;
}

.benefit-icon {
    font-size: 32px;
    color: var(--mojisli-primary);
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.15));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 80px;
    animation: slideInUp 0.6s ease-out 0.5s backwards;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-sdb);
}

.cta-section p {
    font-size: 16px;
    color: var(--secondary-text-sdb);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-cta {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--mojisli-primary), var(--mojisli-secondary));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.btn-cta:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
}

/* ===== FREE GENERATOR FORM REDESIGN ===== */

/* Unified Input Group (Emoji + Domain Prefix) */
.form-input-unified {
    display: flex;
    gap: 0;
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(10, 15, 28, 0.6);
    transition: all 0.3s ease;
}

.form-input-unified:hover {
    border-color: var(--mojisli-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-input-unified:focus-within {
    border-color: var(--mojisli-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

/* Emoji Select within Unified Input */
.emoji-select-unified,
.length-select-unified {
    flex: 1;
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--text-sdb);
    font-size: 16px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.emoji-select-unified:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%2322C55E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.emoji-select-unified:focus {
    outline: none;
}

.emoji-select-unified option, .length-select-unified option {
    background: rgba(30, 41, 59, 0.8);
    color: var(--text-sdb);
    padding: 10px;
}

/* Domain Prefix within Unified Input */
.domain-prefix-unified {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: rgba(34, 197, 94, 0.08);
    border-left: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--mojisli-primary);
    font-weight: 600;
    font-size: 16px;
    user-select: none;
    white-space: nowrap;
}

/* Target Link Input (Separate) */
.form-input-target {
    width: 100%;
    padding: 16px 20px;
    background: rgba(10, 15, 28, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    color: var(--text-sdb);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input-target::placeholder {
    color: var(--secondary-text-sdb);
}

.form-input-target:hover {
    border-color: var(--mojisli-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-input-target:focus {
    outline: none;
    border-color: var(--mojisli-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

/* Length Slider */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.slider-header .form-label {
    margin-bottom: 0;
}

.slider-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--mojisli-primary);
    background: rgba(34, 197, 94, 0.15);
    padding: 6px 12px;
    border-radius: 6px;
    min-width: 50px;
    text-align: center;
}

.form-slider {
    width: 100%;
    height: 8px;
    border-radius: 8px;
    background: linear-gradient(to right,
            rgba(34, 197, 94, 0.2) 0%,
            rgba(34, 197, 94, 0.3) 100%);
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Slider Track */
.form-slider::-webkit-slider-track {
    background: linear-gradient(to right,
            rgba(34, 197, 94, 0.2) 0%,
            rgba(34, 197, 94, 0.3) 100%);
    border-radius: 8px;
    height: 8px;
    border: none;
}

.form-slider::-moz-range-track {
    background: linear-gradient(to right,
            rgba(34, 197, 94, 0.2) 0%,
            rgba(34, 197, 94, 0.3) 100%);
    border-radius: 8px;
    height: 8px;
    border: none;
}

/* Slider Thumb */
.form-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mojisli-primary), var(--mojisli-secondary));
    cursor: pointer;
    border: 2px solid rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.form-slider::-webkit-slider-thumb:hover {
    width: 26px;
    height: 26px;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.5);
    border: 2px solid var(--mojisli-primary);
}

.form-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mojisli-primary), var(--mojisli-secondary));
    cursor: pointer;
    border: 2px solid rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.form-slider::-moz-range-thumb:hover {
    width: 26px;
    height: 26px;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.5);
    border: 2px solid var(--mojisli-primary);
}

.form-slider:focus {
    background: linear-gradient(to right,
            rgba(34, 197, 94, 0.3) 0%,
            rgba(34, 197, 94, 0.4) 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-free {
        padding: 70px 30px;
    }

    .hero-free h1 {
        font-size: 32px;
    }

    .form-card {
        padding: 30px 20px;
    }

    .domain-input-group {
        flex-direction: column;
    }

    .domain-prefix {
        border-radius: 12px;
    }

    .domain-input {
        border-radius: 12px;
    }

    .form-input-unified {
        flex-direction: column;
        border-radius: 12px;
    }

    .emoji-select-unified {
        border-radius: 12px 12px 0 0;
    }

    .domain-prefix-unified {
        border-left: none;
        border-top: 1px solid rgba(34, 197, 94, 0.2);
        border-radius: 0 0 12px 12px;
    }

    .slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .slider-value {
        align-self: flex-end;
    }

    .result-link-display {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-copy {
        width: 100%;
        justify-content: center;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-section h2 {
        font-size: 24px;
    }
}

/* ============================================
   MODAL POPUP STYLES - CONSISTENT WITH MOJISLI THEME
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--base-sdb);
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s ease;
    position: relative;
    border: 1px solid var(--line-sdb);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--secondary-text-sdb);
    transition: color 0.2s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.modal-close:hover {
    background: var(--hover-sdb);
    color: var(--text-sdb);
}

.modal-icon {
    text-align: center;
    margin-bottom: 20px;
}

.modal-icon i {
    font-size: 48px;
    color: var(--mojisli-primary);
}

.modal-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-sdb);
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.modal-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--secondary-text-sdb);
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
}

.modal-result-box {
    background: linear-gradient(135deg, var(--mojisli-primary) 0%, var(--mojisli-secondary) 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
}

.modal-result-emoji {
    font-size: 36px;
    min-width: 50px;
    text-align: center;
}

.modal-result-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modal-result-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.modal-result-link {
    font-size: 16px;
    font-weight: 700;
    color: white;
    word-break: break-all;
    font-family: 'Courier New', monospace;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.btn-modal-copy {
    background: linear-gradient(135deg, var(--mojisli-primary) 0%, var(--mojisli-secondary) 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-modal-copy::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 ease;
}

.btn-modal-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.35);
}

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

.btn-modal-copy:active {
    transform: translateY(0);
}

.btn-modal-copy.copied {
    background: linear-gradient(135deg, var(--mojisli-primary) 0%, var(--mojisli-secondary) 100%);
}

.btn-modal-create-new {
    background: var(--hover-sdb);
    color: var(--text-sdb);
    border: 1px solid var(--line-sdb);
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.btn-modal-create-new:hover {
    background: var(--line-sdb);
    border-color: var(--mojisli-primary);
    color: var(--mojisli-primary);
    transform: translateY(-2px);
}

.btn-modal-create-new:active {
    transform: translateY(0);
}

/* Loading States */
.spinner-free {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
    margin-right: 6px;
}

/* Error Message */
.modal-error {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid var(--warning-color);
    color: #ffc107;
    padding: 14px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-result-emoji {
        font-size: 28px;
    }

    .modal-result-link {
        font-size: 14px;
    }

    .btn-modal-copy,
    .btn-modal-create-new {
        font-size: 14px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 20px 16px;
        width: 95%;
    }

    .modal-title {
        font-size: 18px;
    }

    .modal-result-box {
        padding: 16px;
    }

    .modal-result-emoji {
        font-size: 24px;
    }

    .modal-result-link {
        font-size: 13px;
    }
}