/* =====================================================
   YENIBIRIS LANDING PAGE - MOBILE FIRST CSS
   Birebir yenibiris.com stilinde
   ===================================================== */


/* CSS Custom Properties */
:root {
    /* Colors - Yenibiris Brand */
    --color-primary: #2B52A1;
    --color-primary-dark: #243f7a;
    --color-accent: #4DB826;
    --color-accent-dark: #3d9a1e;

    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-hero: linear-gradient(135deg, #1C4DA1 0%, #2960c4 100%);

    /* Text */
    --text-dark: #050505;
    --text-grey: #929ba4;
    --text-light: #9CA3AF;

    /* Borders */
    --border-color: #E5E5E5;
    --border-color-light: #eeeeee;
    --border-color-grey: #dbdbdb;

    /* Shadows */
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-button: 0 4px 14px rgba(28, 77, 161, 0.4);

    /* Spacing */
    --container-padding: 1rem;
    --section-padding: 2rem 0;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 50%;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Red Hat Display', ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* =====================================================
   HEADER - Birebir yenibiris.com
   ===================================================== */
.header {
    background: var(--bg-white);
    width: 100%;
    border-bottom: 1px solid var(--border-color-light);
}

.header-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    height: 36px;
}

.logo-img {
    width: 190px;
    height: 36px;
    object-fit: contain;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.nav-link-text {
    color: var(--text-dark);
    display: none;
}

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

.nav-btn-outline {
    display: none;
    padding: 8px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
}

.nav-btn-outline:hover {
    background: #f5f5f5;
}

.nav-btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    color: var(--bg-white);
    font-weight: 600;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.04);
}

.nav-btn-primary:hover {
    background: var(--color-primary-dark);
}

/* Tablet and up - show all nav items */
@media (min-width: 640px) {
    .nav-link-text {
        display: block;
    }
}

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

    .header-container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 0 112px;
    }
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    background: var(--bg-hero);
    padding: 2rem 0 3rem;
    flex: 1;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* Form Card - Smaller and extends below hero */
.form-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    order: -1;
    position: relative;
    z-index: 10;
}

.form-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

/* Form Elements */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(43, 82, 161, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

/* Checkbox Styling */
.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 2px;
}

.checkbox-input:checked+.checkbox-custom {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox-input:checked+.checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-input:focus+.checkbox-custom {
    box-shadow: 0 0 0 3px rgba(43, 82, 161, 0.2);
}

.checkbox-text {
    color: var(--text-grey);
}

.checkbox-text .link {
    color: var(--color-primary);
    text-decoration: underline;
}

.checkbox-text .link:hover {
    color: var(--color-primary-dark);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--bg-white);
    background: var(--color-primary);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
}

.submit-btn:hover {
    background: var(--color-primary-dark);
    box-shadow: var(--shadow-button);
    transform: translateY(-1px);
}

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

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

/* Loader Animation */
.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.success-message h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--text-grey);
    font-size: 0.9rem;
}

/* Hero Benefits */
.hero-benefits {
    color: var(--bg-white);
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--color-accent);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* =====================================================
   SOCIAL PROOF STATS
   ===================================================== */
.social-proof {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bg-white);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* =====================================================
   URGENCY BADGE
   ===================================================== */
.urgency-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.urgency-icon {
    font-size: 1rem;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

/* =====================================================
   TRUST MESSAGE
   ===================================================== */
.trust-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-grey);
    font-size: 0.75rem;
    text-align: center;
}

.trust-icon {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* =====================================================
   HERO STATS & TESTIMONIAL
   ===================================================== */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats .stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.hero-stats .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-testimonial {
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
}

.hero-testimonial-stars {
    color: #FFD700;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.hero-testimonial-text {
    color: var(--text-white);
    font-size: 0.9375rem;
    font-style: italic;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.hero-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-testimonial-author .author-avatar {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 10px;
    font-weight: 700;
}

.hero-testimonial-author .author-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 500;
}

/* =====================================================
   BENEFITS SECTION - Neden Yenibiris
   ===================================================== */
.benefits-section {
    background: var(--bg-white);
    padding: 4rem 0;
}

.benefits-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-grey);
    text-align: center;
    margin-bottom: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary);
}

