/* Mapper page styles */
.mapper-hero {
    padding: calc(70px + var(--spacing-20)) 0 var(--spacing-20);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.mapper-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.mapper-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-6);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-12);
    align-items: center;
    position: relative;
    z-index: 2;
}

.mapper-hero-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mapper-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mapper-hero-title {
    margin-bottom: var(--spacing-8);
}

.mapper-hero-main {
    display: block;
    font-size: var(--font-size-6xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-4);
    background: linear-gradient(45deg, #fff, #f0f9ff, #e0f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); }
    to { filter: drop-shadow(0 0 30px rgba(255,255,255,0.6)); }
}

.mapper-hero-subtitle {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.4;
}

.mapper-hero-description {
    margin-bottom: var(--spacing-8);
}

.mapper-workflow, .mapper-services {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-4);
}

.mapper-or {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--yellow-400);
    margin: var(--spacing-6) 0;
    text-align: center;
}

.highlight-mapper {
    color: var(--blue-400);
    font-weight: 700;
}

.highlight-giscake {
    color: var(--green-400);
    font-weight: 700;
}

.highlight-service {
    color: var(--yellow-400);
    font-weight: 700;
}

.mapper-hero-actions {
    display: flex;
    gap: var(--spacing-4);
    flex-wrap: wrap;
}

.mapper-workflow-card,
.mapper-services-card {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-4);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mapper-workflow-card h3,
.mapper-services-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-2);
}

.mapper-workflow-card p,
.mapper-services-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.mapper-or-divider {
    text-align: center;
    margin: var(--spacing-4) 0;
}

.mapper-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3) var(--spacing-5);
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all 0.3s ease;
}

.mapper-contact-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.mapper-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mapper-screenshot {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 4px solid rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.3s ease;
    animation: float-screenshot 6s ease-in-out infinite;
}

.mapper-screenshot:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

@keyframes float-screenshot {
    0%, 100% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-3deg) rotateX(3deg) translateY(-10px); }
}

.mapper-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Image Carousel Styles */
.mapper-image-carousel,
.giscake-image-carousel,
.mapper-types-carousel,
.mapper-features-carousel,
.graphic-design-carousel {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.mapper-image-carousel img,
.giscake-image-carousel img,
.mapper-types-carousel img,
.mapper-features-carousel img,
.graphic-design-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    object-fit: cover;
}

.mapper-image-carousel img.active,
.giscake-image-carousel img.active,
.mapper-types-carousel img.active,
.mapper-features-carousel img.active,
.graphic-design-carousel img.active {
    opacity: 1;
    position: relative;
}

/* Auto-cycling animation */
@keyframes imageCycle {
    0%, 20% { opacity: 1; }
    25%, 45% { opacity: 0; }
    50%, 70% { opacity: 0; }
    75%, 95% { opacity: 0; }
    100% { opacity: 1; }
}

.mapper-image-carousel img:nth-child(1) {
    animation: imageCycle 9s infinite;
}

.mapper-image-carousel img:nth-child(2) {
    animation: imageCycle 9s infinite 3s;
}

.mapper-image-carousel img:nth-child(3) {
    animation: imageCycle 9s infinite 6s;
}

.giscake-image-carousel img:nth-child(1) {
    animation: imageCycle 12s infinite;
}

.giscake-image-carousel img:nth-child(2) {
    animation: imageCycle 12s infinite 3s;
}

.giscake-image-carousel img:nth-child(3) {
    animation: imageCycle 12s infinite 6s;
}

.giscake-image-carousel img:nth-child(4) {
    animation: imageCycle 12s infinite 9s;
}

.mapper-types-carousel img:nth-child(1) {
    animation: imageCycle 15s infinite;
}

.mapper-types-carousel img:nth-child(2) {
    animation: imageCycle 15s infinite 3s;
}

.mapper-types-carousel img:nth-child(3) {
    animation: imageCycle 15s infinite 6s;
}

.mapper-types-carousel img:nth-child(4) {
    animation: imageCycle 15s infinite 9s;
}

.mapper-types-carousel img:nth-child(5) {
    animation: imageCycle 15s infinite 12s;
}

.mapper-features-carousel img:nth-child(1) {
    animation: imageCycle 9s infinite;
}

.mapper-features-carousel img:nth-child(2) {
    animation: imageCycle 9s infinite 3s;
}

.mapper-features-carousel img:nth-child(3) {
    animation: imageCycle 9s infinite 6s;
}

.graphic-design-carousel img:nth-child(1) {
    animation: imageCycle 9s infinite;
}

.graphic-design-carousel img:nth-child(2) {
    animation: imageCycle 9s infinite 3s;
}

.graphic-design-carousel img:nth-child(3) {
    animation: imageCycle 9s infinite 6s;
}

/* Map Types Section */
.mapper-types {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.mapper-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    animation: float 25s ease-in-out infinite;
}

.mapper-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-6);
}

.mapper-types-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-12);
    align-items: center;
    position: relative;
    z-index: 2;
}

.mapper-types-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.mapper-types-title {
    margin-bottom: var(--spacing-8);
}

.mapper-types-main {
    display: block;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-4);
}

.mapper-types-subtitle {
    display: block;
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
}

.mapper-types-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--spacing-3);
}

.mapper-types-features {
    display: grid;
    gap: var(--spacing-6);
}

.mapper-types-feature {
    display: flex;
    gap: var(--spacing-4);
    align-items: flex-start;
    padding: var(--spacing-4);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mapper-types-feature:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.mapper-types-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.mapper-types-feature:hover .mapper-types-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.mapper-types-feature-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-2);
}

