
:root {
    
    --kaab-primary: #f39c12;
    --kaab-primary-dark: #e67e22;
    --kaab-primary-light: #f1c40f;
    --kaab-accent: #e74c3c;
    
    --navy: #0f2c3d;
    --navy-700: #123449;
    --ink: #0c1b24;
    --cream: #f4f6f7;
    --card: #ffffff;
    --accent: #00b3a6;
    --muted: #6c7a86;
    --ring: rgba(0, 179, 166, 0.35);
    
  
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --shadow: 0 10px 25px rgba(15, 44, 61, 0.12);
    --radius: 18px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    
    --rojo-problema: #e74c3c;
    --rojo-claro: rgba(231, 76, 60, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: #ffffff;
    color: #1e293b;
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(244, 246, 247, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(15, 44, 61, 0.15);
}

header.scrolled {
    padding: 0.7rem 5%;
    box-shadow: var(--shadow);
    background-color: rgba(244, 246, 247, 0.98);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 0;                
    border-radius: 14px;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.logo-container:hover {
    background: rgba(15,44,61,0.035);
    box-shadow: 0 6px 18px rgba(15,44,61,.08);
    transform: translateY(-1px);
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(15,44,61,.10);
    transition: transform .2s ease, box-shadow .2s ease;
}

header.scrolled .logo-img { 
    height: 46px;
}

.logo-container:hover .logo-img {
    transform: scale(1.015);
    box-shadow: 0 8px 20px rgba(15,44,61,.12);
}

.logo-lockup {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.4px;
    margin-bottom: 2px; 
    -webkit-font-smoothing: antialiased;
}

.logo-text span {
    color: var(--accent);
    font-weight: 900;
}

.logo-text:after { 
    content: none !important; 
}

.logo-sub {
    display: inline-flex;
    align-items: center;
    height: 22px;
    width: fit-content;
    padding: 0 10px;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .65px;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--navy-700));
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(15,44,61,.18), inset 0 0 0 1px rgba(255,255,255,.06);
}

header .logo-container::after {
    content: "";
    width: 1px; 
    height: 24px;
    margin-left: 10px;
    background: linear-gradient(to bottom, transparent, rgba(15,44,61,.18), transparent);
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin: 0 0.8rem;
}

.nav-links a {
    color: var(--navy);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.4rem 0.6rem;
    position: relative;
    border-radius: 4px;
}

.nav-links a:hover {
    color: var(--accent);
    background: rgba(15, 44, 61, 0.05);
}

.nav-links a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover:before {
    width: 70%;
}

.btn-login {
    background: var(--navy);
    color: white !important;
    padding: 0.4rem 1.2rem !important;
    border-radius: 30px !important;
    border: 1px solid var(--navy);
    margin-left: 0.5rem;
    font-weight: 600 !important;
    box-shadow: var(--shadow);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-login i {
    color: var(--accent);
    font-size: 0.9rem;
}

.btn-login:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: var(--navy) !important;
}

.btn-login:hover i {
    color: var(--navy) !important;
}

.btn-login:before {
    content: none !important;
}

.user-profile-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 0.5rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem; 
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 179, 166, 0.3);
    border: 2px solid white;
    text-transform: uppercase;
}

.user-avatar:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(0, 179, 166, 0.4);
}

