/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue:       #1A3A6B;
    --blue-light: #2554A0;
    --red:        #C0392B;
    --green:      #1E8C45;
    --orange:     #E67E22;
    --dark:       #0F1F3D;
    --gray:       #6B7280;
    --light:      #F4F6FA;
    --white:      #FFFFFF;
    --shadow:     0 4px 24px rgba(26,58,107,0.10);
    --radius:     12px;
    --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: var(--white);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding { padding: 80px 0; }
.bg-light { background: var(--light); }
.bg-dark  { background: var(--dark); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-light); border-color: var(--blue-light); transform: translateY(-2px); }
.cky-btn{
    background: var(--blue-light)!important; 
    border-color: var(--blue-light)!important;
    padding: 10px 20px!important;
    border-radius: 6px!important;
    font-weight: 600!important;
    font-size: 0.8rem!important;
    cursor: pointer!important;
    transition: all var(--transition)!important;
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--blue); }

.btn-outline-blue {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
    margin-top: 16px;
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

.btn-outline-red {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
    margin-top: 16px;
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }

.btn-outline-green {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
    margin-top: 16px;
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }

.btn-white {
    background: var(--white);
    color: var(--blue);
    border-color: var(--white);
}
.btn-white:hover { background: var(--light); transform: translateY(-2px); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.btn-cta-red {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    margin-top: 24px;
}
.btn-cta-red:hover { background: #a93226; transform: translateY(-2px); }

/* ========== NAVBAR ========== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

.logo img { height: 100px; 
            width: auto;
}

.nav-logo img {
    height: 100px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links > a,
.dropdown > a {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    transition: color var(--transition), background var(--transition);
    cursor: pointer;
}

.nav-links > a:hover,
.dropdown > a:hover { color: var(--blue); background: var(--light); }

.dropdown { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 8px;
    background: transparent;
    min-width: 220px;
    flex-direction: column;
    z-index: 100;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: -1;
}
.dropdown:hover .dropdown-menu { display: flex; }
.dropdown-menu a {
    padding: 12px 20px;
    font-size: 0.9rem;
    color: #333;
    transition: background var(--transition);
}
.dropdown-menu a:hover { background: var(--light); color: var(--blue); }

.nav-cta { font-size: 0.9rem; padding: 10px 20px; }

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--blue);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 16px 24px;
    border-top: 1px solid #eee;
}
.mobile-menu a {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
    color: #333;
}
.mobile-menu.open { display: flex; }

/* ========== HERO ========== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.25);
}

.hero-content h1 {
    font-size: clamp(2rem, 3vw, 3,2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.mpage .hero-content h1 {
    font-size: clamp(2rem, 2,5vw, 3,2rem);

}
.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
    color: var(--white);
}
.stat strong { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.stat span { font-size: 0.8rem; opacity: 0.75; margin-top: 2px; }

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}
.section-header p { color: var(--gray); font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.7); }

.section-label {
    display: inline-block;
    background: rgba(26,58,107,0.08);
    color: var(--blue);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-label-light {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ========== CARDS GRID ========== */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ========== PROBLEM CARDS ========== */
.problem-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform var(--transition);
}
.problem-card:hover { transform: translateY(-6px); }
.problem-icon { font-size: 2.4rem; margin-bottom: 16px; }
.problem-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.problem-card p { color: var(--gray); font-size: 0.95rem; }

.problem-solution {
    text-align: center;
    margin-top: 40px;
    padding: 24px 32px;
    background: var(--blue);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1.1rem;
}

/* ========== SERVICE CARDS ========== */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    border-top: 4px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(26,58,107,0.15); }
.service-blue { border-top-color: var(--blue); }
.service-red  { border-top-color: var(--red); }
.service-green { border-top-color: var(--green); }

.service-icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.service-card p  { color: var(--gray); font-size: 0.9rem; margin-bottom: 16px; }
.service-card ul { margin-bottom: auto; }
.service-card ul li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}
.service-card ul li::before { content: '✓ '; color: var(--green); font-weight: 700; }