.mapper-types-feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.mapper-type-item {
    padding: var(--spacing-4);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    border-left: 4px solid rgba(255, 255, 255, 0.4);
    font-weight: 500;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    backdrop-filter: blur(10px);
}

.mapper-type-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: var(--radius-lg);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.mapper-type-item:hover .mapper-type-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.mapper-type-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: all 0.3s ease;
}

.mapper-type-item:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.3);
}

.mapper-type-item:hover::before {
    width: 6px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.mapper-types-screenshot {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mapper-types-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mapper Features Section */
.mapper-features {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.mapper-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.mapper-features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-12);
    align-items: center;
    position: relative;
    z-index: 2;
}

.mapper-features-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.mapper-features-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-6);
    flex-wrap: wrap;
    gap: var(--spacing-4);
}

.mapper-features-title {
    margin-bottom: 0;
}

.mapper-features-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-4);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mapper-features-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mapper-features-main {
    display: block;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--white);
}

.mapper-features-description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-8);
    line-height: 1.6;
}

.mapper-features-highlight {
    color: #fbbf24;
    font-weight: 600;
}

.mapper-features-stats {
    display: flex;
    gap: var(--spacing-6);
    margin: var(--spacing-8) 0;
    flex-wrap: wrap;
}

.mapper-stat-item {
    text-align: center;
    padding: var(--spacing-4);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 100px;
}

.mapper-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mapper-stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-1);
    line-height: 1;
}

.mapper-stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mapper-features-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--spacing-4);
}

.mapper-features-list {
    display: grid;
    gap: var(--spacing-6);
}

.mapper-feature-item {
    display: flex;
    gap: var(--spacing-4);
    align-items: flex-start;
    padding: var(--spacing-4);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mapper-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: var(--radius-lg);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.mapper-feature-item:hover .mapper-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.mapper-feature-content {
    flex: 1;
}

.mapper-feature-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-2);
}

.mapper-feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.mapper-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    transition: all 0.3s ease;
}

.mapper-feature-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.mapper-feature-item:hover::before {
    width: 6px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.mapper-feature-item strong {
    color: #fbbf24;
    font-weight: 600;
}

.mapper-features-screenshot {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mapper-features-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Graphic Design Section */
.graphic-design-section {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.graphic-design-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,10 25,20 15,25 5,20 5,10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.3;
    animation: float 25s ease-in-out infinite;
}

.graphic-design-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-12);
    align-items: center;
    position: relative;
    z-index: 2;
}

.graphic-design-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.graphic-design-title {
    margin-bottom: var(--spacing-6);
}

.graphic-design-main {
    display: block;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--white);
}

.graphic-design-description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-8);
    line-height: 1.6;
}

.graphic-design-highlight {
    color: #fbbf24;
    font-weight: 600;
}

.graphic-design-features {
    display: grid;
    gap: var(--spacing-6);
}

.graphic-design-feature {
    display: flex;
    gap: var(--spacing-4);
    align-items: flex-start;
    padding: var(--spacing-4);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.graphic-design-feature:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.graphic-design-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.graphic-design-feature-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-2);
}

.graphic-design-feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.graphic-design-screenshot {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.graphic-design-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Giscake Section */
.giscake-section {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.giscake-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-12);
    align-items: center;
}

.giscake-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.giscake-title {
    margin-bottom: var(--spacing-6);
}

.giscake-main {
    display: block;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--white);
}

.giscake-description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-8);
    line-height: 1.6;
}

.giscake-highlight {
    color: #fbbf24;
    font-weight: 600;
}

.giscake-features-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--spacing-4);
}

.giscake-feature-item {
    padding: var(--spacing-4);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    border-left: 4px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.giscake-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: var(--radius-lg);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.giscake-feature-item:hover .giscake-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.giscake-feature-content {
    flex: 1;
}

.giscake-feature-item:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.3);
}

.giscake-feature-item strong {
    color: var(--white);
    font-weight: 600;
}

.giscake-features {
    display: grid;
    gap: var(--spacing-6);
}

.giscake-feature {
    display: flex;
    gap: var(--spacing-4);
    align-items: flex-start;
    padding: var(--spacing-4);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.giscake-feature:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.giscake-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.giscake-feature:hover .giscake-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.giscake-feature-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-2);
}

.giscake-feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.giscake-screenshot {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.giscake-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
.mapper-cta {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.mapper-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mapper-cta-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-6);
}

.mapper-cta-description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-8);
    opacity: 0.9;
    line-height: 1.6;
}

.mapper-cta-actions {
    display: flex;
    gap: var(--spacing-4);
    justify-content: center;
    flex-wrap: wrap;
}

.mapper-cta-download {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-4) var(--spacing-6);
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mapper-cta-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mapper-cta-contact {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-4) var(--spacing-6);
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all 0.3s ease;
}

.mapper-cta-contact:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mapper-hero-container,
    .mapper-types-content,
    .mapper-features-content,
    .graphic-design-content,
    .giscake-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }
    
    .mapper-hero-main {
        font-size: var(--font-size-4xl);
    }
    
    .mapper-hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .mapper-types-main,
    .mapper-features-main,
    .giscake-main,
    .graphic-design-main {
        font-size: var(--font-size-3xl);
    }
    
    .mapper-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .mapper-download-btn,
    .mapper-contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .mapper-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .mapper-cta-download,
    .mapper-cta-contact {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .mapper-features-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-4);
    }
    
    .mapper-features-stats {
        gap: var(--spacing-4);
        justify-content: center;
    }
    
    .mapper-stat-item {
        min-width: 80px;
        padding: var(--spacing-3);
    }
    
    .mapper-stat-number {
        font-size: var(--font-size-xl);
    }
}
