/* Service Detail - Kinetic Theme Styles */

.kinetic-theme {
    background-color: #f7f7f7;
    color: #000;
}

/* Kinetic Hero */
.kinetic-hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.kinetic-bg-text {
    position: fixed;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.08);
    line-height: 0.8;
    z-index: -1;
    pointer-events: none;
    user-select: none;
    opacity: 0.8;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 10;
}

.hero-left-content {
    flex: 1.2;
}

.k-subtitle {
    font-size: 80px;
    font-weight: 300;
    margin-bottom: -20px;
    color: #666;
    letter-spacing: -2px;
}

.k-main-title {
    font-size: 110px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -4px;
    color: #000;
    text-transform: capitalize;
}

.k-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    max-width: 500px;
    margin-bottom: 50px;
}

/* Begin Button - Kinetic Style */
.btn-begin {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 12px 35px 12px 12px;
    border-radius: 100px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.btn-orb {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff4d00, #ff8c00);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 77, 0, 0.4);
    transition: 0.5s;
}

.btn-orb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: rgba(255, 255, 255, 0.3);
    filter: blur(5px);
    border-radius: 50%;
}

.btn-begin:hover {
    transform: translateX(10px);
    border-color: var(--accent-color);
}

.btn-begin:hover .btn-orb {
    background: var(--accent-color);
    box-shadow: 0 0 25px rgba(15, 255, 0, 0.6);
}

/* Kinetic Visual Card */
.hero-right-visual {
    flex: 0.8;
    perspective: 1000px;
}

.k-visual-card {
    background: #fff;
    padding: 15px;
    border-radius: 35px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: var(--transition-smooth);
}

.k-visual-card:hover {
    transform: rotateY(0) rotateX(0);
}

.k-card-img-wrap {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 400px;
}

.motion-blur-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px); /* Kinetic effect base */
    transition: 1s ease;
}

.k-visual-card:hover .motion-blur-img {
    filter: blur(0);
}

.k-card-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    z-index: 2;
}

.k-card-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 5px;
    display: block;
}

.k-card-overlay h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
}

.k-card-overlay p {
    font-size: 14px;
    opacity: 0.8;
}

/* Studio Section */
.k-studio-section {
    padding: 120px 0;
    text-align: center;
}

.k-studio-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff4d00;
    margin-bottom: 40px;
}

.dot-orange {
    width: 10px;
    height: 10px;
    background: #ff4d00;
    border-radius: 50%;
    display: inline-block;
}

.k-studio-text {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -2px;
    max-width: 1000px;
    margin: 0 auto;
}

.k-studio-text span:not(.k-shape-wrap) {
    color: #666;
}

.k-shape-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff !important;
    padding: 5px 40px;
    border-radius: 100px;
    position: relative;
    margin: 0 10px;
    overflow: hidden;
}

.s-green {
    background: var(--accent-color);
    color: #000 !important;
}

.k-shape-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 15px;
    background: rgba(255, 77, 0, 1);
    filter: blur(15px);
    border-radius: 50%;
    z-index: 0;
}

.s-green .k-shape-glow {
    background: rgba(15, 255, 0, 0.8);
}

.k-shape-wrap span:last-child {
    position: relative;
    z-index: 1;
}

.k-studio-desc {
    max-width: 700px;
    margin: 40px auto 0;
    font-size: 18px;
    line-height: 1.8;
    color: #888;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Feature Grid */
.k-feature-grid {
    padding-top: 30px;
    padding-bottom: 150px;
}

.k-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 4%;
}

