/* ============================================
           NAVIGATION HEADER - GLASSMORPHIC
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.main-header.scrolled {
    background: var(--bg-glass-strong);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-green);
    transition: var(--transition);
}

.logo-section:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1;
}

.logo-text p {
    font-size: 11px;
    color: var(--text-muted);
    margin: 2px 0 0 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--digibro-green);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav {
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary {
    background: var(--bg-section);
    color: var(--text-heading);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--digibro-green);
    color: var(--digibro-green);
    background: white;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
           HERO SECTION - ASYMMETRIC SPLIT DESIGN
   ============================================ */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 80px;
    background: linear-gradient(135deg, #fefdfb 0%, #f8fafc 100%);
    position: relative;
    z-index: 2;
    margin-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 10px 20px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-green);
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-heading);
    margin-bottom: 24px;
    animation: slideInLeft 0.8s ease-out 0.1s both;
}

.hero-title .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}


.counter {
    display: inline-block;
    min-width: 60px;
    /* Prevents layout shift */
}

/* Hero Stats with proper + alignment */
.hero-stats-inline {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.stat-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
    /* + aur number ke beech chhota sa gap */
}

.stat-number-inline {
    font-family: var(--font-heading);
    font-size: 48px;
    /* bada size rakha hai jaise screenshot mein */
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 48px;
    /* same size as number */
    font-weight: 900;
    color: var(--digibro-teal);
    /* ya aap chahein to --digibro-green */
    line-height: 1;
}

.stat-label-inline {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.btn-hero {
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-green);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-hero-outline {
    background: transparent;
    color: var(--text-heading);
    border: 2px solid var(--text-heading);
}

.btn-hero-outline:hover {
    background: var(--text-heading);
    color: white;
}

.hero-right {
    position: relative;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image-wrapper {
    width: 100%;
    height: auto;
    position: relative;
}

.hero-main-image {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    animation: zoomIn 1.2s ease-out;
}


/* ✅ Only for 1210px to 1580px */
@media (min-width: 1210px) and (max-width: 1580px) {
    .hero-main-image {
        height: 100vh !important;
    }

    .hero-overlay-gradient {
        height: 100vh !important;
    }
}


@keyframes zoomIn {
    from {
        transform: scale(1.2);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.2) 0%, rgba(0, 102, 204, 0.2) 100%);
    z-index: 1;
}

.floating-info-boxes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.info-box {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
}

.info-box-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.info-box-2 {
    bottom: 20%;
    right: 15%;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.info-box-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin-bottom: 12px;
}

.info-box-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.info-box-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
           SEARCH PANEL - FLOATING MODERN DESIGN
   ============================================ */
.search-panel-section {
    padding: 0 40px 120px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.search-panel {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 28px;
    padding: 48px;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-color);
}

.search-header-text {
    text-align: center;
    margin-bottom: 40px;
}

.search-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.search-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

.search-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.search-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-input {
    padding: 16px 18px;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-fast);
    background: var(--bg-section);
    font-family: var(--font-primary);
}

.search-input:focus {
    outline: none;
    border-color: var(--digibro-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 183, 74, 0.1);
}

.search-submit-btn {
    padding: 18px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-green);
}

.search-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/*  ============================================
           BENTO BOX GRID - FEATURED EXPERIENCES
    ============================================ */
.bento-section {
    padding: 120px 40px;
    background: white;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-main-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    color: var(--text-heading);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
}

.bento-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 280px);
    gap: 20px;
}

.bento-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.bento-item:hover .bento-image {
    transform: scale(1.08);
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.bento-badge {
    display: inline-block;
    width: fit-content;
    padding: 6px 14px;
    background: var(--gradient-gold);
    color: white;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.bento-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}

.bento-large .bento-title {
    font-size: 42px;
}

.bento-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 16px;
}

.bento-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.bento-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
           DIAGONAL SECTION - WHY CHOOSE US
   ============================================ */
.diagonal-section {
    position: relative;
    padding: 140px 40px;
    background: var(--bg-section);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: 80px 0;
}

.diagonal-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.diagonal-left {
    position: relative;
}

.diagonal-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.diagonal-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    color: var(--text-heading);
    margin-bottom: 24px;
    line-height: 1.2;
}