.benefit-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--color-primary);
}

.benefit-card-icon svg {
    width: 100%;
    height: 100%;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-card-desc {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* =====================================================
   TESTIMONIALS SECTION - Carousel
   ===================================================== */
.testimonials {
    background: var(--bg-light);
    padding: 4rem 0;
    overflow: hidden;
}

.testimonials .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.testimonials-carousel {
    display: flex;
    gap: 1.5rem;
    animation: scrollCarousel 30s linear infinite;
    width: max-content;
}

.testimonials-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonials-carousel .testimonial-card {
    flex: 0 0 300px;
    min-width: 300px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.975rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.author-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.author-title {
    font-size: 0.75rem;
    color: var(--text-grey);
}

/* =====================================================
   LIVE NOTIFICATION TOAST
   ===================================================== */
.live-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem 1.25rem;
    z-index: 1000;
    transform: translateX(-120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--color-accent);
}

.live-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-icon {
    font-size: 1.25rem;
}

.notification-text {
    font-size: 0.875rem;
    color: var(--text-dark);
}

/* =====================================================
   EXIT INTENT POPUP
   ===================================================== */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.exit-popup-content {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    animation: popupSlideIn 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

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

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    color: var(--text-grey);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all var(--transition-fast);
}

.exit-popup-close:hover {
    background: var(--border-color);
    color: var(--text-dark);
}

.exit-popup-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.exit-popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.exit-popup-text {
    font-size: 1rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.exit-popup-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--color-primary);
    color: var(--bg-white);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-fast);
}

.exit-popup-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-button);
}

.exit-popup-dismiss {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-grey);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.exit-popup-dismiss:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

/* =====================================================
   FOOTER - Birebir yenibiris.com
   ===================================================== */
.footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border-color-light);
    width: 100%;
    margin-top: auto;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Footer Top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 3rem;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 200px;
}

.footer-logo img {
    width: 190px;
    height: 36px;
    object-fit: contain;
}

.footer-social-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-title {
    font-size: 18px;
    color: var(--text-grey);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

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

.social-icon {
    width: 24px;
    height: 24px;
}

.footer-email {
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: underline;
}

.footer-email:hover {
    color: var(--color-primary);
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-nav-title {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-grey);
    text-transform: uppercase;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-list a {
    font-size: 18px;
    color: var(--text-dark);
}

.footer-nav-list a:hover {
    text-decoration: underline;
}

/* Footer Apps */
.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 186px;
    height: 56px;
    padding: 0 20px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color-grey);
    transition: border-color var(--transition-fast);
}

.app-badge:hover {
    border-color: var(--text-grey);
}

.app-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.app-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-store-logo {
    height: 16px;
    margin-bottom: 4px;
}

.app-download-text {
    font-size: 12px;
    color: var(--text-grey);
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: #ededed;
    margin-bottom: 2rem;
}

/* Footer Bottom */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-text {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.5;
}

