/* ============================================
   NOA YAZILIM - Shared Styles
   ============================================ */

:root {
    --primary: #1e3a5f;
    --primary-light: #2a4f7c;
    --primary-dark: #0f172a;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #d97706;
    --text: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg: #f8fafc;
    --bg-dark: #0f172a;
    --white: #ffffff;
    --border: #e5e7eb;
    --border-light: #f1f5f9;
    --success: #10b981;
    --danger: #ef4444;
    --info: #3b82f6;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.myp {
    font-size: 15px;
    color: var(--text-light);;
    line-height: 1.8;    
}

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

a { text-decoration: none; color: inherit; }

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

/* Typography */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; }

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(245,158,11,0.1);
    color: var(--accent-dark);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    /*max-width: 700px;*/
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.iconsizexl {
	font-size: 21px;
}
.logo img {
	max-width: 260px;
}
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: #ee762d;
    color: white;
    box-shadow: 0 4px 14px rgba(245,158,11,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,158,11,0.45);
}

.btn-secondary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-demoindir {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;    
}

.btn-demoindir:hover {
    transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(245,158,11,0.45);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(30,58,95,0.05);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--bg);
    transform: translateY(-2px);
}

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.card-body { padding: 28px; }

/* Feature Icon */
.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(30,58,95,0.08));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.card:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Header */
header {
    background: var(--primary);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.header-top {
    background: rgba(0,0,0,0.15);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a {
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
}

.header-top a:hover { color: var(--accent-light); }

.header-main {
    padding: 14px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark), var(--info));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(245,158,11,0.35);
    flex-shrink: 0;
}

.logo-text h1 {
    color: white;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-text span {
    color: var(--accent-light);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    gap: 6px;
}

.desktop-nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: white;
    background: rgba(255,255,255,0.1);
}

.desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background 0.3s;
}

.mobile-menu-btn:hover { background: rgba(255,255,255,0.1); }

/* Mobile Nav */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.mobile-nav-overlay.active { display: block; }

.mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--primary);
    z-index: 1001;
    padding: 80px 24px 24px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    overflow-y: auto;
}

.mobile-nav.active { right: 0; }

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.3s;
}

.mobile-nav a i {
    width: 22px;
    color: var(--accent);
    font-size: 16px;
}

.mobile-nav a:hover { color: white; }

.mobile-nav a.active { color: var(--accent-light); }

.mobile-nav .btn {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}

.close-mobile {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.close-mobile:hover { background: rgba(255,255,255,0.1); }

/* Page Header (for inner pages) */
.page-header {
    margin-top: 110px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.breadcrumb a { color: rgba(255,255,255,0.8); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--accent-light); }

.breadcrumb i { font-size: 10px; color: rgba(255,255,255,0.4); }

/* Footer */
footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.65);
    padding: 70px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-text h1 { font-size: 18px; }
.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
}

.footer-col h4 {
    color: white;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-col ul li a i { font-size: 10px; color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 48px; height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--accent); transform: translateY(-4px); }

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1150px) { /*768*/
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .header-actions .btn-outline { display: none; }
    .page-header { margin-top: 90px; padding: 40px 0; }
    .page-header h1 { font-size: 28px; }
    .section-header h2 { font-size: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
	.hideonmobile {display:none !important;}
}

@media (max-width: 480px) {
    .page-header h1 { font-size: 24px; }
    .section-header h2 { font-size: 24px; }
    .btn { padding: 10px 12px; font-size: 13px; }
    .container { padding: 0 16px; }
}


/* Özellikler */

.page-header { padding: 70px 0; }
.features-page { padding: 40px 0; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}
.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}
.feature-list {
    margin-top: 16px;
    list-style: none;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
}
.feature-list li i {
    color: var(--success);
    font-size: 12px;
}

