* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #3385ff;
    --secondary-color: #ff6b35;
    --accent-color: #00d4aa;
    --success-color: #00d4aa;
    --warning-color: #ffb800;
    --error-color: #ff4757;
    
    --text-primary: #0a0a0a;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    
    --background-primary: #ffffff;
    --background-secondary: #f8fafc;
    --background-dark: #0f172a;
    --background-accent: #f1f5f9;
    
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #3385ff 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --gradient-accent: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-hero: linear-gradient(135deg, #0066ff 0%, #00d4aa 100%);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-primary);
    overflow-x: hidden;
}

.kedaiemaspajan-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.kedaiemaspajan-container-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.kedaiemaspajan-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kedaiemaspajan-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.kedaiemaspajan-logo {
    width: 200px;
    height: 50px;
    background-image: url('../img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.kedaiemaspajan-nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.kedaiemaspajan-nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
}

.kedaiemaspajan-nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.kedaiemaspajan-nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.kedaiemaspajan-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.kedaiemaspajan-btn-nav {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.kedaiemaspajan-btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.kedaiemaspajan-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.kedaiemaspajan-nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.kedaiemaspajan-main {
    flex: 1;
    margin-top: 82px;
}

.kedaiemaspajan-hero {
    background: var(--gradient-hero);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.kedaiemaspajan-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.kedaiemaspajan-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.kedaiemaspajan-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.kedaiemaspajan-hero-content {
    text-align: left;
}

.kedaiemaspajan-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kedaiemaspajan-hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.kedaiemaspajan-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    opacity: 0.8;
}

.kedaiemaspajan-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.kedaiemaspajan-breadcrumb a:hover {
    opacity: 0.7;
}

.kedaiemaspajan-breadcrumb-separator {
    opacity: 0.6;
}

.kedaiemaspajan-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-2xl);
    margin-bottom: 24px;
}

.kedaiemaspajan-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kedaiemaspajan-hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.kedaiemaspajan-title-line {
    display: block;
}

.kedaiemaspajan-title-accent {
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kedaiemaspajan-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.kedaiemaspajan-hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.kedaiemaspajan-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
}

.kedaiemaspajan-feature-icon {
    color: var(--success-color);
    font-size: 18px;
}

.kedaiemaspajan-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.kedaiemaspajan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.kedaiemaspajan-btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.kedaiemaspajan-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.kedaiemaspajan-btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.kedaiemaspajan-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.kedaiemaspajan-btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.kedaiemaspajan-btn-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.kedaiemaspajan-btn:hover .kedaiemaspajan-btn-arrow {
    transform: translateX(4px);
}

.kedaiemaspajan-loan-details {
    padding: 120px 0;
    background: white;
}

.kedaiemaspajan-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.kedaiemaspajan-section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.kedaiemaspajan-details-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.kedaiemaspajan-details-highlights {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.kedaiemaspajan-highlight h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.kedaiemaspajan-highlight p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.kedaiemaspajan-details-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.kedaiemaspajan-loan-calculator {
    padding: 120px 0;
    background: var(--background-secondary);
}

.kedaiemaspajan-calculator-header {
    text-align: center;
    margin-bottom: 80px;
}

.kedaiemaspajan-section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.kedaiemaspajan-calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.kedaiemaspajan-calculator-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.kedaiemaspajan-form-group {
    margin-bottom: 32px;
}

.kedaiemaspajan-form-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.kedaiemaspajan-form-range {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--border-light);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.kedaiemaspajan-form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.kedaiemaspajan-form-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
}

.kedaiemaspajan-range-value {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 12px;
}

.kedaiemaspajan-calculator-result {
    position: sticky;
    top: 100px;
}

.kedaiemaspajan-result-card {
    background: var(--gradient-primary);
    color: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    text-align: center;
}