.iskur-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.iskur-logo {
    width: 50px;
    height: 50px;
    background-image: url('https://www.yenibiris.com/kampanyalar/images/footer---iskur-logo-png.png');
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.iskur-text {
    font-size: 12px;
    color: var(--text-grey);
    line-height: 1.67;
}

/* Footer İŞKUR */
.footer-iskur {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.iskur-info,
.iskur-address {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.iskur-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-grey);
    text-transform: uppercase;
}

.iskur-details {
    font-size: 12px;
    color: var(--text-grey);
    line-height: 1.67;
}

.iskur-details p {
    margin: 0;
}

.iskur-details .bold {
    font-weight: 700;
}

.address-text {
    font-size: 12px;
    color: var(--text-grey);
    font-style: normal;
    line-height: 1.83;
}

/* Footer Copyright */
.footer-copyright {
    font-size: 12px;
    color: var(--text-grey);
    line-height: 1.83;
}

/* =====================================================
   TABLET BREAKPOINT (768px+)
   ===================================================== */
@media (min-width: 768px) {
    .hero {
        padding: 3rem 0 4rem;
    }

    .hero-content {
        flex-direction: row;
        align-items: flex-start;
        padding: 0 2rem;
    }

    .hero-benefits {
        flex: 1;
        order: -1;
    }

    .form-card {
        flex: 0 0 400px;
        order: 0;
        position: sticky;
        top: 100px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .footer-container {
        padding: 3rem 1.5rem 4rem;
    }

    .footer-bottom {
        grid-template-columns: 1fr 1fr;
    }

    .footer-iskur {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   DESKTOP BREAKPOINT (1024px+)
   ===================================================== */
@media (min-width: 1024px) {
    .hero {
        padding: 4rem 0 5rem;
    }

    .hero-content {
        gap: 4rem;
    }

    .hero-benefits {
        flex: 0 0 55%;
    }

    .form-card {
        flex: 0 0 420px;
        padding: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .benefit-item {
        font-size: 1.125rem;
    }

    .benefits-list {
        gap: 1.25rem;
    }

    .footer-container {
        padding: 2rem 2rem 4rem;
    }

    .footer-top {
        flex-wrap: nowrap;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =====================================================
   LARGE DESKTOP (1280px+)
   ===================================================== */
@media (min-width: 1280px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-benefits {
        flex: 0 0 60%;
    }
}

/* =====================================================
   RECRUITER LANDING PAGE STYLES
   ===================================================== */
.recruiter-hero {
    padding: 3rem 0;
    background-color: var(--bg-white);
}

.recruiter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.recruiter-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Left Column */
.recruiter-info {
    flex: 1;
}

.info-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.info-block:last-child {
    border-bottom: none;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-text {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    color: var(--text-dark);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-text {
    font-size: 1rem;
    font-weight: 500;
    padding-top: 0.5rem;
}

.info-box {
    background: #EAF4FF;
    border: 1px solid #B6D8FF;
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.info-box-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footnote {
    font-size: 0.8rem;
    color: var(--text-grey);
}

/* Right Column - Form */
.recruiter-form-container {
    flex: 1;
    max-width: 100%;
}

.callback-form-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.callback-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.callback-subtitle {
    font-size: 0.875rem;
    color: var(--text-grey);
    margin-bottom: 1rem;
}

.required-note {
    font-size: 0.75rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-grey);
}

.submit-btn.full-width {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    background: #ff6b35;
    /* Orange branding */
}

.submit-btn.full-width:hover {
    background: #e55a2b;
}

.recruiter-form .form-group {
    margin-bottom: 1rem;
}

/* Radio buttons */
.radio-group-container {
    margin-bottom: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Desktop Layout */
@media (min-width: 992px) {
    .recruiter-content {
        flex-direction: row;
        gap: 4rem;
    }

    .recruiter-info {
        flex: 1.2;
    }

    .recruiter-form-container {
        flex: 0.8;
    }
}

/* =====================================================
   REFERENCE DESIGN - PACKAGES & MODAL
   ===================================================== */
.pricing-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pricing-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

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

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

.package-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.package-card.highlight {
    border: 2px solid var(--color-primary);
    box-shadow: 0 8px 24px rgba(43, 82, 161, 0.15);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.package-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.package-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.package-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-grey);
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
    width: 100%;
    text-align: left;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-grey);
}

.package-features li svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

.package-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

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

.package-card.highlight .package-btn {
    background: var(--color-primary);
    color: white;
}

.package-card.highlight .package-btn:hover {
    background: var(--color-primary-dark);
}

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

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

.modal-content {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.2s;
    line-height: 1;
}

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

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--text-grey);
    text-align: center;
    margin-bottom: 2rem;
}

/* Comparison Table */
.comparison-section {
    padding: 0 0 5rem;
    background: var(--bg-light);
}

.table-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 4rem;
    color: var(--text-dark);
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    max-width: 100%;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color-light);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.comparison-table th {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    background: #fdfdfd;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    position: sticky;
    left: 0;
    background: inherit;
    z-index: 2;
    border-right: 1px solid var(--border-color-light);
    min-width: 200px;
}

.comparison-table tr:hover td {
    background: #f8fafc;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-check {
    color: var(--color-accent);
    display: flex;
    justify-content: center;
    align-items: center;
}

.comparison-check svg {
    width: 20px;
    height: 20px;
}

.comparison-cross {
    color: var(--border-color-grey);
    font-size: 1.25rem;
    font-weight: 300;
}