/* Modules Detail Section */
.modules-detail {
    background: var(--white);
    padding: 80px 0;
}
.module-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.module-row:last-child { margin-bottom: 0; }
.module-row.reverse .module-text { order: 2; }
.module-row.reverse .module-visual { order: 1; }
.module-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}
.module-text h3 i {
    color: var(--accent);
    margin-right: 12px;
    font-size: 24px;
}
.module-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}
.module-visual {
    background: linear-gradient(135deg, var(--bg), var(--border-light));
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}
.module-visual i {
    font-size: 120px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .module-row { grid-template-columns: 1fr; gap: 30px; }
    .module-row.reverse .module-text,
    .module-row.reverse .module-visual { order: unset; }
    .module-text h3 { font-size: 22px; }
    .module-visual { min-height: 200px; padding: 30px; }
    .module-visual i { font-size: 80px; }
}

.page-header { padding: 70px 0; }
.support-section { padding: 60px 0 80px; }

/* Support Cards Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}
.support-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.support-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: transparent;
}
.support-card-header {
    padding: 28px 28px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.support-card-header i {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.support-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}
.support-card-body {
    padding: 0 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.support-card-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}
.support-card-body .btn {
    margin-top: auto;
    width: 100%;
}

/* Manual Card Special */
.manual-card .support-card-header i {
    background: linear-gradient(135deg, var(--info), #2563eb);
}

/* Video Card Special */
.video-card .support-card-header i {
    background: linear-gradient(135deg, var(--danger), #dc2626);
}

/* Contact Card Special */
.contact-card .support-card-header i {
    background: linear-gradient(135deg, var(--success), #059669);
}

/* Support Info Section */
.support-info {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-light);
    margin-bottom: 40px;
}
.support-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.support-info h3 i { color: var(--accent); }
.support-info p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}
.support-info ul {
    list-style: none;
    margin-top: 16px;
}
.support-info ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--text);
}
.support-info ul li:last-child { border-bottom: none; }
.support-info ul li i {
    color: var(--accent);
    width: 20px;
    font-size: 14px;
}
.support-info ul li strong { color: var(--primary); }

/* Remote Support */
.remote-support {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.remote-support::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.remote-support h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}
.remote-support p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.remote-support .btn {
    position: relative;
    background: white;
    color: var(--primary);
    padding: 14px 32px;
    font-size: 15px;
}
.remote-support .btn:hover {
    background: var(--bg);
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section { padding: 60px 0 80px; background: var(--white); }
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 16px;
}
.faq-item {
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
}
.faq-question {
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.faq-question:hover { background: rgba(30,58,95,0.03); }
.faq-question i { color: var(--accent); font-size: 14px; transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p {
    padding: 0 24px 18px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .support-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .remote-support { padding: 32px 24px; }
    .support-info { padding: 28px 22px; }
}

.page-header { padding: 70px 0; }
.references-section { padding: 60px 0 80px; }

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 48px 0;
    margin-bottom: 60px;
}
.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stats-bar-item h3 {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.stats-bar-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* References Grid */
.references-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));*/
    gap: 10px;
}
.reference-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.reference-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.reference-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: transparent;
}
.reference-card:hover::before { transform: scaleX(1); }
.reference-card .company-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin-bottom: 20px;
}
.reference-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}
.reference-card .sector {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.reference-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}
.reference-card .location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: var(--text-muted);
}
.reference-card .location i { font-size: 12px; }

/* Testimonials */
.testimonials-section {
    background: var(--white);
    padding: 80px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}
.testimonial-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 80px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    font-family: Georgia, serif;
}
.testimonial-card .stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 16px;
}
.testimonial-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-author .avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
}
.testimonial-author .info strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
}
.testimonial-author .info span {
    font-size: 13px;
    color: var(--text-light);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}
.cta-section p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 32px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

@media (max-width: 768px) {
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stats-bar-item h3 { font-size: 32px; }
    .references-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-section h2 { font-size: 28px; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
}

.page-header { padding: 70px 0; }
.about-section { padding: 60px 0 80px; }

/* About Intro */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.about-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}
.about-text h2 span { color: var(--accent); }
.about-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-text .highlight {
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(30,58,95,0.05));
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
    font-size: 15px;
    color: var(--text);
    font-style: italic;
}
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.about-visual img {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}
.about-visual .experience-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-visual .experience-badge strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}
.about-visual .experience-badge span {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

/* Values */
.values-section {
    background: var(--white);
    padding: 80px 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}
.value-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    background: var(--bg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: transparent;
}
.value-card i {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}
.value-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Timeline / History */
.history-section { padding: 80px 0; }
.history-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
    transform: translateX(-50%);
    border-radius: 3px;
}
.history-item {
    position: relative;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.history-item:nth-child(even) .history-content { order: 2; text-align: left; }
.history-item:nth-child(even) .history-year { order: 1; text-align: right; }
.history-year {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}
.history-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.history-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}
.history-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px; height: 20px;
    background: var(--white);
    border: 4px solid var(--accent);
    border-radius: 50%;
    box-shadow: var(--shadow);
    z-index: 2;
}