.k-grid-item {
    border-radius: 35px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.k-item-black { background: #000; color: #fff; }
.k-item-grey { background: #eee; color: #000; }

.k-item-blur {
    grid-column: span 1;
    color: #fff;
    background: #111;
}

.k-item-landscape {
    grid-column: span 1;
    color: #fff;
    background: #111;
}

.k-bg-motion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: blur(20px) grayscale(0.5);
    opacity: 0.7;
    transition: 0.8s ease;
}

.k-grid-item:hover .k-bg-motion {
    filter: blur(5px) grayscale(0);
    opacity: 1;
}

.k-grid-content {
    position: relative;
    z-index: 2;
}

.k-grid-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.k-item-grey .k-grid-tag {
    border-color: rgba(0,0,0,0.1);
}

.k-grid-content h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
}

.k-grid-content p {
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.6;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1200px) {
    .k-main-title { font-size: 80px; }
    .k-studio-text { font-size: 48px; }
    .k-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    body, .kinetic-theme, .kinetic-hero, .k-studio-section, .k-feature-grid, .k-solutions-showcase {
        background-color: #ffffff !important; /* Tüm bölümleri beyaz yaptık kanka */
        background-image: none !important;
    }
    /* Kinetic Hero Mobile */
    .kinetic-hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    .hero-flex {
        flex-direction: column;
        gap: 30px;
        text-align: left; /* Sola yasladık kanka */
    }
    .hero-left-content {
        width: 100%;
    }
    .k-subtitle {
        font-size: 40px !important;
        margin-bottom: 0;
        text-align: left;
    }
    .k-main-title {
        font-size: 45px !important;
        letter-spacing: -2px;
        margin-bottom: 20px;
        text-align: left;
    }
    .k-desc {
        font-size: 16px;
        margin: 0 0 30px 0; /* Sola yaslı margin */
        text-align: left;
    }
    .k-visual-card {
        transform: none !important;
        max-width: 100%;
        margin: 0;
    }
    .k-card-img-wrap {
        height: 280px !important;
    }
    .k-card-overlay h3 {
        font-size: 20px !important;
    }
    .kinetic-bg-text {
        font-size: 25vw !important; /* Ekrana sığması için küçülttük */
        position: fixed !important;
        top: 0 !important;
        left: 50% !important; 
        transform: translateX(-50%) !important; 
        right: auto !important;
        width: 100% !important;
        height: 100vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        writing-mode: vertical-rl !important;
        text-orientation: upright !important; 
        color: transparent !important;
        -webkit-text-stroke: 2px rgba(0, 0, 0, 0.05) !important;
        letter-spacing: 10px !important; /* Harf aralığını biraz kıstık ki sığsın */
        z-index: 0 !important;
        opacity: 0.8 !important;
        white-space: nowrap !important;
        line-height: 1 !important;
        pointer-events: none !important;
    }

    /* Studio Section Mobile */
    .k-studio-section {
        padding: 80px 20px;
        text-align: center !important; 
        background: transparent !important;
    }
    .k-studio-wrapper {
        text-align: center !important;
    }
    .k-studio-tag {
        justify-content: center !important;
    }
    .k-studio-text {
        font-size: 32px !important;
        letter-spacing: -1px;
        text-align: center !important;
    }
    .k-shape-wrap {
        padding: 5px 25px;
        margin: 5px;
    }
    .k-studio-desc {
        font-size: 15px;
        margin-top: 25px;
    }

    /* Feature Grid Mobile */
    .k-feature-grid {
        padding-bottom: 60px;
    }
    .k-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 20px;
    }
    .k-grid-item {
        min-height: 300px !important;
        padding: 30px;
        border-radius: 25px;
    }
    .k-grid-content h3 {
        font-size: 26px !important;
    }
}

/* ==========================================================================
   Solutions Showcase (Premium Bento V2)
   ========================================================================== */
.k-solutions-showcase {
    padding: 100px 0 150px;
    background: transparent; /* Flow from above */
    position: relative;
    perspective: 2000px;
}

.k-sol-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 10;
}

.k-sol-tag {
    color: #ff4d00;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.k-sol-title {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 25px;
    color: #000;
}

.k-sol-title span {
    color: #888;
    font-weight: 400;
}

.k-sol-desc {
    font-size: 19px;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

/* Bento Grid Layout */
.k-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 260px;
    gap: 30px;
    padding: 0 5%;
    transform-style: preserve-3d;
}

.k-bento-item {
    position: relative;
    border-radius: 45px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                background 0.5s ease, 
                box-shadow 0.5s ease,
                border 0.5s ease;
    border: 1px solid rgba(255,255,255,0.4);
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
    transform-style: preserve-3d;
}

.k-bento-1 { grid-column: span 7; grid-row: span 2; }
.k-bento-2 { grid-column: span 5; grid-row: span 1; }
.k-bento-3 { grid-column: span 5; grid-row: span 1; }
.k-bento-4 { grid-column: span 12; grid-row: span 1; }

/* Item Inner Content */
.k-bento-content {
    position: relative;
    z-index: 10;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateZ(20px); /* 3D depth */
}

.k-bento-icon-main {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 60px;
    color: #000;
    opacity: 0.04;
    transition: all 0.6s ease;
    pointer-events: none;
    transform: translateZ(10px);
}

.k-bento-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.k-bento-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 85%;
    margin-bottom: 30px;
    opacity: 0.8;
    transition: all 0.5s ease;
}