.user-dropdown {
    position: absolute;
    top: 70px;
    right: 5%;
    width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(15, 44, 61, 0.2);
    padding: 1rem 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 44, 61, 0.1);
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(15, 44, 61, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.dropdown-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.dropdown-info h4 {
    color: var(--navy);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.dropdown-info p {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
}

.user-dropdown-menu {
    list-style: none;
    padding: 0.5rem 0;
}

.user-dropdown-menu li {
    margin: 0;
}

.user-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1.5rem;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.user-dropdown-menu a:hover {
    background: rgba(0, 179, 166, 0.08);
    color: var(--accent);
}

.user-dropdown-menu a i {
    width: 20px;
    color: var(--accent);
    font-size: 1.1rem;
}

.dropdown-divider {
    height: 1px;
    background: rgba(15, 44, 61, 0.1);
    margin: 0.5rem 0;
}

.logout-link {
    color: #e74c3c !important;
}

.logout-link i {
    color: #e74c3c !important;
}

.logout-link:hover {
    background: rgba(231, 76, 60, 0.08) !important;
    color: #e74c3c !important;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--navy);
    transition: var(--transition);
}

.hamburger:hover {
    color: var(--accent);
}

.kaab-hero {
    padding: 120px 10% 40px;
    background: #ffffff;
    position: relative;
    overflow: visible;
    min-height: auto;
    display: flex;
    align-items: center;
    width: 100%;
}

.kaab-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.kaab-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.kaab-hero-text {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.kaab-hero-logo {
    width: 600px;
    height: auto;
    position: relative;
    left: -170px;
    top: -20px;
    margin-bottom: -170px;
    z-index: 10;
    max-width: none;
    pointer-events: none;
}

.kaab-hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 5;
}

.kaab-hero-title span {
    color: var(--kaab-primary);
    position: relative;
    display: inline-block;
}

.kaab-hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(243, 156, 18, 0.2);
    z-index: -1;
}

.kaab-hero-description {
    font-size: 1.2rem;
    color: #5f6b7a;
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 5;
}

.kaab-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 5;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kaab-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--navy);
    color: white;
    box-shadow: 0 10px 20px rgba(15, 44, 61, 0.2);
}

.btn-primary:hover {
    background: var(--kaab-primary);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(243, 156, 18, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--navy);
    color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-3px);
}

.btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.kaab-hero-image {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #ecf0f1;
    transition: var(--transition);
    aspect-ratio: 16/10;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kaab-hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.kaab-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kaab-problems {
    padding: 60px 10%;
    background: #f8fafc;
    width: 100%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--kaab-primary);
}

.section-header p {
    font-size: 1.2rem;
    color: #5f6b7a;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #ecf0f1;
    transition: var(--transition);
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.08);
    border-color: var(--kaab-accent);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-icon i {
    font-size: 2rem;
    color: var(--kaab-accent);
}

.problem-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.problem-item p {
    color: #5f6b7a;
    font-size: 0.95rem;
    line-height: 1.6;
}

.kaab-features {
    padding: 60px 10%;
    background: white;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    border: 1px solid #ecf0f1;
    text-align: center;
}

.feature-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.1);
    border-color: var(--kaab-primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--kaab-primary);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #5f6b7a;
    font-size: 0.95rem;
    line-height: 1.6;
}

.kaab-target {
    padding: 50px 10%;
    background: #f8fafc;
    border-top: 1px solid #ecf0f1;
    border-bottom: 1px solid #ecf0f1;
    width: 100%;
}

.target-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.target-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.target-content p {
    font-size: 1.2rem;
    color: #5f6b7a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.target-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.target-tag {
    background: white;
    border: 1px solid #ecf0f1;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    transition: var(--transition);
    cursor: default;
}

.target-tag:hover {
    background: var(--kaab-primary);
    color: white;
    border-color: var(--kaab-primary);
    transform: translateY(-2px);
}

.kaab-modules {
    padding: 60px 10%;
    background: white;
    width: 100%;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.module-item {
    background: #f8fafc;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #ecf0f1;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.module-item:hover {
    background: white;
    border-color: var(--kaab-primary);
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.1);
}

.module-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-icon i {
    font-size: 1.5rem;
    color: var(--kaab-primary);
}

.module-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.module-info p {
    color: #5f6b7a;
    font-size: 0.9rem;
}

.kaab-pricing {
    padding: 60px 10%;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3b4f 100%);
    color: white;
    width: 100%;
}

.kaab-pricing .section-header h2 {
    color: white;
}

.kaab-pricing .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: var(--transition);
    position: relative;
    color: var(--navy);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    border: 2px solid var(--kaab-primary);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kaab-primary);
    color: var(--navy);
    padding: 0.3rem 1.5rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ecf0f1;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--kaab-primary);
}

.pricing-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: #7f8c8d;
}

.setup-fee {
    background: var(--kaab-primary);
    color: var(--navy);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 0.3rem;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.8rem;
    color: #5f6b7a;
    font-size: 0.9rem;
}

.pricing-features li i {
    color: var(--kaab-primary);
    font-size: 0.9rem;
    width: 18px;
    flex-shrink: 0;
}

.pricing-features .highlight {
    background: rgba(243, 156, 18, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.pricing-features .highlight p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--navy);
}

.pricing-features .highlight i {
    margin-right: 4px;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background: var(--navy);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--navy);
    font-size: 0.95rem;
    margin-top: auto;
}