/* Team / Why Us */
.why-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}
.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}
.why-card i {
    font-size: 32px;
    color: var(--accent-light);
    margin-bottom: 16px;
    display: block;
}
.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.why-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-intro { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { order: -1; }
    .about-visual .experience-badge { left: 10px; padding: 14px 20px; }
    .about-visual .experience-badge strong { font-size: 28px; }
    .history-timeline::before { left: 20px; transform: none; }
    .history-item { grid-template-columns: 1fr; gap: 12px; padding-left: 50px; }
    .history-item:nth-child(even) .history-content,
    .history-item:nth-child(even) .history-year { order: unset; text-align: left; }
    .history-year { font-size: 32px; }
    .history-dot { left: 20px; transform: translateY(-50%); }
    .why-grid { grid-template-columns: 1fr; }
}

.page-header { padding: 70px 0; }
.contact-section { padding: 60px 0 80px; }

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}
.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: transparent;
}
.contact-info-card i {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 14px;
}
.contact-info-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.contact-info-card p,
.contact-info-card a {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}
.contact-info-card a:hover { color: var(--accent); }

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
.contact-form-wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.contact-form-wrapper > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(245,158,11,0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-form-wrapper .btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

/* Map Section */
.map-section {
    background: var(--white);
    padding: 60px 0 80px;
}
.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}
.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Working Hours */
.hours-section { padding: 60px 0 80px; }
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.hours-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-light);
    text-align: center;
}
.hours-card i {
    font-size: 28px;
    color: var(--accent);    
	vertical-align: middle;
}
.hours-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.hours-card p {
    font-size: 14px;
    color: var(--text-light);
}
.hours-card .status {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}
.hours-card .status.open {
    background: rgba(16,185,129,0.1);
    color: var(--success);
}
.hours-card .status.closed {
    background: rgba(239,68,68,0.1);
    color: var(--danger);
}

/* FAQ Mini */
.faq-mini { padding: 60px 0; background: var(--white); }
.faq-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}
.faq-mini-item {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 20px 24px;
    border: 1px solid var(--border-light);
}
.faq-mini-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.faq-mini-item h4 i { color: var(--accent); font-size: 12px; }
.faq-mini-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-info-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 28px 22px; }
    .map-wrapper iframe { height: 280px; }
    .hours-grid { grid-template-columns: 1fr; }
}

.satinal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.sales-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.sales-form-wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Payment Tabs */
.payment-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 2px solid var(--border-light);
}
.payment-tab {
    flex: 1;
    padding: 14px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg);
    cursor: pointer;
    border: 2px solid transparent;
    border-bottom: none;
    border-radius: var(--radius) var(--radius) 0 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.payment-tab:hover { color: var(--primary); background: rgba(30,58,95,0.05); }
.payment-tab.active {
    color: var(--primary);
    background: var(--white);
    border-color: var(--border-light);
    border-bottom: 2px solid var(--white);
    margin-bottom: -2px;
}
.payment-tab i { font-size: 16px; }

/* Payment Panels */
.payment-panel {
    display: none;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 28px;
}
.payment-panel.active { display: block; }

/* Payment Totals */
.payment-totals {
    background: linear-gradient(135deg, var(--bg), var(--border-light));
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 20px 0;
    border: 1px solid var(--border-light);
}
.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}
.total-row:first-child { border-bottom: 1px dashed var(--border); padding-bottom: 12px; margin-bottom: 4px; }
.total-row span { color: var(--text-light); }
.total-row strong { font-size: 18px; color: var(--primary); }