.kedaiemaspajan-result-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.kedaiemaspajan-result-amount {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kedaiemaspajan-result-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.kedaiemaspajan-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.kedaiemaspajan-result-item:last-child {
    border-bottom: none;
    font-weight: 700;
}

.kedaiemaspajan-result-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.kedaiemaspajan-result-value {
    font-weight: 600;
}

.kedaiemaspajan-eligibility {
    padding: 120px 0;
    background: white;
}

.kedaiemaspajan-eligibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.kedaiemaspajan-eligibility-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.kedaiemaspajan-eligibility-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kedaiemaspajan-eligibility-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.kedaiemaspajan-eligibility-icon {
    width: 24px;
    height: 24px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.kedaiemaspajan-eligibility-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.kedaiemaspajan-eligibility-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.kedaiemaspajan-eligibility-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.kedaiemaspajan-application {
    padding: 120px 0;
    background: var(--background-secondary);
}

.kedaiemaspajan-application-header {
    text-align: center;
    margin-bottom: 80px;
}

.kedaiemaspajan-application-form {
    max-width: 800px;
    margin: 0 auto;
}

.kedaiemaspajan-form {
    background: white;
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.kedaiemaspajan-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.kedaiemaspajan-form-group {
    margin-bottom: 24px;
}

.kedaiemaspajan-form-input,
.kedaiemaspajan-form-select,
.kedaiemaspajan-form input,
.kedaiemaspajan-form select,
.kedaiemaspajan-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: white;
    transition: all 0.3s ease;
}

.kedaiemaspajan-form-input:focus,
.kedaiemaspajan-form-select:focus,
.kedaiemaspajan-form input:focus,
.kedaiemaspajan-form select:focus,
.kedaiemaspajan-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.kedaiemaspajan-form-input::placeholder,
.kedaiemaspajan-form input::placeholder,
.kedaiemaspajan-form textarea::placeholder {
    color: var(--text-light);
}

.kedaiemaspajan-form textarea {
    resize: vertical;
    min-height: 120px;
}

.kedaiemaspajan-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.kedaiemaspajan-checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.kedaiemaspajan-checkbox-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.kedaiemaspajan-checkbox-text a:hover {
    text-decoration: underline;
}

.kedaiemaspajan-form-actions {
    text-align: center;
    margin-top: 40px;
}

.kedaiemaspajan-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kedaiemaspajan-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.kedaiemaspajan-cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
}

.kedaiemaspajan-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.kedaiemaspajan-cta-badge {
    display: inline-block;
    background: rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-2xl);
    margin-bottom: 24px;
}

.kedaiemaspajan-cta-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.kedaiemaspajan-title-primary {
    color: white;
}

.kedaiemaspajan-title-accent {
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kedaiemaspajan-cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.kedaiemaspajan-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.kedaiemaspajan-footer {
    background: var(--background-dark);
    color: white;
    padding: 80px 0 40px;
}

.kedaiemaspajan-footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.kedaiemaspajan-footer-brand {
    max-width: 400px;
}

.kedaiemaspajan-footer-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 24px 0 32px;
    font-size: 16px;
}

.kedaiemaspajan-footer-social {
    display: flex;
    gap: 16px;
}

.kedaiemaspajan-social-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.kedaiemaspajan-social-link:hover {
    color: white;
}

.kedaiemaspajan-footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.kedaiemaspajan-footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.kedaiemaspajan-footer-column ul {
    list-style: none;
}

.kedaiemaspajan-footer-column li {
    margin-bottom: 12px;
}

.kedaiemaspajan-footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.kedaiemaspajan-footer-column a:hover {
    color: white;
}

.kedaiemaspajan-contact-info p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.5;
}

.kedaiemaspajan-footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 40px;
}

.kedaiemaspajan-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.kedaiemaspajan-footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
}

.kedaiemaspajan-footer-certifications {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.kedaiemaspajan-cert {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
}

.kedaiemaspajan-cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kedaiemaspajan-cookies-banner.show {
    transform: translateY(0);
}

.kedaiemaspajan-cookies-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.kedaiemaspajan-cookies-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.kedaiemaspajan-cookies-text {
    flex: 1;
}

.kedaiemaspajan-cookies-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.kedaiemaspajan-cookies-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 14px;
}

.kedaiemaspajan-cookies-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .kedaiemaspajan-details-content,
    .kedaiemaspajan-calculator-content,
    .kedaiemaspajan-eligibility-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .kedaiemaspajan-footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .kedaiemaspajan-footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .kedaiemaspajan-nav-menu {
        display: none;
    }
    
    .kedaiemaspajan-nav-cta {
        display: none;
    }
    
    .kedaiemaspajan-nav-toggle {
        display: flex;
    }
    
    .kedaiemaspajan-hero-title {
        font-size: 2.5rem;
    }
    
    .kedaiemaspajan-section-title {
        font-size: 2rem;
    }
    
    .kedaiemaspajan-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .kedaiemaspajan-hero-content {
        text-align: center;
    }
    
    .kedaiemaspajan-breadcrumb {
        justify-content: center;
    }
    
    .kedaiemaspajan-hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .kedaiemaspajan-hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .kedaiemaspajan-form-row {
        grid-template-columns: 1fr;
    }
    
    .kedaiemaspajan-form {
        padding: 40px 24px;
    }
    
    .kedaiemaspajan-cta-title {
        font-size: 2.5rem;
    }
    
    .kedaiemaspajan-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .kedaiemaspajan-footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .kedaiemaspajan-footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .kedaiemaspajan-cookies-content {
        flex-direction: column;
        text-align: center;
    }
    
    .kedaiemaspajan-cookies-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .kedaiemaspajan-hero-title {
        font-size: 2rem;
    }
    
    .kedaiemaspajan-section-title {
        font-size: 1.75rem;
    }
    
    .kedaiemaspajan-cta-title {
        font-size: 2rem;
    }
    
    .kedaiemaspajan-calculator-form {
        padding: 24px;
    }
    
    .kedaiemaspajan-result-amount {
        font-size: 2.5rem;
    }
}
