/* 1. ANA AYARLAR VƏ RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-pink: #e30052;
    --brand-dark: #1d1d1f;
    --brand-gradient: linear-gradient(135deg, #fdebee 0%, #ffffff 100%);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--brand-dark);
    background-color: #ffffff; 
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. HEADER (MENYU) */
.main-header {
    height: 80px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000; /* Mega menu üçün artırıldı */
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.desktop-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--brand-dark);
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
}

.desktop-nav a:hover {
    color: var(--brand-pink);
}

.header-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-text {
    text-decoration: none;
    color: var(--brand-dark);
    font-weight: 600;
}

.btn-demo {
    background: var(--brand-pink);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--brand-pink);
    transition: 0.3s;
}

.btn-demo:hover {
    background: transparent;
    color: var(--brand-pink);
}

/* 2.1 MEGA MENU ƏLAVƏSİ */
.has-mega {
    position: static; 
    padding-bottom: 20px; /* KÖRPÜ: Menyu ilə pəncərəni birləşdirir */
    margin-bottom: -20px; 
}

.mega-menu {
    position: absolute;
    top: 80px; /* Header hündürlüyü ilə eyni */
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 40px 0;
    
    /* GİZLƏTMƏ VƏ KEÇİD AYARLARI */
    display: none; 
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Hover zamanı pəncərənin sabit qalması */
.has-mega:hover .mega-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mega-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.mega-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f5f7;
    letter-spacing: -0.5px;
}

.mega-col ul {
    flex-direction: column !important;
    gap: 15px !important;
    align-items: flex-start !important;
}

.mega-col li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mega-col li img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.mega-col li a {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #555 !important;
}

.mega-col li a:hover {
    color: var(--brand-pink) !important;
    transform: translateX(5px);
}

/* 3. HERO SECTION (ƏSAS HİSSƏ) */
.hero-section {
    padding: 80px 0;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    min-height: 500px;
}

.flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
    text-align: center;
}

.hero-visual img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.top-tag {
    color: var(--brand-pink);
    font-weight: 700;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #444;
    margin-bottom: 30px;
}

.btn-main {
    background: var(--brand-dark);
    color: #fff;
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 4. SOLUTIONS SECTION (KARTLAR) */
.solutions-section {
    padding: 80px 0;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.solution-card {
    border: 1px solid #eee;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.solution-card img {
    width: 65px;
    margin: 0 auto 20px;
}

/* MOBİL UYĞUNLUQ */
@media (max-width: 992px) {
    .flex-row { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 36px; }
    .desktop-nav { display: none; }
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    .mega-menu { display: none !important; } /* Mobildə gizlədirik */
}
/* FOOTER ÜMUMİ STİLLƏR */
.site-footer {
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.footer-top {
    background-color: var(--brand-pink);
    color: white;
    padding: 60px 0;
}

.footer-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    margin-bottom: 5px;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    transition: 0.3s;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* ALT QARA HİSSƏ */
.footer-bottom {
    background-color: #0d1219;
    padding: 60px 0 20px;
    color: #94a3b8;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 40px;
}

.link-col h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 700;
}

.link-col ul {
    list-style: none;
    padding: 0;
}

.link-col ul li {
    margin-bottom: 10px;
}

.link-col ul li a {
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.link-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.copyright-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 12px;
}

/* MOBİL UYĞUNLUQ (RESPONSIVE) */
@media (max-width: 992px) {
    .footer-top-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobildə 2-2 düzülür */
        gap: 40px 20px;
    }
}

@media (max-width: 576px) {
    .footer-links-grid {
        grid-template-columns: 1fr; /* Çox kiçik ekranlarda 1-1 düzülür */
        text-align: center;
    }

    .copyright-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
}
/* DIGITAL SOLUTIONS SECTION */
.digital-solutions {
    padding: 100px 0;
    background-color: #fef8f9; /* Şəkildəki çox açıq çəhrayı fon */
}

.section-head h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1d1d1f;
}

.section-head p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.solution-content {
    margin-top: 60px;
    align-items: center;
    gap: 100px;
}

.solution-content h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1d1d1f;
}

.solution-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