.btn-pricing:hover {
    background: var(--kaab-primary);
    color: var(--navy);
    border-color: var(--kaab-primary);
}

.kaab-cta {
    padding: 50px 10%;
    text-align: center;
    background: white;
    width: 100%;
}

.kaab-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.kaab-cta p {
    font-size: 1.2rem;
    color: #5f6b7a;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: var(--kaab-primary);
    color: var(--navy);
    padding: 1.2rem 3.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(243, 156, 18, 0.3);
    border: none;
    text-decoration: none;
}

.btn-cta:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(15, 44, 61, 0.3);
}

footer {
    background: var(--navy);
    color: white;
    padding: 3rem 10% 2rem;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-about p {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px; 
    height: 45px; 
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--kaab-primary);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b0c4de;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--kaab-primary);
    padding-left: 5px;
}

.footer-contact p {
    color: #b0c4de;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: var(--kaab-primary);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0c4de;
    font-size: 0.9rem;
}

.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .kaab-hero-logo {
        width: 500px;
        left: -60px;
        top: 10px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    
    .nav-links li {
        margin: 0 0.5rem;
    }
    .nav-links a {
        font-size: 0.85rem;
        padding: 0.4rem 0.5rem;
    }
    .btn-login {
        padding: 0.4rem 1rem !important;
        font-size: 0.85rem;
    }
    .logo-text {
        font-size: 1.4rem;
    }
    .logo-img {
        height: 45px;
    }

    .kaab-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .kaab-hero-text {
        max-width: 100%;
    }
    
    .kaab-hero-stats {
        justify-content: center;
    }
    
    .kaab-hero-buttons {
        justify-content: center;
    }
    
    .kaab-hero-logo {
        width: 400px;
        left: 0;
        top: 0;
        margin-bottom: 0;
    }
    
    .problems-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: var(--transition);
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        padding: 5rem 2rem 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1rem 0;
        width: 100%;
    }

    .nav-links a {
        padding: 0.8rem 1rem;
        width: 100%;
        display: block;
        font-size: 1rem;
    }

    .btn-login {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    header .logo-container::after {
        display: none;
    }

    section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .kaab-hero {
        padding: 100px 5% 30px;
    }
    
    .kaab-hero-title {
        font-size: 2.5rem;
    }

    .kaab-hero-logo {
        width: 350px;
    }

    .kaab-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .problems-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card {
        width: 100%;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .popular-badge {
        font-size: 0.7rem;
        padding: 0.2rem 1.2rem;
    }

    .pricing-name {
        font-size: 1.3rem;
    }

    .pricing-price {
        font-size: 1.8rem;
    }

    .setup-fee {
        font-size: 0.75rem;
        padding: 0.2rem 0.8rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
    }

    .pricing-features .highlight p {
        font-size: 0.8rem;
    }

    .btn-pricing {
        font-size: 0.9rem;
        padding: 0.7rem;
    }

    .kaab-pricing > div:last-child {
        padding: 2rem 1.5rem !important;
        margin-top: 2rem !important;
    }

    .kaab-pricing > div:last-child h3 {
        font-size: 1.8rem !important;
    }

    .kaab-pricing > div:last-child p {
        font-size: 1.1rem !important;
    }

    .kaab-pricing > div:last-child a {
        font-size: 1rem !important;
        padding: 1rem 2rem !important;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .kaab-hero-title {
        font-size: 2rem;
    }

    .kaab-hero-logo {
        width: 280px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .kaab-hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .target-tags {
        flex-direction: column;
        align-items: center;
    }

    .target-tag {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .pricing-header {
        padding-bottom: 0.8rem;
        margin-bottom: 1rem;
    }

    .pricing-features {
        margin: 1rem 0;
    }

    .pricing-features li {
        margin-bottom: 0.6rem;
    }

    .popular-badge {
        top: -10px;
        font-size: 0.65rem;
        padding: 0.2rem 1rem;
    }

    .kaab-pricing > div:last-child {
        padding: 1.5rem 1rem !important;
    }

    .kaab-pricing > div:last-child h3 {
        font-size: 1.5rem !important;
    }

    .kaab-pricing > div:last-child p {
        font-size: 1rem !important;
    }

    .kaab-pricing > div:last-child a {
        font-size: 0.9rem !important;
        padding: 0.8rem 1.5rem !important;
    }
}