.diagonal-text {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 32px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-list-item:hover {
    border-color: var(--digibro-green);
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    flex-shrink: 0;
}

.feature-text-content {
    flex: 1;
}

.feature-list-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.feature-list-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.diagonal-right {
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-box {
    background: white;
    padding: 36px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-box:hover {
    border-color: var(--digibro-green);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-green);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--text-heading);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-text {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ============================================
           TESTIMONIALS - MAGAZINE LAYOUT
   ============================================ */


.testimonials-section {
    padding: 120px 40px;
    background: white;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-section);
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card:hover {
    background: white;
    border-color: var(--digibro-green);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.quote-icon {
    position: absolute;
    top: 28px;
    right: 32px;
    font-size: 48px;
    color: var(--digibro-green);
    opacity: 0.15;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star-icon {
    color: var(--digibro-gold);
    font-size: 18px;
}

.testimonial-quote {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
}

.author-details {
    flex: 1;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
           CTA BANNER - FULL WIDTH GRADIENT
   ============================================ */

.cta-banner {
    position: relative;
    padding: 100px 40px;
    background: var(--gradient-vibrant);
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, .1) 35px, rgba(255, 255, 255, .1) 70px);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 8px;
    border-radius: 16px;
    box-shadow: var(--shadow-2xl);
}

.cta-email-input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.cta-submit-btn {
    padding: 18px 36px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cta-submit-btn:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
           FOOTER - PREMIUM DESIGN
   ============================================ */
.main-footer {
    background: var(--digibro-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 40px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: white;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.social-icon-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icon-link:hover {
    background: var(--digibro-green);
    transform: translateY(-3px);
}

.footer-column-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: var(--digibro-green);
    transform: translateX(4px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-bottom-link:hover {
    color: var(--digibro-green);
}

/* ============================================
   RESPONSIVE DESIGN - ENHANCED
============================================ */

/* Large Desktop (1400px+) */
@media (min-width: 1401px) {

    .nav-container,
    .search-panel,
    .diagonal-content,
    .testimonials-container,
    .footer-grid {
        max-width: 1400px;
    }
}

/* Desktop (1200px - 1400px) */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 52px;
    }

    .section-main-title {
        font-size: 46px;
    }

    .diagonal-title {
        font-size: 46px;
    }

    .bento-grid {
        gap: 16px;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 120px 40px 60px;
        margin-top: 80px;
    }

    .hero-right {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .nav-container {
        padding: 16px 30px;
    }

    .nav-menu {
        gap: 24px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-large,
    .bento-wide,
    .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-large .bento-title {
        font-size: 28px;
    }

    .diagonal-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .search-panel {
        padding: 36px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }

    .nav-actions {
        gap: 8px;
    }

    .btn-nav {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-left {
        padding: 100px 30px 50px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .search-panel-section {
        padding: 25px 30px 80px;
    }

    .search-form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .bento-section {
        padding: 80px 30px;
    }

    .section-header-center {
        margin-bottom: 60px;
    }

    .section-main-title {
        font-size: 38px;
    }

    .diagonal-section {
        padding: 100px 30px;
        clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    }

    .diagonal-title {
        font-size: 38px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-section {
        padding: 80px 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-banner {
        padding: 80px 30px;
    }

    .cta-title {
        font-size: 42px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
    .nav-container {
        padding: 14px 20px;
    }

    .logo-text h1 {
        font-size: 22px;
    }

    .logo-text p {
        font-size: 9px;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .nav-actions .btn-nav span {
        display: none;
    }

    .btn-nav {
        padding: 10px 14px;
    }

    .btn-nav i {
        display: none;
    }

    .hero-left {
        padding: 90px 20px 40px;
        margin-top: 70px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-stats-inline {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 32px;
    }

    .stat-number-inline {
        font-size: 38px;
    }

    .stat-plus {
        font-size: 38px;
    }

    .stat-label-inline {
        font-size: 14px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        font-size: 15px;
    }

    .search-panel-section {
        padding: 0 20px 60px;
        margin-top: -40px;
    }

    .search-panel {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .search-title {
        font-size: 26px;
    }

    .search-subtitle {
        font-size: 14px;
    }

    .search-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .search-submit-btn {
        padding: 16px;
        font-size: 15px;
    }

    .bento-section {
        padding: 60px 20px;
    }

    .section-header-center {
        margin-bottom: 40px;
    }

    .section-label {
        font-size: 11px;
        padding: 6px 16px;
    }

    .section-main-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }

    .bento-item {
        min-height: 250px;
    }

    .bento-overlay {
        padding: 24px;
    }

    .bento-title {
        font-size: 24px;
    }

    .diagonal-section {
        padding: 60px 20px;
        margin: 40px 0;
        clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    }

    .diagonal-content {
        gap: 40px;
    }

    .diagonal-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .diagonal-title {
        font-size: 32px;
    }

    .diagonal-text {
        font-size: 16px;
    }

    .feature-list {
        gap: 16px;
    }

    .feature-list-item {
        padding: 16px;
    }

    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .feature-list-title {
        font-size: 16px;
    }

    .feature-list-description {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-box {
        padding: 28px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .stat-value {
        font-size: 40px;
    }

    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .testimonial-quote {
        font-size: 15px;
    }

    .cta-banner {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .cta-form {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }

    .cta-email-input {
        padding: 16px 20px;
    }

    .cta-submit-btn {
        padding: 16px 32px;
    }

    .main-footer {
        padding: 60px 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-bottom-links {
        gap: 16px;
    }
}

/* Mobile Small (320px - 575px) */
@media (max-width: 575px) {
    .nav-container {
        padding: 12px 16px;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .btn-nav {
        padding: 10px 14px;
        font-size: 10px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .stat-number-inline {
        font-size: 32px;
    }

    .stat-plus {
        font-size: 32px;
    }

    .stat-label-inline {
        font-size: 13px;
    }

    .search-title {
        font-size: 24px;
    }

    .section-main-title {
        font-size: 28px;
    }

    .diagonal-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 15px;
    }

    .bento-title {
        font-size: 22px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .stat-value {
        font-size: 36px;
    }
}

/* Extra Small Mobile (< 375px) */
@media (max-width: 374px) {
    .hero-title {
        font-size: 28px;
    }

    .section-main-title {
        font-size: 26px;
    }

    .diagonal-title {
        font-size: 26px;
    }

    .cta-title {
        font-size: 26px;
    }

    .btn-hero {
        padding: 14px 24px;
        font-size: 14px;
    }

    .search-panel {
        padding: 20px 16px;
    }

    .stat-box {
        padding: 24px;
    }
}