/* Installment Options */
.installment-options { margin-top: 16px; }
.installment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}
.installment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 10px;
    background: var(--bg);
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.installment-option:hover { border-color: var(--accent); }
.installment-option input { display: none; }
.installment-option:has(input:checked) {
    border-color: var(--accent);
    background: rgba(245,158,11,0.08);
}
.installment-option:has(input:checked) .installment-label { color: var(--accent-dark); font-weight: 700; }
.installment-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
.installment-amount {
    font-size: 12px;
    color: var(--text-light);
}

/* Bank Info */
.bank-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bank-card {
    background: linear-gradient(135deg, var(--bg), var(--white));
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}
.bank-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.bank-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}
.bank-header i {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.bank-header strong { font-size: 16px; color: var(--primary); }
.bank-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}
.bank-detail:last-child { margin-bottom: 0; }
.bank-detail label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bank-detail span {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}
.bank-detail .iban {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    background: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--border);
    cursor: pointer;
    transition: var(--transition);
}
.bank-detail .iban:hover {
    border-color: var(--accent);
    background: rgba(245,158,11,0.05);
}
.bank-detail .iban i { font-size: 14px; color: var(--accent); }

/* Satinal Grid*/
.satinal-grid { max-width: 850px; margin: 0 auto; } 

/* Card Input formatting */
#kart-no { font-family: 'Courier New', monospace; letter-spacing: 2px; }
#son-kullanma { font-family: 'Courier New', monospace; text-align: center; }
#cvv { font-family: 'Courier New', monospace; text-align: center; letter-spacing: 2px; }

@media (max-width: 768px) {
    .payment-tabs { flex-direction: column; }
    .payment-tab { border-radius: 0; border: none; border-bottom: 1px solid var(--border-light); }
    .payment-tab.active { border: none; border-bottom: 2px solid var(--accent); margin-bottom: 0; }
    .installment-grid { grid-template-columns: repeat(2, 1fr); }
    .bank-detail .iban { font-size: 13px; padding: 6px 10px; }
}

.mt20 {
	margin-top:20px;
}

.komisyonbadge {
    font-size: 14px;
    background-color: #fefbec;
    border: 1px solid #fcf3cb;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    color: #243a5d;
}

@media (max-width: 480px) {
	.logo img
		{
			max-width: 200px;
		}		
}

.page-header { padding: 70px 0; }
.license-section { padding: 60px 0 80px; }

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-light);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}
.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(245,158,11,0.1);
}
.pricing-card.popular::before {
    content: 'ÖNERİLEN';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    letter-spacing: 1px;
}
.pricing-header { text-align: center; margin-bottom: 28px; }
.pricing-header i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}
.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.pricing-header p {
    font-size: 13px;
    color: var(--text-light);
}
.pricing-price {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}
.pricing-price .amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.pricing-price .amount span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
}
.pricing-price .period {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}
.pricing-features { list-style: none; margin-bottom: 28px; flex: 1; }
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i {
    color: var(--success);
    font-size: 14px;
    width: 18px;
    flex-shrink: 0;
}
.pricing-features li.not-included { color: var(--text-muted); }
.pricing-features li.not-included i { color: var(--text-muted); opacity: 0.4; }
.pricing-card .btn { width: 100%; }

/* Additional Services */
.addons-section { padding: 60px 0; background: var(--white); }
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.addon-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.addon-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.addon-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.addon-card h4 i { color: var(--accent); font-size: 18px; }
.addon-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}
.addon-card .price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}
.addon-card .price span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
}

/* Comparison Table */
.compare-section { padding: 60px 0 80px; }
.compare-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    background: var(--white);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}
.compare-table th,
.compare-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border-light);
}
.compare-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
    white-space: nowrap;
}
.compare-table th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--radius-lg) 0 0; }
.compare-table td { color: var(--text); }
.compare-table tr:hover td { background: var(--bg); }
.compare-table td i.fa-check { color: var(--success); }
.compare-table td i.fa-times { color: var(--text-muted); opacity: 0.4; }
.compare-table .feature-name {
    font-weight: 600;
    color: var(--primary);
}

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr; }
    .compare-table th,
    .compare-table td { padding: 12px 14px; font-size: 13px; }
}

.mt30 {
	margin-top:30px;	
}
.feature-card ul li {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}
.feature-card ul {
    margin-left:20px;
}