.solution-content .hero-visual img {
    max-width: 110%; /* Şəkilin bir az daha böyük görünməsi üçün */
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.1));
}

/* Tab düymələri arasındakı məsafəni bir az tənzimləyək (əgər yuxarıda yoxdursa) */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}
/* CONTACT FORM SECTION */
.contact-form-section {
    padding: 100px 0;
    background-color: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #fdf3f6; /* Çox açıq çəhrayı fon */
    border-radius: 30px;
    overflow: hidden;
    margin-top: 50px;
    border: 1px solid #f9dbe3;
}

.form-side {
    padding: 60px;
    background-color: #fff; /* Form tərəfi ağdır */
    border-radius: 30px 0 0 30px;
}

.info-side {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.form-side h4, .info-side h4 {
    font-size: 20px;
    font-weight: 600;
    color: #704d56;
    margin-bottom: 30px;
    line-height: 1.4;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #704d56;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f0e1e5;
    border-radius: 10px;
    font-family: inherit;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: var(--brand-pink);
    outline: none;
}

.contact-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: 0.3s;
}

.call-btn.pink-bg { background-color: var(--brand-pink); }
.call-btn.blue-bg { background-color: #4b6b85; }

.call-btn:hover { opacity: 0.9; transform: scale(1.02); }

.illustration {
    margin-top: 30px;
    text-align: right;
}

.illustration img {
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .form-side { border-radius: 30px 30px 0 0; padding: 40px 20px; }
    .info-side { padding: 40px 20px; text-align: center; }
    .call-btn { justify-content: center; font-size: 18px; }
}
/* Pricing Section Styles - Təkmilləşdirilmiş Versiya */
.pricing-section {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1d1d1f;
    text-align: center;
}

.section-header p {
    color: #86868b;
    margin-bottom: 40px;
    text-align: center;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid #e5e5e5;
    background: #f5f5f7;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active {
    background: #e30052;
    color: #fff;
    border-color: #e30052;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* KARTLARIN ÇƏRÇİVƏSİ (BORDER) BURADADIR */
.price-card {
    background: #fff;
    border: 1.5px solid #f0f0f0; /* Şəkildəki incə çərçivə */
    border-radius: 24px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); /* Yüngül kölgə */
}

/* Hover zamanı çərçivənin rənglənməsi */
.price-card:hover {
    border-color: #e30052;
    transform: translateY(-5px);
}

/* ÇƏHRAYI KART (Featured) */
.price-card.featured {
    background: #e30052;
    color: #fff;
    border: 2px solid #e30052; /* Öz rəngində daha qalın çərçivə */
    box-shadow: 0 10px 30px rgba(227, 0, 82, 0.2);
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.category-tag {
    font-size: 12px;
    font-weight: 700;
    color: #e30052;
    display: block;
    margin-bottom: 10px;
}

.featured .category-tag {
    color: #fff;
    background: rgba(255,255,255,0.2);
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
}

.price-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
}

.card-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* KARTIN ALT QUTUSU (BOZ/AĞ HİSSƏ) */
.card-footer {
    background: #fef8f9; /* Ağ kartlarda açıq çəhrayı ton */
    padding: 20px;
    border: 1px solid #f9eef1; /* İç qutunun öz çərçivəsi */
    border-radius: 20px;
    text-align: center;
}

.featured .card-footer {
    background: #fff; /* Çəhrayı kartda daxili qutu ağdır */
    color: #333;
    border: none;
}

.price-info { margin-bottom: 15px; }

.amount {
    font-size: 32px;
    font-weight: 800;
    color: #1d1d1f;
}

.featured .amount { color: #e30052; } /* Çəhrayı kartda qiymət rəngi */

.license { font-size: 11px; color: #888; margin: 0; }

.btn-detail {
    display: block;
    padding: 12px;
    border: 1px solid #e30052;
    color: #e30052;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 15px;
    transition: 0.3s;
}

.featured .btn-detail {
    background: #e30052;
    color: #fff;
}

.btn-detail:hover {
    background: #e30052;
    color: #fff;
}

.description {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 30px; }
    .section-header h2 { font-size: 32px; }
}