/* Examine Button */
.btn-examine-sol {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    width: fit-content;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-examine-sol i {
    font-size: 12px;
    transition: transform 0.4s ease;
}

/* Hover States - THE WOW FACTOR */
.k-bento-item:hover {
    transform: translateY(-10px) rotateX(4deg) rotateY(-2deg) scale(1.01);
    background: #000;
    color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 50px 100px rgba(15, 255, 0, 0.12),
                0 15px 30px rgba(0,0,0,0.4);
}

.k-bento-item:hover .k-bento-title {
    color: #fff;
}

.k-bento-item:hover .k-bento-desc {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.k-bento-item:hover .btn-examine-sol {
    background: var(--accent-color);
    color: #000;
    padding-right: 40px;
    box-shadow: 0 15px 35px rgba(15, 255, 0, 0.4);
}

.k-bento-item:hover .btn-examine-sol i {
    transform: translateX(8px) rotate(-45deg);
}

.k-bento-item:hover .k-bento-icon-main {
    opacity: 0.2;
    color: var(--accent-color);
    transform: translateZ(50px) scale(1.2);
    filter: drop-shadow(0 0 15px var(--accent-color));
}

/* Background Accents (Kinetic Shapes) */
.k-bento-shape {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    z-index: 1;
}

.k-bento-item:hover .k-bento-shape {
    opacity: 0.25;
}

/* Specialized Styles for Larger Card */
.k-bento-1 .k-bento-title { font-size: 54px; }
.k-bento-1 .k-bento-icon-main { font-size: 140px; top: 60px; right: 60px; }

.k-bento-4 { 
    flex-direction: row; 
    align-items: center; 
    justify-content: space-between; 
    padding: 0 80px; 
}
.k-bento-4 .k-bento-content { max-width: 60%; }
.k-bento-4 .k-bento-desc { margin-bottom: 0; }
.k-bento-4 .k-bento-icon-main { opacity: 0.02; top: 50%; right: 40%; transform: translateY(-50%); font-size: 120px; }

@media (max-width: 1200px) {
    .k-bento-grid { grid-auto-rows: 220px; }
    .k-bento-1 { grid-column: span 12; order: 1; }
    .k-bento-2 { grid-column: span 6; order: 2; }
    .k-bento-3 { grid-column: span 6; order: 3; }
    .k-bento-4 { grid-column: span 12; order: 4; }
    .k-sol-title { font-size: 48px; }
}

@media (max-width: 768px) {
    .k-solutions-showcase { padding: 60px 0 100px; }
    .k-sol-title { font-size: 38px; letter-spacing: -1.5px; }
    .k-bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 20px; }
    .k-bento-item { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 320px; padding: 40px; border-radius: 35px; }
    .k-bento-1 .k-bento-title { font-size: 38px; }
    .k-bento-4 { flex-direction: column; align-items: flex-start; justify-content: flex-end; }
    .k-bento-4 .k-bento-content { max-width: 100%; }
    .k-bento-4 .btn-examine-sol { margin-top: 25px; }
    .k-bento-icon-main { font-size: 80px !important; top: 30px !important; right: 30px !important; }
}

/* ==========================================================================
   Software Vertical Gallery — Premium Editorial Aesthetic
   ========================================================================== */

.sw-gallery-section {
    position: relative;
    background: #0a0a0a; /* Premium Black */
    padding: 0;
    min-height: 800px;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sw-gallery-bg-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background: #0fff00; /* Next Dijital Neon Green */
    z-index: 1;
    transition: background 0.8s ease;
}

.sw-gallery-layout {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}

.sw-list-sidebar {
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    padding-left: 5%;
}

.sw-list-item {
    display: flex;
    align-items: center;
    padding: 25px 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sw-list-item.active {
    background: #0fff00;
    border-radius: 4px;
    box-shadow: 0 25px 50px rgba(15, 255, 0, 0.4);
    transform: translateX(10px) scale(1.05);
    z-index: 100;
    border-bottom: none;
}

/* Active state text colors for readability */
.sw-list-item.active .sw-list-num,
.sw-list-item.active .sw-list-cat,
.sw-list-item.active .sw-list-name {
    color: #000 !important;
    opacity: 1;
}

.sw-list-num {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    opacity: 0.8;
    margin-right: 20px;
    letter-spacing: 1px;
}

.sw-list-text { display: flex; flex-direction: column; }
.sw-list-cat { font-size: 10px; font-weight: 700; color: rgba(255, 255, 255, 0.6); opacity: 0.8; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.sw-list-name { font-size: 14px; font-weight: 500; color: #fff; text-transform: uppercase; letter-spacing: 2px; line-height: 1.2; }

.sw-gallery-cards { flex: 1; position: relative; }
.sw-gallery-card {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(30px);
}

.sw-gallery-card.active { opacity: 1; pointer-events: auto; transform: translateY(0); }

.sw-massive-bg-text {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-size: 140px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    z-index: 10;
    pointer-events: none;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.sw-card-content-area { padding-left: 100px; max-width: 600px; z-index: 10; }
.sw-card-title { font-size: 60px; font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 25px; }
.sw-card-title span { font-weight: 800; }
.sw-card-desc { font-size: 16px; color: rgba(255, 255, 255, 0.9); line-height: 1.6; margin-bottom: 40px; }

.sw-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 100px;
    transition: 0.4s;
}

.sw-card-btn:hover { background: #fff; color: #0fff00; }

.sw-card-visual {
    position: absolute;
    left: calc(75% - 80px);
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    font-size: 320px;
    color: #fff;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.3));
}

.sw-particles { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 5; pointer-events: none; overflow: hidden; }
.sw-particle { position: absolute; width: 20px; height: 20px; background: #8aa075; border-radius: 0 50% 0 50%; opacity: 0.6; animation: floatLeaf 12s infinite linear; }

@keyframes floatLeaf {
    0% { transform: translateY(-100px) rotate(0deg) translateX(0); opacity: 0; }
    15% { opacity: 0.7; }
    50% { transform: translateY(50vh) rotate(180deg) translateX(80px); opacity: 0.7; }
    85% { opacity: 0.7; }
    100% { transform: translateY(110vh) rotate(360deg) translateX(150px); opacity: 0; }
}

@media (max-width: 992px) {
    .sw-gallery-section { 
        height: 100vh !important; 
        min-height: 600px !important; 
        flex-direction: column !important; 
        padding: 40px 0 0 0 !important; 
        display: flex !important;
        justify-content: center !important;
        background: #000;
    }
    .sw-gallery-bg-right { display: none; }
    .sw-gallery-layout { 
        flex-direction: column !important; 
        height: 100% !important;
        width: 100% !important;
        position: relative !important;
        z-index: 1 !important;
    }
    /* Yeşil alan SADECE büyük yazının arkasında */
    .sw-gallery-layout::before {
        display: none !important;
    }
    .sw-list-sidebar { 
        width: 100% !important; 
        flex-direction: row !important; 
        padding: 10px 5% !important; 
        overflow-x: auto !important; 
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        justify-content: flex-start !important;
        flex: none !important;
        gap: 10px !important;
    }
    .sw-list-item { 
        min-width: 130px !important; 
        padding: 12px 8px !important;
        border-bottom: none !important;
    }
    .sw-list-item.active { transform: scale(1) !important; }
    
    .sw-list-name { font-size: 11px !important; letter-spacing: 1px !important; }
    .sw-list-cat { font-size: 8.5px !important; letter-spacing: 1px !important; }
    .sw-list-num { font-size: 10px !important; margin-right: 10px !important; }
    
    .sw-gallery-cards { 
        flex: 1 !important; 
        width: 100% !important;
        position: relative !important;
        overflow: hidden !important;
    }
    .sw-gallery-card {
        padding: 20px 5% !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .sw-card-content-area { 
        padding-left: 0 !important; 
        text-align: center !important;
        margin-top: 40px !important;
    }
    .sw-card-title { 
        font-size: 28px !important; 
        margin-bottom: 12px !important;
    }
    .sw-card-desc {
        font-size: 13.5px !important;
        margin-bottom: 25px !important;
    }
    .sw-massive-bg-text { 
        font-size: 110px !important;
        opacity: 1 !important;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        text-align: center !important;
        writing-mode: horizontal-tb !important;
        text-orientation: initial !important;
        color: transparent !important;
        -webkit-text-stroke: 2px rgba(255,255,255,0.8) !important;
        font-weight: 900 !important;
        letter-spacing: 5px !important;
        z-index: 1 !important;
        margin: 0 !important;
        pointer-events: none !important;
        background: var(--accent-color) !important; /* Sadece yazının arkası yeşil */
        padding: 30px 0 !important;
        -webkit-background-clip: initial !important;
    }
    .sw-card-visual { 
        font-size: 130px !important; 
        position: relative !important; 
        margin-top: 10px !important; 
        left: 0 !important;
        top: 0 !important;
        transform: none !important; 
        color: #fff !important;
        background: none !important;
        -webkit-background-clip: initial !important;
        -webkit-text-fill-color: initial !important;
        opacity: 1 !important;
        display: inline-block !important;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)) !important;
        z-index: 10 !important;
    }
}