/* ========== WHY US ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.why-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.why-item h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-item p  { font-size: 0.875rem; color: rgba(255,255,255,0.65); }

/* ========== PROCESS ========== */
.process-steps {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.process-step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 200px;
    max-width: 240px;
}
.step-number {
    width: 48px;
    height: 48px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-step p  { font-size: 0.875rem; color: var(--gray); }
.process-arrow { font-size: 1.8rem; color: var(--blue); flex-shrink: 0; }

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--blue);
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { color: #444; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author strong { display: block; font-weight: 700; color: var(--dark); }
.testimonial-author span  { font-size: 0.85rem; color: var(--gray); }

/* ========== FOOTER CTA ========== */
.footer-cta {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    padding: 64px 0;
}
.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.footer-cta h2 { font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-cta p  { color: rgba(255,255,255,0.8); font-size: 1rem; }

/* ========== FOOTER ========== */
.footer { background: var(--dark); padding: 64px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-logo { height: 70px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-col p   { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4  { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.footer-col a   { display: block; color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 8px; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ========== PAGE HERO (aloldalak) ========== */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    display: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.page-hero p   { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }

/* ========== WARNING BOX ========== */
.warning-box {
    background: #fff5f5;
    border: 2px solid var(--red);
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin: 40px 0;
}
.warning-box .warn-icon { font-size: 1.6rem; flex-shrink: 0; }
.warning-box p { color: var(--red); font-weight: 600; font-size: 0.95rem; }

/* ========== SERVICE DETAIL ========== */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}
.service-detail-list { margin: 24px 0; }
.service-detail-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}
.service-detail-list li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 1rem; flex-shrink: 0; }

.sidebar-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: sticky;
    top: 90px;
}
.sidebar-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; color: var(--dark); }
.sidebar-card p  { font-size: 0.9rem; color: var(--gray); margin-bottom: 20px; }

/* ========== TARGET AUDIENCE ========== */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 32px;
}
.target-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}
.target-item .target-icon { font-size: 1.8rem; margin-bottom: 8px; }

/* ========== PRICING ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: transform var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.featured {
    border-color: var(--blue);
    transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}
.pricing-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; color: var(--dark); }
.pricing-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
    margin: 16px 0;
    line-height: 1;
}
.pricing-price span { font-size: 0.9rem; font-weight: 400; color: var(--gray); }
.pricing-desc { color: var(--gray); font-size: 0.9rem; margin-bottom: 24px; }
.pricing-features { text-align: left; margin-bottom: 32px; }
.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}
.pricing-features li.yes::before { content: '✅ '; }
.pricing-features li.no  { color: #bbb; }
.pricing-features li.no::before  { content: '❌ '; }

.pricing-note {
    background: var(--light);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.pricing-note h3 { margin-bottom: 12px; }
.pricing-note p  { color: var(--gray); }

.individual-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.ind-price-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}
.ind-price-card h4 { font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.ind-price-card p  { font-size: 0.875rem; color: var(--gray); }

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}
.contact-info-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 40px 32px;
}
.contact-info-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.contact-item-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item h4  { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.contact-item p   { font-size: 0.9rem; color: var(--gray); }


/* ========== ABOUT ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img {
    border-radius: var(--radius);
    overflow: hidden;
}
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.about-text p  { color: var(--gray); margin-bottom: 16px; line-height: 1.8; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    text-align: center;
}
.value-icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h4 { font-weight: 700; margin-bottom: 8px; }
.value-card p  { font-size: 0.875rem; color: var(--gray); }


/* ========== GYIK ========== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}
.faq-question:hover { background: var(--light); }
.faq-arrow { transition: transform var(--transition); font-size: 0.8rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 24px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}

h2.tit{
font-size:1.8rem;
font-weight:800;
margin-bottom:16px;
}
p.sz-6b7{
color:#6B7280;
margin-bottom:24px;
line-height:1.8;
}
[data-cky-tag="powered-by"]{
    display: none!important;
}
/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .cards-3,
    .why-grid,
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.featured { transform: scale(1); }
}

@media (max-width: 768px) {
    .pricing-grid,
     .cards-3 { grid-template-columns: repeat(1, 1fr); }
    .section-padding { padding: 56px 0; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }
    .why-grid,
    .pricing-grid,
    .values-grid,
    .process-steps { flex-direction: column; }
    .process-arrow { transform: rotate(90deg); }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-cta-inner { flex-direction: column; text-align: center; }
    .hero-stats { gap: 24px; }
    .hero-btns { flex-direction: column; }
    .hero-content h1 { font-size: 1.8rem; }
}
