/* ===== RESET & VARIABLES ===== */
:root {
    --primary: #82FF1F;
    --primary-light: #C9FF90;
    --primary-dark: #6ADB0A;
    --bg-dark: #0A0A0A;
    --bg-card: #1E1E1E;
    --bg-light: #2A2A2A;
    --text-light: #F5F5F5;
    --text-gray: #B0B0B0;
    --border: #333333;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 30px 50px rgba(130, 255, 31, 0.1);
    --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', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}


.has-custom-cursor,
.has-custom-cursor * {
    cursor: none;
}


/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s, transform 0.1s;
    mix-blend-mode: difference;
    will-change: left, top;
    left: 0;
    top: 0;
    opacity: 1;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header.light .section-tag {
    color: var(--text-light);
    border-color: var(--border);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px;
}

.section-tag i {
    color: var(--primary);
    font-size: 8px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-text {
    background: transparent;
    color: var(--text-light);
    padding: 12px 0;
}

.btn-text:hover {
    color: var(--primary);
}

.btn-link {
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-link:hover {
    gap: 8px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-toggle,
.mobile-menu {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-tag i {
    color: var(--primary);
    font-size: 8px;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-3d {
    position: relative;
    height: 400px;
}

/* ===== 3D KÜP - KESİN ÇÖZÜM ===== */
.floating-cube {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
    transition: transform 0.1s ease-out;
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary);
    opacity: 0.3;
    background: rgba(130, 255, 31, 0.02);
    backdrop-filter: blur(2px);
}

/* YÜZLER - BU KISIM ÇOK ÖNEMLİ */
.front { transform: translateZ(100px); }
.back { transform: rotateY(180deg) translateZ(100px); }
.right { transform: rotateY(90deg) translateZ(100px); }
.left { transform: rotateY(-90deg) translateZ(100px); }
.top { transform: rotateX(90deg) translateZ(100px); }
.bottom { transform: rotateX(-90deg) translateZ(100px); }

/* Işık efekti */
.cube-face::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(130, 255, 31, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    20% { transform: translateX(100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.floating-cube:hover .cube-face {
    border-color: var(--primary-light);
    opacity: 0.8;
}

.floating-cube:active .cube-face {
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary);
    opacity: 0.9;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== SERVICES TIMELINE ===== */
.services-timeline {
    padding: 100px 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-left {
    text-align: right;
}

.timeline-year {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    font-size: 24px;
    color: var(--primary);
}

.timeline-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-gray);
    margin-bottom: 16px;
}

/* ===== SOLUTIONS CAROUSEL ===== */
.solutions-carousel {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 24px;
}

.carousel-slide {
    flex: 0 0 400px;
}

.slide-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 32px;
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.slide-icon {
    width: 60px;
    height: 60px;
    background: rgba(130, 255, 31, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(130, 255, 31, 0.2);
}

.slide-icon i {
    font-size: 28px;
    color: var(--primary);
}

.slide-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.slide-card p {
    color: var(--text-gray);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
}

.slide-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(130, 255, 31, 0.05);
}

.feature-item i {
    color: var(--primary);
    font-size: 14px;
    width: 20px;
}

.feature-item span {
    color: var(--text-light);
    font-size: 14px;
}

.slide-card .btn-link {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--border);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.carousel-prev,
.carousel-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ===== IT PROCESS ===== */
.it-process {
    padding: 100px 0;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--border);
    margin-bottom: 16px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-gray);
    font-size: 14px;
}

.process-arrow {
    color: var(--primary);
    font-size: 24px;
}

/* ===== HOSTING PACKAGES ===== */
.hosting-packages {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.package-card {
    position: relative;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.card-inner {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-wordpress .card-inner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-dark);
}

.card-wordpress .package-features li {
    color: var(--bg-dark);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.card-wordpress .btn-link {
    color: var(--bg-dark);
}

.card-vds .card-inner {
    background: linear-gradient(135deg, var(--bg-card) 0%, #2A2A2A 100%);
    border: 1px solid var(--primary);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary);
}

.card-wordpress .card-icon {
    color: var(--bg-dark);
}

.package-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.package-price {
    margin-bottom: 24px;
}

.package-price .price {
    font-size: 36px;
    font-weight: 700;
}

.package-price .period {
    font-size: 14px;
    color: var(--text-gray);
}

.card-wordpress .period {
    color: var(--bg-dark);
    opacity: 0.8;
}

.package-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.package-features li i {
    color: var(--primary);
    font-size: 16px;
}

.card-wordpress .package-features li i {
    color: var(--bg-dark);
}

.package-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-footer .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ===== MICROSOFT 365 BİLGİLENDİRMESİ ===== */
.m365-info {
    background: var(--bg-card);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    gap: 50px;
    align-items: center;
    border: 1px solid var(--border);
    margin-top: 40px;
}

.m365-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--bg-dark);
}

.m365-content {
    flex: 1;
}

.m365-content h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.m365-content p {
    color: var(--text-gray);
    margin-bottom: 24px;
}

.m365-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.m365-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.m365-feature i {
    color: var(--primary);
    font-size: 18px;
}

.m365-price {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.m365-price .price {
    font-size: 18px;
}

.m365-price .price strong {
    color: var(--primary);
    font-size: 24px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 100px;
    margin-bottom: 24px;
}

.cta-tag i {
    color: var(--primary);
    font-size: 8px;
}

.cta-title {
    font-size: 48px;
    margin-bottom: 40px;
}

.cta-email-wrapper {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.cta-input {
    flex: 1;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 40px;
    color: var(--text-light);
    font-size: 16px;
    transition: var(--transition);
}

.cta-input:focus {
    outline: none;
    border-color: var(--primary);
}

.cta-submit {
    padding: 16px 32px;
}

.cta-or {
    color: var(--text-gray);
    margin: 16px 0;
}

.cta-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    border-bottom: 2px solid var(--border);
    padding-bottom: 8px;
    transition: var(--transition);
}

.cta-email-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    gap: 12px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-card);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    color: var(--text-gray);
    font-size: 14px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--bg-dark);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-3d {
        display: none;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .m365-info {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .m365-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .header-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--text-light);
        font-size: 24px;
        cursor: pointer;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        z-index: 2000;
        padding: 40px;
        transition: var(--transition);
    }
    
    .mobile-menu.active {
        left: 0;
    }
    
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }
    
    .mobile-close {
        background: none;
        border: none;
        color: var(--text-light);
        font-size: 24px;
        cursor: pointer;
    }
    
    .mobile-nav {
        list-style: none;
    }
    
    .mobile-nav li {
        margin-bottom: 24px;
    }
    
    .mobile-nav a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 24px;
        font-weight: 600;
    }
    
    .mobile-actions {
        margin-top: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline-left {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .timeline-year {
        margin-bottom: 0;
    }
    
    .timeline-icon {
        margin-left: 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 10px;
    }
    
    .package-card {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .card-inner {
        padding: 30px 20px !important;
    }
    
    .m365-info {
        flex-direction: column !important;
        padding: 30px 20px !important;
        margin-top: 30px;
        gap: 30px !important;
    }
    
    .m365-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    
    .m365-content h3 {
        font-size: 24px;
        text-align: center;
    }
    
    .m365-features {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    
    .m365-feature {
        font-size: 13px;
        justify-content: flex-start;
        padding: 5px 0;
    }
    
    .m365-price {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
    
    .process-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .carousel-slide {
        flex: 0 0 280px !important;
    }
    
    .slide-card {
        padding: 25px 20px !important;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .cta-email-wrapper {
        flex-direction: column;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-email-link {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
}
