/* Style variables matching reference layout */
:root {
    --accent: #f26b1d; /* Orange Accent */
    --accent-glow: rgba(242, 107, 29, 0.15);
    --dark-bg: #090a12;
    --dark-card: #121422;
    --text-dark: #0f172a;
    --text-muted: #5b6475;
    --border-color: rgba(15, 23, 42, 0.08);
    --whatsapp-green: #25d366;
    --whatsapp-hover: #1ebe5d;
    --font-family: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8fafc;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

/* Header */
.section--head {
    background-color: var(--dark-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.section--head .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--accent);
}

.content--nav {
    display: flex;
    gap: 24px;
}

.content--nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.content--nav a:hover {
    color: #ffffff;
}

.content--action a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 99px;
    background-color: var(--accent);
    border: 1px solid var(--accent);
    transition: var(--transition);
}

.content--action a:hover {
    background-color: #e05a0d;
    border-color: #e05a0d;
}

/* Hero Section */
.section--hero {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #15182b 100%);
    padding: 45px 0 55px;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.content--head {
    margin-bottom: 15px;
}

.hero-visual-icon {
    font-size: 32px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: float 4s ease-in-out infinite;
}

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

.content--info h1 {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.content--info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto 25px;
}

/* Hero Dual Button Box */
.hero-cta-box {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-market-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    padding: 16px 28px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(242, 107, 29, 0.35);
    transition: var(--transition);
}

.hero-market-btn:hover {
    background-color: #e05a0d;
    transform: translateY(-3px);
}

.hero-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    padding: 16px 28px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-wa-btn i, .hero-market-btn i {
    font-size: 22px;
}

.hero-wa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.hero-cta-subtext {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-cta-subtext i {
    color: #25d366;
}

/* Sayfa Ortası Belirgin WhatsApp & Market CTA Banner */
.cta-banner-section {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.cta-banner-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.cta-banner-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(37, 211, 102, 0.12);
    color: var(--whatsapp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.cta-banner-text h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.cta-banner-text p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.cta-banner-action {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cta-market-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 12px;
    transition: var(--transition);
    white-space: nowrap;
}

.cta-market-button:hover {
    background-color: #e05a0d;
}

.cta-wa-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--whatsapp-green);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 12px;
    transition: var(--transition);
    white-space: nowrap;
}

.cta-wa-button i, .cta-market-button i {
    font-size: 18px;
}

.cta-wa-button:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* Items Grid Section */
.section--item {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .4px;
    font-size: 12px;
    color: var(--accent);
    background: var(--accent-glow);
    margin-bottom: 18px;
}

.section-title-main {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 950px;
    margin: 0 auto;
}

.item.service-box {
    display: flex;
    align-items: flex-start;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: var(--transition);
}

.item.service-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.item .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 18px;
    flex-shrink: 0;
}

.item .icon.instagram {
    background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
    color: #ffffff;
}

.item .icon.tiktok {
    background-color: #000000;
    color: #ffffff;
}

.item .icon.ads {
    background-color: #4285f4;
    color: #ffffff;
}

.item .icon.branding {
    background-color: #f26b1d;
    color: #ffffff;
}

.item .text {
    text-align: left;
    font-size: 14px;
    color: var(--text-muted);
    width: 100%;
}

.item .text span {
    display: block;
    font-weight: 800;
    color: var(--text-dark);
    font-size: 18px;
    letter-spacing: -0.3px;
    margin-bottom: 6px;
}

.item .text p {
    margin-bottom: 14px;
    line-height: 1.5;
}

.card-action-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.click-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.click-action.market-link {
    color: var(--accent);
}

.click-action.wa-link {
    color: var(--whatsapp-green);
}

.click-action:hover {
    gap: 7px;
}

/* ROI Section */
.roi-section {
    background: #ffffff;
    padding: 80px 0 70px;
    border-top: 1px solid var(--border-color);
}

.roi-container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    text-align: center;
}

.roi-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .4px;
    font-size: 12px;
    color: var(--accent);
    background: var(--accent-glow);
    margin-bottom: 18px;
}

.roi-title {
    margin: 0 auto 14px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.roi-title span {
    color: var(--accent);
}

.roi-desc {
    margin: 0 auto 40px;
    max-width: 800px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
}

.roi-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.roi-card {
    position: relative;
    text-align: left;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 30px 24px 28px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
    transition: var(--transition);
    overflow: hidden;
}

.roi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.roi-watermark {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 72px;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.04);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.roi-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--accent-glow);
    color: var(--accent);
    margin-bottom: 18px;
    font-size: 24px;
}

.roi-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
}

.roi-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

/* Footer Section */
.footer {
    background-color: var(--dark-bg);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.footer--logo .logo {
    font-size: 26px;
    display: inline-block;
    margin-bottom: 12px;
}

.footer--text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 24px;
}

.footer--text p {
    margin-bottom: 6px;
}

.footer--social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer--social a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.footer--social a:hover {
    color: #ffffff;
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Legal Footer Links */
.footer-legal {
    width: 100%;
    text-align: center;
    background-color: #06070d;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
}

.legal-links {
    margin-bottom: 12px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #ffffff;
}

.legal-sep {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.2);
}

.ads-disclaimer {
    max-width: 850px;
    margin: 15px auto 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    line-height: 1.6;
    padding: 0 20px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 999;
    font-size: 32px;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Grid Rules */
@media (max-width: 980px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .roi-cards {
        grid-template-columns: 1fr;
    }
    .content--nav {
        display: none;
    }
    .cta-banner-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    .cta-banner-action {
        flex-direction: column;
        width: 100%;
    }
    .cta-market-button, .cta-wa-button {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .section--head .content {
        flex-direction: column;
        gap: 15px;
    }
    .legal-sep {
        display: none;
    }
    .footer-legal a {
        display: block;
        margin: 8px 0;
    }
}
