* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #EC0F68;
    --color-primary-darken: #BF3E96;
    --color-primary-hover: #333;
    --color-primary-selected: rgba(20, 110, 245, .12);
    --color-primary-lightest: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9));
    --color-secondary: #3FD5F0;
    --color-secondary-darken: #6FCBDC;
    --color-orange-0: #F16722;
    --color-orange-1: #ED2529;
    --color-light-blue-0: #3FD4F0;
    --color-green-0: #32A071;
    --color-white-0: #FFFFFF;
    --color-white-1: #FAFAFA;
    --color-white-2: #F3F3F3;
    --color-white-3: #F7FAFA;
    --color-black-0: #000;
    --color-black-1: #50555C;
    --color-black-2: #616161;
    --color-black-3: #F9F9F9;
}

body {
    font-family: "IBM Plex Sans Arabic", sans-serif;
    background: #FFF;
    position: relative;
    margin: 0 !important;
    text-align: start;
}

body.rtl {
    direction: rtl;
    font-family: "IBM Plex Sans Arabic", sans-serif;
}

a {
    text-decoration: none !important;
    color: inherit;
}

.bg-grey {
    background: #F9FAFB !important;
}

.p-relative {
    position: relative;
}

.purple-bg {
    background-color: #F9F7FE;
}

.section {
    padding: 80px 0;
}

.hero-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 20px;
}

/* SVG Curved Lines */
.svg-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.svg-lines svg {
    width: 100%;
    height: 100%;
}

/* Floating Elements Container */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

/* Avatar Styles */
.avatar {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Icon Circle */
.icon-circle {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.icon-circle.small {
    width: 44px;
    height: 44px;
}

.icon-circle.large {
    width: 64px;
    height: 64px;
}

/* Stat Badge */
.stat-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    background: white;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stat-badge svg {
    width: 14px;
    height: 14px;
}

/* Tag Badge */
.tag-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #059669;
    background: #ecfdf5;
    padding: 6px 12px;
    border-radius: 16px;
    border: 1px solid #a7f3d0;
}

.tag-badge svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

/* Success Check */
.success-check {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 3px solid #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-check svg {
    width: 24px;
    height: 24px;
    color: #10b981;
}

/* Emoji Container */
.emoji-container {
    position: absolute;
    font-size: 48px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.emoji-container.small {
    font-size: 32px;
}

/* Star decoration */
.star-decoration {
    position: absolute;
}

/* Main Content */
.content {
    text-align: center;
    position: relative;
    max-width: 680px;
}

.content-title {
    font-size: 66px;
    font-weight: 700;
    line-height: 100%;
    color: #111827;
    margin-top: 0;
}

.rtl .content-title {
    line-height: normal;
}

.badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fce7f3;
    padding: 10px 18px;
    border-radius: 24px;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #EC4899;
    border-radius: 50%;
}

.badge-top span {
    color: #BE185D;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 24px;
}

.highlight {
    color: #EC0F68;
}

.description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.description strong {
    color: #EC0F68;
    font-weight: 600;
}

.download-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.download-buttons-lg {
    gap: 20px;
}

.download-btn-lg img {
    width: 160px;
    height: 48px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.download-btn svg {
    width: 20px;
    height: 20px;
}

.download-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.download-btn .btn-text small {
    font-size: 10px;
    opacity: 0.8;
    font-weight: 400;
}

.download-btn .btn-text span {
    font-weight: 600;
    font-size: 14px;
}

.watch-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 12px 28px;
    height: 48px;
    border: 2px solid #e5e7eb;
    border-radius: 28px;
    transition: all 0.2s;
    background: white;
}

.watch-link:hover {
    border-color: #111827;
    background: #f9fafb;
    color: #111827;
}

/* Positioned Elements - Left Side */
.avatar-1 {
    top: 8%;
    left: 28%;
}

.icon-graduation {
    top: 22%;
    left: 6%;
}

.stat-upvote-1 {
    top: 28%;
    left: 4%;
}

.stat-comments-1 {
    top: 12%;
    left: 18%;
}

.avatar-2 {
    top: 28%;
    left: 18%;
}

.tag-answer {
    top: 40%;
    left: 12%;
}

.icon-scissors {
    top: 50%;
    left: 10%;
}

.avatar-3 {
    bottom: 32%;
    left: 6%;
}

.emoji-cat {
    bottom: 30%;
    left: 14%;
}

.stat-likes {
    bottom: 24%;
    left: 28%;
}

.avatar-4 {
    bottom: 22%;
    left: 22%;
}

.emoji-megaphone {
    bottom: 14%;
    left: 10%;
}

.stat-party {
    bottom: 10%;
    left: 14%;
}

/* Positioned Elements - Right Side */
.avatar-5 {
    top: 8%;
    right: 18%;
}

.icon-dots {
    top: 6%;
    right: 8%;
}

.stat-heart {
    top: 12%;
    right: 6%;
}

.avatar-6 {
    top: 22%;
    right: 14%;
}

.stat-comments-2 {
    top: 28%;
    right: 10%;
}

.icon-bulb {
    top: 34%;
    right: 18%;
}

.stat-dots {
    top: 38%;
    right: 14%;
}

.avatar-7 {
    top: 44%;
    right: 8%;
}

.stat-upvote-2 {
    top: 34%;
    right: 4%;
}

.avatar-8 {
    bottom: 30%;
    right: 14%;
}

.success-1 {
    bottom: 22%;
    right: 18%;
}

.star-1 {
    bottom: 14%;
    right: 14%;
}

.avatar-9 {
    bottom: 10%;
    left: 32%;
}

.stat-upvote-3 {
    bottom: 8%;
    left: 68%;
}

.icon-comment {
    bottom: 0;
    left: 48%;
}

/* Responsive */
@media (max-width: 1200px) {
    .floating-elements>* {
        transform: scale(0.85);
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 52px;
    }

    .floating-elements {
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    .description {
        font-size: 16px;
    }

    .floating-elements,
    .svg-lines {
        display: none;
    }

    .hero-section {
        padding: 20px 20px;
        min-height: auto;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 80px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ec0f68;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.badge-icon {
    width: 16px;
    height: 16px;
    background: #ec0f68;
    border-radius: 50%;
    flex-shrink: 0;
}

h1 {
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 80px;
}

.cards-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(203, 213, 225, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 28px;
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.center-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 500px;
}

.target-illustration {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Target circles */
.target {
    position: absolute;
    border: 8px solid;
    border-radius: 50%;
}

.target-outer {
    width: 100%;
    height: 100%;
    border-color: #cbd5e1;
}

.target-middle {
    width: 70%;
    height: 70%;
    border-color: #e2e8f0;
}

.target-inner {
    width: 40%;
    height: 40%;
    border-color: #0f172a;
    opacity: 0.8;
}

.target-center {
    width: 20%;
    height: 20%;
    background: #ffffff;
    border: 4px solid #0f172a;
}

/* Arrow */
.arrow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    width: 60px;
    height: 8px;
    background: #0f172a;
    border-radius: 4px;
    z-index: 10;
}

.arrow::after {
    content: '';
    position: absolute;
    top: -6px;
    right: -8px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 10px solid #0f172a;
}

/* Gear shapes */
.gear {
    position: absolute;
    font-size: 80px;
    color: #cbd5e1;
    opacity: 0.6;
}

.gear-1 {
    top: -30px;
    right: -40px;
}

.gear-2 {
    bottom: 20px;
    right: -20px;
}

.gear-3 {
    bottom: 40px;
    left: -40px;
}

/* Decorative circles */
.deco-circle {
    position: absolute;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
}

.deco-1 {
    width: 120px;
    height: 120px;
    top: -60px;
    right: 60px;
}

.deco-2 {
    width: 80px;
    height: 80px;
    bottom: 80px;
    left: 40px;
}

.deco-3 {
    width: 40px;
    height: 40px;
    top: 50%;
    right: 20px;
}

.right-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 500px;
}

.plant-illustration {
    position: relative;
    width: 350px;
    height: 450px;
}

/* Plant pot */
.pot {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 80px;
    background: #d97706;
    border-radius: 0 0 12px 12px;
}

.pot::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: #b45309;
    border-radius: 8px 8px 0 0;
}

/* Plant leaves */
.plant {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 280px;
}

.leaf {
    position: absolute;
    background: linear-gradient(135deg, #1e40af 0%, #0c4a6e 100%);
    border-radius: 50% 50% 50% 0;
}

.leaf-1 {
    width: 80px;
    height: 120px;
    top: -40px;
    left: -40px;
    transform: rotate(-35deg);
}

.leaf-2 {
    width: 70px;
    height: 140px;
    top: 20px;
    left: -50px;
    transform: rotate(-50deg);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.leaf-3 {
    width: 75px;
    height: 130px;
    top: -20px;
    right: -45px;
    transform: rotate(35deg);
    background: linear-gradient(135deg, #0284c7 0%, #0c4a6e 100%);
}

.leaf-4 {
    width: 65px;
    height: 120px;
    top: 40px;
    right: -55px;
    transform: rotate(50deg);
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Progress circle */
.progress-circle {
    position: absolute;
    top: -60px;
    right: -40px;
    width: 160px;
    height: 160px;
}

.circle-bg {
    width: 100%;
    height: 100%;
    border: 4px solid #e0f2fe;
    border-radius: 50%;
    position: relative;
}

.circle-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 3px solid #0e7490;
    border-radius: 50%;
}

.circle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

/* Decorative elements */
.deco-element {
    position: absolute;
    font-size: 24px;
}

.deco-el-1 {
    top: 80px;
    right: 20px;
}

.deco-el-2 {
    top: 200px;
    left: 30px;
    font-size: 18px;
}

.deco-el-3 {
    bottom: 150px;
    right: 50px;
    font-size: 20px;
}

/* Floating elements */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.deco-element {
    animation: float 3s ease-in-out infinite;
}

.deco-el-2 {
    animation-delay: 0.5s;
}

.deco-el-3 {
    animation-delay: 1s;
}

/* Responsive */
@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    h1 {
        font-size: 42px;
    }

    .cards-section {
        order: 2;
    }

    .center-section {
        order: 1;
    }

    .right-section {
        order: 3;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .card {
        padding: 24px;
    }

    .target-illustration {
        width: 280px;
        height: 280px;
    }

    .plant-illustration {
        width: 250px;
        height: 350px;
    }
}

.reality-check {
    padding: 60px 40px;
}

/* Header */
.rc-header {
    text-align: center;
    margin-bottom: 60px;
}

.rc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e91e63;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.rtl .rc-badge {
    letter-spacing: 0;
}

.rc-badge-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-badge-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #e91e63;
    stroke-width: 2;
}

.rc-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.rc-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin: 0 auto;
    line-height: 1.65;
}

/* Main content layout */
.rc-content {
    margin-top: 50px;
}

/* Left cards */
.rc-cards {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rc-card {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 20px 14px;
    border: 1px solid #F1F5F9;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: box-shadow 0.2s ease;
}

.rc-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.rc-card-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rc-card-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
}

.rc-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.rc-card-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

/* Center target */
.rc-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 480px;
}

.rc-target-container {
    position: relative;
    width: 380px;
    height: 420px;
}

.rc-cloud-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 280px;
    background: #d1d5db;
    border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
    opacity: 0.5;
}

.rc-cloud-1 {
    position: absolute;
    top: 10px;
    right: 40px;
    width: 80px;
    height: 70px;
    background: #d1d5db;
    border-radius: 50%;
    opacity: 0.5;
}

.rc-cloud-2 {
    position: absolute;
    bottom: 60px;
    left: 20px;
    width: 90px;
    height: 80px;
    background: #d1d5db;
    border-radius: 50%;
    opacity: 0.5;
}

.rc-cloud-3 {
    position: absolute;
    bottom: 50px;
    right: 30px;
    width: 70px;
    height: 60px;
    background: #d1d5db;
    border-radius: 50%;
    opacity: 0.5;
}

.rc-target {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #ffffff;
}

.rc-target-ring-1 {
    width: 220px;
    height: 220px;
    border: 16px solid #e5e7eb;
}

.rc-target-ring-2 {
    width: 160px;
    height: 160px;
    border: 16px solid #d1d5db;
}

.rc-target-ring-3 {
    width: 100px;
    height: 100px;
    border: 16px solid #9ca3af;
}

.rc-target-center {
    width: 50px;
    height: 50px;
    background: #6b7280;
}

.rc-arrow {
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 140px;
    height: 6px;
    background: #374151;
    border-radius: 3px;
    z-index: 10;
}

.rc-arrow::before {
    content: '';
    position: absolute;
    left: -3px;
    top: -5px;
    width: 0;
    height: 0;
    border-right: 16px solid #374151;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.rc-tripod {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 100px;
}

.rc-tripod-leg {
    position: absolute;
    bottom: 0;
    width: 6px;
    height: 100px;
    background: #374151;
    border-radius: 3px;
}

.rc-tripod-leg-1 {
    left: 30px;
    transform: rotate(-15deg);
    transform-origin: bottom center;
}

.rc-tripod-leg-2 {
    left: 50%;
    transform: translateX(-50%);
}

.rc-tripod-leg-3 {
    right: 30px;
    transform: rotate(15deg);
    transform-origin: bottom center;
}

.rc-deco-circle {
    position: absolute;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    background: transparent;
}

.rc-deco-circle-1 {
    width: 20px;
    height: 20px;
    top: 80px;
    left: 30px;
}

.rc-deco-circle-2 {
    width: 14px;
    height: 14px;
    top: 120px;
    right: 50px;
    background: #9ca3af;
    border: none;
}

.rc-deco-circle-3 {
    width: 18px;
    height: 18px;
    bottom: 130px;
    left: 50px;
}

.rc-deco-circle-4 {
    width: 22px;
    height: 22px;
    bottom: 90px;
    right: 70px;
}

.rc-dashed-arc {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    border: 2px dashed #d1d5db;
    border-top: none;
    border-radius: 0 0 100px 100px;
}

/* Right plant */
.rc-right {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* min-height: 480px; */
}

.rc-plant-container {
    position: relative;
    max-width: 580px;
}

.rc-plant-container img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.rc-progress-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
}

.rc-progress-outer {
    width: 100%;
    height: 100%;
    border: 3px solid #e0f2fe;
    border-radius: 50%;
    position: relative;
}

.rc-progress-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border: 2px solid #67e8f9;
    border-radius: 50%;
}

.rc-progress-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-person-icon {
    width: 30px;
    height: 40px;
}

.rc-person-head {
    width: 12px;
    height: 12px;
    background: #fed7aa;
    border-radius: 50%;
    margin: 0 auto 4px;
}

.rc-person-body {
    width: 20px;
    height: 20px;
    background: #ea580c;
    border-radius: 4px 4px 0 0;
    margin: 0 auto;
}

.rc-chart-icon {
    position: absolute;
    top: 60px;
    right: 150px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    padding: 8px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.rc-chart-bar {
    width: 4px;
    background: #94a3b8;
    border-radius: 2px;
}

.rc-chart-bar-1 {
    height: 8px;
}

.rc-chart-bar-2 {
    height: 14px;
}

.rc-chart-bar-3 {
    height: 10px;
}

.rc-plant-base {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.rc-pot {
    width: 70px;
    height: 50px;
    background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
    border-radius: 0 0 8px 8px;
    position: relative;
    margin: 0 auto;
}

.rc-pot-rim {
    position: absolute;
    top: -6px;
    left: -4px;
    right: -4px;
    height: 10px;
    background: #c2410c;
    border-radius: 4px;
}

.rc-pot-shadow {
    width: 90px;
    height: 12px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    margin: 8px auto 0;
}

.rc-leaves {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 250px;
}

.rc-leaf {
    position: absolute;
    border-radius: 0 80% 0 80%;
}

.rc-leaf-dark-1 {
    width: 50px;
    height: 100px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    bottom: 60px;
    left: 20px;
    transform: rotate(-40deg);
}

.rc-leaf-dark-2 {
    width: 45px;
    height: 110px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    bottom: 40px;
    left: 40px;
    transform: rotate(-20deg);
}

.rc-leaf-blue-1 {
    width: 55px;
    height: 120px;
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    bottom: 50px;
    right: 50px;
    transform: rotate(30deg);
    border-radius: 80% 0 80% 0;
}

.rc-leaf-teal {
    width: 40px;
    height: 90px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    bottom: 100px;
    right: 30px;
    transform: rotate(45deg);
    border-radius: 80% 0 80% 0;
}

.rc-leaf-orange {
    width: 35px;
    height: 70px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    bottom: 130px;
    right: 60px;
    transform: rotate(25deg);
    border-radius: 80% 0 80% 0;
}

.rc-leaf-coral {
    width: 30px;
    height: 55px;
    background: linear-gradient(135deg, #fb7185 0%, #f43f5e 100%);
    bottom: 160px;
    right: 45px;
    transform: rotate(35deg);
    border-radius: 80% 0 80% 0;
}

.rc-dot {
    position: absolute;
    border-radius: 50%;
}

.rc-dot-cyan-1 {
    width: 8px;
    height: 8px;
    background: #22d3ee;
    top: 100px;
    right: 30px;
}

.rc-dot-cyan-2 {
    width: 6px;
    height: 6px;
    background: #22d3ee;
    top: 180px;
    left: 20px;
}

.rc-dot-pink {
    width: 10px;
    height: 10px;
    background: #f472b6;
    top: 40px;
    right: 100px;
}

.rc-dot-orange {
    width: 7px;
    height: 7px;
    background: #fb923c;
    bottom: 200px;
    right: 20px;
}

.rc-dot-blue {
    width: 5px;
    height: 5px;
    background: #60a5fa;
    top: 150px;
    right: 160px;
}

.rc-shape-x {
    position: absolute;
    top: 130px;
    left: 30px;
    font-size: 14px;
    color: #94a3b8;
    font-weight: bold;
}

.rc-shape-lines {
    position: absolute;
    bottom: 180px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rc-shape-line {
    width: 12px;
    height: 2px;
    background: #94a3b8;
    border-radius: 1px;
}

/* Responsive */
@media (max-width: 1200px) {
    .rc-content {
        flex-direction: column;
        gap: 50px;
    }

    .rc-cards {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .rc-center,
    .rc-right {
        flex: none;
    }

    .rc-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .reality-check {
        padding: 40px 0;
    }

    .rc-title {
        font-size: 28px;
    }

    .rc-subtitle {
        font-size: 15px;
    }

    .rc-card {
        padding: 20px;
    }

    .rc-target-container {
        width: 280px;
        height: 320px;
    }

    .rc-plant-container {
        width: 220px;
        height: auto;
    }
}

.pf-section {
    width: 100%;
    padding: 60px 40px;
    background: #ffffff;
}

.pf-container {
    padding-bottom: 72px;
}

.pf-header {
    text-align: center;
    margin-bottom: 50px;
}

.pf-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ec0f68;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.rtl .pf-badge {
    letter-spacing: 0;
}

.pf-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.pf-title-lg {
    font-size: 46px;
}

.pf-title-highlight {
    color: #ec0f68;
}

.pf-description {
    font-size: 20px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pf-card {
    padding: 0;
}

.pf-icon-wrapper {
    margin-bottom: 24px;
}

.pf-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.pf-card-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .pf-section {
        padding: 40px 24px;
    }

    .pf-title {
        font-size: 32px;
    }

    .pf-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 20px 0;
    }
}

.cat-section {
    padding: 100px 60px;
    background: #f4f5f7;
    overflow: hidden;
}

.cat-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* ── Left Content ── */
.cat-content {
    flex: 1;
    max-width: 500px;
}

.cat-content h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 28px 0;
    color: #111827;
}

.rtl .cat-content h2 {
    line-height: 1.5;
}

.cat-highlight {
    color: #ec0f68;
}

.cat-content p {
    font-size: 24px;
    line-height: 32px;
    color: #1B1B20;
    margin: 0;
}

/* ── Right Slider ── */
.cat-slider-wrap {
    flex: 1;
    max-width: 420px;
    height: 520px;
    overflow: hidden;
    position: relative;
}

.cat-slider-wrap::before,
.cat-slider-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

.cat-slider-wrap::before {
    top: 0;
    background: linear-gradient(to bottom, #f4f5f7, transparent);
}

.cat-slider-wrap::after {
    bottom: 0;
    background: linear-gradient(to top, #f4f5f7, transparent);
}

.cat-slider-track {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: cat-scroll 10s linear infinite;
}

.cat-slider-track:hover {
    animation-play-state: paused;
}

@keyframes cat-scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* ── Individual Card ── */
.cat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    cursor: default;
}

.cat-card-active {
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cat-card-active .cat-label {
    font-weight: 700;
    color: #111827;
    font-size: 18px;
}

/* ── Icon Circles ── */
.cat-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cat-icon-wrap svg {
    width: 24px;
    height: 24px;
}

.cat-icon-mint {
    background: #d4f4f2;
}

.cat-icon-purple {
    background: #eeddf8;
}

.cat-icon-sand {
    background: #f5ede0;
}

.cat-icon-blue {
    background: #daeef8;
}

.cat-icon-lime {
    background: #dff5d4;
}

.cat-icon-pink {
    background: #fce4f0;
}

.cat-icon-yellow {
    background: #f8f2d0;
}

.cat-label {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .cat-section {
        padding: 60px 24px;
    }

    .cat-container {
        flex-direction: column;
        gap: 48px;
    }

    .cat-content {
        max-width: 100%;
        text-align: center;
    }

    .cat-slider-wrap {
        max-width: 100%;
        width: 100%;
    }
}

.comm-section {
    padding: 80px 0;
}

.comm-header {
    text-align: center;
    margin-bottom: 60px;
}

.comm-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ec0f68;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.rtl .comm-label {
    letter-spacing: 0;
}

.comm-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.comm-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #6b7280;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.comm-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.comm-content {
    flex: 0 0 38%;
}

.comm-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comm-item {
    padding-left: 20px;
    /* border-left: 3px solid; */
}

.comm-item-title {
    border-left: 7px solid;
    padding-left: 12px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.rtl .comm-item-title {
    border-left: none;
    border-right: 7px solid;
    padding-left: 0;
    padding-right: 12px;
}

.comm-item-number,
.comm-item-desc {
    padding-left: 19px
}

.comm-item-1 .comm-item-title {
    border-left-color: #ec0f68;
}

.comm-item-2 .comm-item-title {
    border-left-color: #bf3e96;
}

.comm-item-3 .comm-item-title {
    border-left-color: #4dd4e5;
}

.comm-item-4 .comm-item-title {
    border-left-color: #f97316;
}

.rtl .comm-item-1 .comm-item-title {
    border-right-color: #ec0f68;
}

.rtl .comm-item-2 .comm-item-title {
    border-right-color: #bf3e96;
}

.rtl .comm-item-3 .comm-item-title {
    border-right-color: #4dd4e5;
}

.rtl .comm-item-4 .comm-item-title {
    border-right-color: #f97316;
}

.comm-item-number {
    font-size: 15px;
    font-weight: 600;
    color: #475569;
    font-style: normal;
    font-weight: var(--font-weight-400, 400);
    line-height: var(--line-height-24, 24px);
    /* 161.074% */
    letter-spacing: var(--letter-spacing--0_4, -0.4px);
    display: block;
    margin-bottom: 6px;
}

.rtl .comm-item-number,
.comm-item-desc {
    padding-left: 0;
    padding-right: 19px;
}

.comm-item-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.comm-item-1 .comm-item-title {
    color: #ec0f68;
}

.comm-item-2 .comm-item-title {
    color: #bf3e96;
}

.comm-item-3 .comm-item-title {
    color: #4dd4e5;
}

.comm-item-4 .comm-item-title {
    color: #f97316;
}

.comm-item-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 0;
}

.comm-devices {
    flex: 0 0 58%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 580px;
}

.comm-devices video {
    border-radius: 16px;
}

.comm-device-phone {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    height: 530px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.comm-phone-inner {
    width: 100%;
    height: 100%;
    background: #f8f8fa;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.comm-phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #1a1a2e;
    border-radius: 16px;
    z-index: 5;
}

.comm-phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 600;
    color: #111;
}

.comm-phone-content {
    padding: 0 12px 12px;
}

.comm-phone-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.comm-phone-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec0f68, #bf3e96);
}

.comm-phone-search-tabs {
    display: flex;
    gap: 8px;
}

.comm-phone-tab {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 500;
    background: #f0f0f4;
    color: #666;
}

.comm-phone-tab-active {
    background: #22c55e;
    color: white;
}

.comm-phone-prompt {
    background: white;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comm-phone-prompt-text {
    font-size: 11px;
    color: #666;
    text-align: right;
    direction: rtl;
}

.comm-phone-alert {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comm-phone-alert-emoji {
    font-size: 14px;
}

.comm-phone-alert-text {
    font-size: 10px;
    color: #92400e;
    text-align: right;
    direction: rtl;
    flex: 1;
}

.comm-phone-users {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
}

.comm-phone-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.comm-phone-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f0f4, #e5e5ea);
}

.comm-phone-user-avatar-green {
    background: linear-gradient(135deg, #86efac, #22c55e);
}

.comm-phone-user-avatar-pink {
    background: linear-gradient(135deg, #fda4af, #ec0f68);
}

.comm-phone-user-name {
    font-size: 8px;
    color: #666;
}

.comm-phone-share {
    background: linear-gradient(135deg, #fecaca, #fca5a5);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
}

.comm-phone-share-title {
    font-size: 10px;
    font-weight: 600;
    color: #7f1d1d;
    text-align: right;
    direction: rtl;
    margin-bottom: 8px;
}

.comm-phone-share-link {
    background: white;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 9px;
    color: #666;
    margin-bottom: 10px;
}

.comm-phone-share-buttons {
    display: flex;
    gap: 8px;
}

.comm-phone-share-btn {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 600;
    text-align: center;
}

.comm-phone-share-btn-primary {
    background: #ec0f68;
    color: white;
}

.comm-phone-share-btn-secondary {
    background: white;
    color: #333;
}

.comm-phone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.comm-phone-grid-item {
    aspect-ratio: 1;
    background: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.comm-phone-grid-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fda4af, #f472b6);
}

.comm-phone-grid-name {
    font-size: 7px;
    color: #666;
}

.comm-phone-grid-btn {
    background: #f0f0f4;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 6px;
    color: #666;
}

.comm-device-tablet {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 440px;
    height: 540px;
    background: #2d2d3a;
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2), 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.comm-tablet-inner {
    width: 100%;
    height: 100%;
    background: #f8f8fa;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
}

.comm-tablet-sidebar {
    width: 140px;
    background: white;
    padding: 16px 12px;
    border-right: 1px solid #f0f0f4;
}

.comm-tablet-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.comm-tablet-logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ec0f68, #bf3e96);
    border-radius: 6px;
}

.comm-tablet-logo-text {
    font-size: 11px;
    font-weight: 700;
    color: #ec0f68;
}

.comm-tablet-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 8px;
    border-radius: 8px;
    margin-bottom: 4px;
    font-size: 10px;
    color: #666;
}

.comm-tablet-nav-item-active {
    background: #fef2f2;
    color: #ec0f68;
}

.comm-tablet-nav-icon {
    width: 16px;
    height: 16px;
    background: #e5e5ea;
    border-radius: 4px;
}

.comm-tablet-nav-item-active .comm-tablet-nav-icon {
    background: #fca5a5;
}

.comm-tablet-main {
    flex: 1;
    padding: 16px;
    overflow: hidden;
}

.comm-tablet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.comm-tablet-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comm-tablet-profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec0f68, #bf3e96);
}

.comm-tablet-profile-info {
    text-align: right;
    direction: rtl;
}

.comm-tablet-profile-name {
    font-size: 11px;
    font-weight: 600;
    color: #111;
}

.comm-tablet-profile-subtitle {
    font-size: 9px;
    color: #666;
}

.comm-tablet-actions {
    display: flex;
    gap: 8px;
}

.comm-tablet-action-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.comm-tablet-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.comm-tablet-stat {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.comm-tablet-stat-value {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.comm-tablet-stat-label {
    font-size: 8px;
    color: #666;
}

.comm-tablet-share-card {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 16px;
}

.comm-tablet-share-title {
    font-size: 11px;
    font-weight: 600;
    color: #92400e;
    text-align: right;
    direction: rtl;
    margin-bottom: 6px;
}

.comm-tablet-share-desc {
    font-size: 9px;
    color: #a16207;
    text-align: right;
    direction: rtl;
    margin-bottom: 10px;
}

.comm-tablet-share-input {
    background: white;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 9px;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comm-tablet-share-btns {
    display: flex;
    gap: 8px;
}

.comm-tablet-share-btn {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 500;
    text-align: center;
}

.comm-tablet-share-btn-dark {
    background: #1a1a2e;
    color: white;
}

.comm-tablet-share-btn-light {
    background: white;
    color: #333;
}

.comm-tablet-users-title {
    font-size: 11px;
    font-weight: 600;
    color: #111;
    text-align: right;
    direction: rtl;
    margin-bottom: 12px;
}

.comm-tablet-users-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.comm-tablet-user-card {
    background: white;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.comm-tablet-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin: 0 auto 6px;
}

.comm-tablet-user-avatar-1 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="50" fill="%23fde68a"/><circle cx="50" cy="40" r="20" fill="%23f59e0b"/><ellipse cx="50" cy="80" rx="30" ry="20" fill="%23f59e0b"/></svg>');
    background-size: cover;
}

.comm-tablet-user-avatar-2 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="50" fill="%23c4b5fd"/><circle cx="50" cy="40" r="20" fill="%238b5cf6"/><ellipse cx="50" cy="80" rx="30" ry="20" fill="%238b5cf6"/></svg>');
    background-size: cover;
}

.comm-tablet-user-avatar-3 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="50" fill="%2386efac"/><circle cx="50" cy="40" r="20" fill="%2322c55e"/><ellipse cx="50" cy="80" rx="30" ry="20" fill="%2322c55e"/></svg>');
    background-size: cover;
}

.comm-tablet-user-avatar-4 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="50" fill="%23fda4af"/><circle cx="50" cy="40" r="20" fill="%23ec4899"/><ellipse cx="50" cy="80" rx="30" ry="20" fill="%23ec4899"/></svg>');
    background-size: cover;
}

.comm-tablet-user-name {
    font-size: 8px;
    font-weight: 500;
    color: #111;
    margin-bottom: 2px;
}

.comm-tablet-user-stat {
    font-size: 7px;
    color: #f59e0b;
    margin-bottom: 6px;
}

.comm-tablet-user-btn {
    background: #fda4af;
    color: white;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 7px;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .comm-container {
        flex-direction: column;
        gap: 50px;
    }

    .comm-content {
        flex: 0 0 100%;
        max-width: 600px;
    }

    .comm-devices {
        flex: 0 0 100%;
        width: 100%;
        height: 500px;
    }

    .comm-device-phone {
        left: 50%;
        transform: translate(-70%, -50%);
        width: 220px;
        height: 450px;
    }

    .comm-device-tablet {
        right: auto;
        left: 50%;
        transform: translate(-20%, -50%);
        width: 360px;
        height: 440px;
    }
}

@media (max-width: 768px) {
    .comm-section {
        padding: 50px 12px;
    }

    .comm-title {
        font-size: 32px;
    }

    .comm-subtitle {
        font-size: 15px;
    }

    .comm-devices {
        height: 400px;
    }

    .comm-device-phone {
        width: 180px;
        height: 370px;
        transform: translate(-80%, -50%);
    }

    .comm-device-tablet {
        width: 300px;
        height: 370px;
        transform: translate(-10%, -50%);
    }

    .comm-tablet-sidebar {
        display: none;
    }
}

@media (max-width: 480px) {
    .comm-devices {
        height: 320px;
    }

    .comm-device-phone {
        width: 140px;
        height: 290px;
        border-radius: 24px;
        padding: 6px;
    }

    .comm-phone-inner {
        border-radius: 20px;
    }

    .comm-device-tablet {
        width: 240px;
        height: 300px;
    }
}

.blog-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ec0f68;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.rtl .blog-label {
    letter-spacing: 0;
}

.blog-title {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.blog-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background-color: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 32px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
    font-size: 12px;
    color: #9ca3af;
}

.blog-date,
.blog-author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta-icon {
    width: 14px;
    height: 14px;
    stroke-width: 1.5;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.blog-card-link:hover .blog-card-title {
    color: #ec0f68;
}

.blog-card-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blog-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .blog-section {
        padding: 60px 12px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-subtitle {
        font-size: 15px;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-meta {
        flex-wrap: wrap;
        gap: 12px;
    }

    .brand-story-visual {
        width: 100%;
    }
}

.faq-section {
    padding: 80px 20px;
    background-color: #F9FAFB;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-top: 12px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #9CA3AF;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #ec0f68;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 28px 24px;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

@media (max-width: 640px) {
    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer-content {
        padding: 0 20px 20px;
    }
}

.cta-section {
    background: -webkit-gradient(linear, right top, left top, from(var(--color-secondary-darken)), color-stop(var(--color-primary-darken)), color-stop(var(--color-primary)), color-stop(var(--color-orange-1)), to(var(--color-orange-0)));
    background: linear-gradient(to left, var(--color-secondary-darken), var(--color-primary-darken), var(--color-primary), var(--color-orange-1), var(--color-orange-0));
    padding: 60px 20px;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.cta-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #000000;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 180px;
}

.cta-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.cta-store-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.cta-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cta-store-label {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

.cta-store-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

@media (max-width: 640px) {
    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-store-btn {
        width: 220px;
        justify-content: center;
    }
}

.footer-section {
    background-color: #f9fafb;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    flex-shrink: 0;
}

.footer-columns {
    display: flex;
    gap: 80px;
}

.footer-column {
    min-width: 290px;
}

.footer-column-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link,
.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-link:hover,
.footer-links a:hover {
    color: #ec0f68;
}

.footer-connect {
    min-width: 140px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.footer-social-link:hover {
    border-color: #ec0f68;
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin-bottom: 24px;
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: #9ca3af;
}

@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-columns {
        gap: 50px;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .footer-columns {
        gap: 30px;
        width: 100%;
    }

    .footer-column {
        min-width: 45%;
    }

    .footer-connect {
        width: 100%;
    }

    .content-title {
        font-size: 48px;
    }
}

.kpis-section {
    width: 100%;
    padding: 80px 0;
    background-color: #f8f8fa;
}

.kpis-container {
    max-width: 1200px;
    margin: 0 auto;
}

.kpis-header {
    text-align: center;
    margin-bottom: 60px;
}

.kpis-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ec0f68;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.rtl .kpis-label {
    letter-spacing: 0;
}

.kpis-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.kpis-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.kpis-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.kpis-mockup-area {
    position: relative;
    width: 480px;
    height: 520px;
    flex-shrink: 0;
}

.kpis-circle {
    position: absolute;
    border-radius: 50%;
}

.kpis-circle-pink-large {
    width: 100px;
    height: 100px;
    background-color: rgba(236, 15, 104, 0.08);
    left: -20px;
    top: 180px;
}

.kpis-circle-pink-small {
    width: 20px;
    height: 20px;
    background-color: rgba(236, 15, 104, 0.15);
    left: 0px;
    top: 120px;
}

.kpis-circle-pink-tiny {
    width: 12px;
    height: 12px;
    background-color: rgba(236, 15, 104, 0.2);
    left: 40px;
    bottom: 80px;
}

.kpis-circle-yellow {
    width: 40px;
    height: 40px;
    background-color: rgba(251, 191, 36, 0.3);
    right: 120px;
    top: 100px;
}

.kpis-circle-blue {
    width: 50px;
    height: 50px;
    background-color: rgba(59, 130, 246, 0.15);
    right: 80px;
    top: 260px;
}

.kpis-floating-card {
    position: absolute;
    right: 0;
    top: 60px;
    width: 200px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px;
    z-index: 1;
}

.kpis-floating-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 8px;
    font-weight: 500;
}

.kpis-floating-tab {
    color: #9ca3af;
}

.kpis-floating-tab.active {
    color: #111827;
}

.kpis-floating-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kpis-floating-row {
    display: flex;
    gap: 8px;
}

.kpis-floating-stat {
    flex: 1;
    background: #fef2f2;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.kpis-floating-label {
    display: block;
    font-size: 6px;
    color: #6b7280;
    margin-bottom: 4px;
}

.kpis-floating-value {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.kpis-floating-progress-row {
    display: flex;
    gap: 8px;
}

.kpis-floating-progress-item {
    flex: 1;
    text-align: center;
}

.kpis-floating-progress-label {
    display: block;
    font-size: 6px;
    color: #6b7280;
    margin-bottom: 4px;
}

.kpis-floating-progress-ring {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

.kpis-floating-progress-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.kpis-ring-bg {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 3;
}

.kpis-ring-fill {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.kpis-ring-red {
    stroke: #ef4444;
    stroke-dasharray: 36, 94;
}

.kpis-ring-teal {
    stroke: #14b8a6;
    stroke-dasharray: 118, 157;
}

.kpis-ring-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    font-weight: 600;
    color: #111827;
}

.kpis-floating-number-box {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kpis-floating-number {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.kpis-phone {
    position: absolute;
    left: 40px;
    top: 20px;
    z-index: 2;
}

.kpis-phone-frame {
    width: 240px;
    background: linear-gradient(145deg, #e8e8e8 0%, #f5f5f5 50%, #ffffff 100%);
    border-radius: 36px;
    padding: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.kpis-phone-notch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    font-size: 10px;
    font-weight: 600;
    color: #111827;
}

.kpis-phone-time {
    font-size: 11px;
}

.kpis-phone-camera {
    width: 8px;
    height: 8px;
    background: #1f2937;
    border-radius: 50%;
}

.kpis-phone-status {
    display: flex;
    align-items: center;
    gap: 4px;
}

.kpis-signal {
    width: 16px;
    height: 10px;
    color: #111827;
}

.kpis-phone-screen {
    background: white;
    border-radius: 28px;
    padding: 12px;
    min-height: 420px;
}

.kpis-phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 0 4px;
}

.kpis-phone-icon {
    width: 18px;
    height: 18px;
    color: #6b7280;
}

.kpis-phone-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.kpis-phone-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
}

.kpis-phone-tab {
    flex: 1;
    text-align: center;
    font-size: 9px;
    font-weight: 500;
    color: #9ca3af;
    padding: 6px 4px;
    border-radius: 6px;
    cursor: pointer;
}

.kpis-phone-tab.active {
    background: white;
    color: #111827;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.kpis-phone-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.kpis-stat-card {
    padding: 10px 8px;
    border-radius: 10px;
    text-align: center;
}

.kpis-stat-pink-light {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.kpis-stat-pink {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.kpis-stat-yellow {
    background: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%);
}

.kpis-stat-orange {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
}

.kpis-stat-label {
    display: block;
    font-size: 7px;
    color: #6b7280;
    margin-bottom: 4px;
}

.kpis-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.kpis-phone-progress {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px;
    background: #f9fafb;
    border-radius: 10px;
}

.kpis-progress-item {
    flex: 1;
    text-align: center;
}

.kpis-progress-label {
    display: block;
    font-size: 7px;
    color: #6b7280;
    margin-bottom: 6px;
}

.kpis-progress-ring-container {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

.kpis-progress-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.kpis-progress-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    font-weight: 700;
    color: #111827;
}

.kpis-phone-calendar {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.kpis-calendar-item {
    flex: 1;
    background: #f9fafb;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.kpis-calendar-label {
    display: block;
    font-size: 7px;
    color: #6b7280;
    margin-bottom: 4px;
}

.kpis-calendar-value {
    font-size: 12px;
    font-weight: 700;
    color: #111827;
}

.kpis-calendar-month {
    color: #14b8a6;
    font-size: 10px;
}

.kpis-phone-nav {
    display: flex;
    justify-content: space-around;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
}

.kpis-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 8px;
    color: #9ca3af;
}

.kpis-nav-item svg {
    width: 16px;
    height: 16px;
}

.kpis-main-content {
    margin-left: 28px;
    text-align: start;
}

.rtl .kpis-main-content {
    margin-left: 0;
    margin-right: 28px;
}

.kpis-text-content {
    flex: 1;
    padding-top: 40px;
    position: relative;
}

.kpis-text-block {
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
}

.kpis-text-block svg {
    background-color: #DCFCE7;
    padding: 2px;
    border-radius: 100px;
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
}

.rtl .kpis-text-block svg {
    left: auto;
    right: 0;
}

.kpis-text-main {
    margin-bottom: 36px;
}

.kpis-text-title {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.kpis-text-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: -2px 0 8px 0;
}

.kpis-text-desc {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ec0f68;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.blog-title {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.blog-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background-color: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
    font-size: 12px;
    color: #9ca3af;
}

.blog-date,
.blog-author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta-icon {
    width: 14px;
    height: 14px;
    stroke-width: 1.5;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.blog-card-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .kpis-content {
        flex-direction: column;
        align-items: center;
    }

    .kpis-mockup-area {
        width: 100%;
        max-width: 400px;
    }

    .kpis-text-content {
        padding-top: 0;
    }

    .kpis-text-desc {
        max-width: 100%;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blog-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .kpis-section {
        padding: 60px 12px;
    }

    .kpis-title {
        font-size: 28px;
    }

    .kpis-floating-card {
        display: none;
    }

    .kpis-phone {
        left: 50%;
        transform: translateX(-50%);
    }

    .blog-section {
        padding: 60px 12px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-subtitle {
        font-size: 15px;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-meta {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* ================= HEADER ================= */
.hdr-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.hdr-container {
    padding: 0 12px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hdr-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================= NAV ================= */
.hdr-nav {
    display: flex;
    /* always visible on desktop */
    gap: 40px;
    flex: 1;
    margin-inline-start: 100px;
    align-items: center;
    margin-bottom: 0;
}

.hdr-nav-link,
.hdr-nav li a {
    text-decoration: none;
    color: #475569;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hdr-nav-link:hover,
.hdr-nav li a:hover {
    color: #ec0f68;
}

/* ================= RIGHT ================= */
.hdr-right {
    display: flex;
    /* always visible on desktop */
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

.hdr-lang,
.hdr-login {
    text-decoration: none;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hdr-lang:hover,
.hdr-login:hover {
    color: #1e293b;
}

.hdr-cta {
    background: #ec0f68;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hdr-cta:hover {
    background: #d40a5a;
    transform: translateY(-2px);
    color: inherit;
}

.hdr-cta:active {
    transform: translateY(0);
}

/* ================= BURGER ================= */
.hdr-burger {
    display: none;
    /* hidden by default (desktop) */
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hdr-burger span {
    width: 25px;
    height: 2px;
    background: #1e293b;
    transition: 0.3s;
}

/* burger animation */
.hdr-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hdr-burger.active span:nth-child(2) {
    opacity: 0;
}

.hdr-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================= MOBILE MENU ================= */
.hdr-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1050;
    padding: 80px 20px;
}

.hdr-mobile.active {
    right: 0;
}

.hdr-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hdr-mobile-nav a {
    text-decoration: none;
    color: #1e293b;
    font-size: 16px;
}

.hdr-mobile-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hdr-mobile-actions button {
    background: #ec0f68;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 20px;
}

/* ================= TABLET ================= */
@media (max-width: 768px) {
    .hdr-container {
        padding: 0 20px;
        height: 60px;
    }

    .hdr-nav {
        gap: 20px;
        margin-left: 30px;
    }

    .hdr-nav-link {
        font-size: 13px;
    }

    .hdr-right {
        gap: 15px;
    }

    .hdr-cta {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 640px) {
    .hdr-container {
        padding: 0 16px;
    }

    /* hide desktop stuff */
    .hdr-nav,
    .hdr-right {
        display: none;
    }

    /* show burger */
    .hdr-burger {
        display: flex;
    }
}

/* contact us style  */
/* ========================================
   CONTACT SECTION STYLES (from id="here")
   All classes used in the contact section
   ======================================== */

/* ===== CONTAINER & LAYOUT ===== */
/* .container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
}

.row {
    display: flex;
    flex-wrap: wrap;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem;
}

.col-md-12 {
    flex: 0 0 auto;
    width: 100%;
}

.col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
} */

.padding-left-0 {
    padding-left: 0 !important;
}

.padding-right-0 {
    padding-right: 0 !important;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.align-items-center {
    align-items: center !important;
}

/* ===== SECTION STYLES ===== */
.section-inner {
    padding-top: 60px;
    padding-bottom: 120px;
}

.margin-bottom-l {
    margin-bottom: 32px !important;
}

.section__subtitle {
    color: var(--Component-colors-Utility-Gray-utility-gray-700, #414651);
    text-align: center;
    font-size: var(--font-size-text-sm, 14px);
    font-style: normal;
    font-weight: 500;
    padding: 4px 12px;
    line-height: var(--line-height-text-sm, 20px);
    border-radius: var(--radius-full, 9999px);
    border: 1px solid var(--Component-colors-Utility-Gray-utility-gray-200, #e9eaeb);
    background: var(--Colors-Foreground-fg-white, #fff);
    margin: auto;
    width: fit-content;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.section__title {
    color: #EC0F68;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.24px;
    margin-bottom: 12px;
    border: 0;
    padding: 0;
}

.section__title span {
    color: #181d27;
}

@media (max-width: 767.98px) {
    .section__title {
        font-size: 22px;
    }
}

.section__description {
    color: #535862;
    font-size: var(--Font-size-text-xl, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--Line-height-text-xl, 30px);
    margin-bottom: 0;
}

/* ===== CONTACT CONTENT & VIDEO ===== */
.contact-content {
    /* Container for form */
}

.contact-video {
    position: relative;
    background: #eef2ff;
    border-radius: 32px;
    overflow: hidden;
    height: 100%;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== FORM STYLES ===== */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input {
    width: 100%;
    background: white;
    border: 0.5px solid #d0d5dd;
    color: #475467;
    height: 44px;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 400;
    margin-top: var(--space-s);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.form-group input::placeholder {
    color: #98a2b3;
}

.form-group textarea {
    width: 100%;
    background: white;
    border: 0.5px solid #d0d5dd;
    color: #475467;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 400;
    margin-top: var(--space-s);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.form-group textarea::placeholder {
    color: #98a2b3;
}

.form-label {
    color: #475467;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.form-control {
    border: 0.5px solid #d0d5dd;
    color: #1d2939;
    font-size: 12px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    transition: border-color 0.2s ease;
}

.form-control::placeholder {
    color: #98a2b3;
}

.form-control:focus {
    outline: none;
    border-color: #6c63ff;
}

.margin-bottom-xxl {
    margin-bottom: var(--space-xxl) !important;
}

/* ===== WPCF7 FORM CLASSES ===== */
.wpcf7-form {
    /* Base form element */
}

.wpcf7-form.init {
    /* Initial state of form */
}

.hidden-fields-container {
    display: none;
}

.wpcf7-form-control-wrap {
    /* Wrapper for form controls */
}

.wpcf7-form-control {
    /* Base form control */
}

.wpcf7-text {
    /* Text input */
}

.wpcf7-textarea {
    /* Textarea */
}

.wpcf7-email {
    /* Email input */
}

.wpcf7-validates-as-required {
    /* Required field */
}

.wpcf7-response-output {
    /* Response message container */
}

/* ===== BUTTON STYLES ===== */
.button {
    background-color: #4f00bd;
    padding: 10px 20px;
    color: #fff;
    border-radius: 8px;
    border: 0;
    text-decoration: none;
}

button:focus {
    border-color: transparent;
    outline: none !important;
}

.button--primary {
    padding: 10px 30px;
    border-radius: 100px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white, #fff);
    text-align: center;
    font-size: 16px;
    height: fit-content;
    border: 1px solid transparent;
}

.button--primary:hover {
    opacity: 0.8;
    transition: all 0.3s;
}

.button--lg {
    background-color: var(--color-primary-dark);
    padding: 16px 60px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    height: 48px;
    border-radius: 4px;
    font-weight: 600;
}

.button--submit {
    font-size: 18px !important;
    height: 64px;
    padding: 16px 32px;
    min-width: unset !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    margin-bottom: 8px !important;
    border-radius: var(--radius-md, 8px);
    border: 2px solid #EC0F68;
    background: var(--Component-colors-Utility-Brand-utility-brand-500_alt, #EC0F68);
    float: left !important;
}

.button--submit span {
    margin-inline-end: 8px;
}

.button-rounded {
    border-radius: 100px;
}

.w-100 {
    width: 100% !important;
}

.w-100 {
    width: 100%;
}

/* ========================================
   END OF CONTACT SECTION STYLES
   ======================================== */


.hero-intro {
    padding: 80px 20px;
    background-color: #F9FAFB;
    text-align: center;
}

.hero-intro__container {
    max-width: 950px;
    margin: 0 auto;
}

.hero-intro__icon {
    font-size: 28px;
    margin-bottom: 16px;
    color: #e91e63;
    display: inline-block;
}

.hero-intro__title {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 32px;
}

.hero-intro__description {
    font-size: 24px;
    color: #4B5563;
    line-height: 40px;
    font-style: italic;
    margin: 0 auto;
}

:root {
    --ak-bg: #ffffff;
    --ak-text-main: #1a202c;
    --ak-text-muted: #4B5563;
    --ak-border: #f1f4f8;
    --ak-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.ak-features-section {
    background-color: var(--ak-bg);
    padding: 80px 0;
    color: var(--ak-text-main);
}

.ak-header {
    text-align: center;
    margin-bottom: 60px;
}

.ak-main-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.ak-main-title--lg {
    font-size: 48px;
}

.ak-subtitle {
    color: var(--ak-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 16px;
}

.ak-card-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.ak-feature-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--ak-border);
    box-shadow: var(--ak-shadow);
    transition: transform 0.2s ease;
}

.ak-feature-card:hover {
    transform: translateY(-5px);
}

.ak-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* Icon Colors */
.ak-icon-pink {
    background-color: #fce7f3;
    color: #db2777;
}

.ak-icon-blue {
    background-color: #e0e7ff;
    color: #4f46e5;
}

.ak-icon-green {
    background-color: #dcfce7;
    color: #16a34a;
}

.ak-icon-grey {
    background-color: #E9EFFB;
}

.ak-icon-light-green {
    background-color: #DCFCE7;
}

.ak-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.ak-card-text {
    color: var(--ak-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ak-main-title {
        font-size: 2rem;
    }

    .ak-feature-card {
        min-width: 100%;
    }
}

.ak-community-section {
    padding: 80px 20px;
    background-color: #f8fafc;
}

/* Core Grid Logic */
.ak-feed-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    /* Hide Scrollbars */
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
}

.ak-feed-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.ak-post-card {
    flex: 0 0 350px;
    /* Fixed width for each card */
    scroll-snap-align: center;
    /* Snap to the center */
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

/* Pagination Dots */
.ak-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.ak-dot {
    width: 10px;
    height: 10px;
    background-color: #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ak-dot-active {
    background-color: #f43f5e;
    /* The pink color from your image */
    width: 12px;
    height: 12px;
}

/* Mobile tweak */
@media (max-width: 400px) {
    .ak-post-card {
        flex: 0 0 85%;
        /* Cards take up most of the screen on mobile */
    }
}

.ak-post-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
}

.ak-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #e2e8f0;
    margin-right: 12px;
}

.rtl .ak-avatar {
    margin-right: 0;
    margin-left: 12px;
}

.ak-avatar.dark {
    background-color: #1e293b;
}

.ak-avatar.darker {
    background-color: #0f172a;
}

.ak-user-info {
    flex-grow: 1;
}

.ak-user-name {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
}

.ak-user-meta {
    font-size: 0.8rem;
    color: #94a3b8;
}

.ak-more-btn {
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 12px;
}

.ak-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    width: fit-content;
}

.ak-badge-success {
    background: #f1f5f9;
    color: #475569;
}

.ak-badge-lesson {
    background: #f1f5f9;
    color: #475569;
}

.ak-badge-thought {
    background: #f1f5f9;
    color: #475569;
}

.ak-post-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 24px;
    flex-grow: 1;
}

.ak-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    color: #94a3b8;
    font-size: 0.85rem;
}

.ak-stat {
    margin-right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ak-share-icon {
    margin-left: auto;
}

/* For icons, you can use FontAwesome or simply text-based fallbacks */
.ak-icon-heart::before {
    content: "♡";
    font-style: normal;
}

.ak-icon-comment::before {
    content: "💬";
    font-style: normal;
    font-size: 10px;
}

.ak-icon-share::before {
    content: "➦";
    font-style: normal;
}

@media (max-width: 480px) {
    .ak-post-card {
        flex: 0 0 85%;
    }
}

:root {
    --ak-primary: #1a202c;
    --ak-muted: #64748b;
    --ak-green: #10b981;
}

.ak-kpi-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.ak-kpi-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left side styling */
.ak-kpi-content .ak-main-title {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.ak-kpi-content .ak-subtitle {
    font-size: 1.1rem;
    color: var(--ak-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.ak-check-list {
    list-style: none;
    padding: 0;
}

.ak-check-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
}

.ak-check-icon {
    width: 22px;
    height: 22px;
    border: 2px solid var(--ak-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.ak-check-icon::after {
    content: '✓';
    color: var(--ak-green);
    font-size: 14px;
    font-weight: bold;
}

.ak-check-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--ak-primary);
}

.ak-check-list p {
    margin: 4px 0 0;
    color: var(--ak-muted);
}

/* Right Grid styling */
.ak-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ak-kpi-card {
    background: #f8fafc;
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
}

/* Staggered effect: Moves the second column down */
.ak-kpi-grid>div:nth-child(even) {
    margin-top: 40px;
}

.ak-icon-circle {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.ak-kpi-card h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 700;
}

.ak-kpi-card p {
    font-size: 12px;
    color: var(--ak-muted);
}

/* Specific Card BG Colors to match image */
.ak-card-growth {
    background-color: #f5f3ff;
}

.ak-card-clarity {
    background-color: #fff1f2;
}

/* Responsive */
@media (max-width: 992px) {
    .ak-kpi-wrapper {
        grid-template-columns: 1fr;
    }

    .ak-kpi-grid>div:nth-child(even) {
        margin-top: 0;
    }

    .hdr-nav {
        margin-inline-start: 10px;
        gap: 18px;
    }

    .hero-section .svg-icons {
        display: none;
    }

    .hero-section {
        min-height: auto;
    }
}

/* The Upgrade Box with Pink Gradient Border */
.ak-upgrade-box {
    margin-top: 60px;
    padding: 40px 60px;
    border-radius: 24px;
    border: 1px solid #EC0F68;
    /* Solid color fallback */
    text-align: start;
    position: relative;
    /* Optional: Soft inner shadow to mimic the "glow" look */
    box-shadow: 0 10px 30px rgba(255, 0, 122, 0.05);
}

.ak-upgrade-container {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
}

.ak-upgrade-container .hdr-cta {
    padding: 14px 32px;
    width: fit-content;
    white-space: nowrap;
}

.ak-upgrade-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a202c;
}

.ak-upgrade-text {
    font-size: 1rem;
    color: #64748b;
    max-width: 550px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ak-features-row {
        flex-direction: column;
        text-align: center;
    }

    .ak-upgrade-box {
        padding: 30px;
        text-align: center;
    }

    .ak-upgrade-title {
        font-size: 1.5rem;
    }
}

.ak-smart-section {
    padding: 100px 20px;
    background: var(--color-violet-665, rgba(139, 92, 246, 0.05));
}

.ak-smart-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.ak-orange-text {
    color: #f97316;
}

.ak-smart-content {
    flex: 1;
}

.ak-smart-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    margin-left: 0;
}

.ak-smart-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.ak-letter-icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #8B5CF6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.ak-smart-list strong {
    display: block;
    color: #1a202c;
}

.ak-smart-list p {
    color: #6B7280;
    font-size: 0.9rem;
    margin: 2px 0 0;
}

/* The Visual Stack */
.ak-visual-stack-container {
    flex: 1;
    perspective: 1000px;
    /* Essential for 3D effect */
}

.ak-stack-card {
    background: white;
    padding: 48px;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.ak-stack-header {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
}

.ak-stack-title {
    font-weight: 700;
    margin-bottom: 0;
}

.ak-stack-desc {
    margin-bottom: 0;
    color: #6B7280;
}

.ak-stack-icon {
    width: 64px;
    height: 64px;
    background: var(--color-rose-4910, rgba(232, 19, 109, 0.10));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ak-layers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ak-layer {
    padding: 16px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.layer-1 {
    background-color: #0f172a;
    width: 100%;
}

.layer-2 {
    background-color: #E8136D;
    width: 100%;
    margin: 0 auto;
    margin-inline-start: 16px;
}

.layer-3 {
    background-color: #f97316;
    width: 100%;
    margin: 0 auto;
    margin-inline-start: 32px;
}

.layer-4 {
    background-color: #f1f5f9;
    color: #94a3b8;
    width: 100%;
    margin: 0 auto;
    margin-inline-start: 48px;
}

/* Responsive */
@media (max-width: 992px) {
    .ak-smart-wrapper {
        flex-direction: column;
    }

    .ak-visual-stack-container {
        width: 100%;
    }
}

.ak-goals-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.ak-goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ak-goal-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

/* Specific highlight for the middle card in the screenshot */
.ak-highlight-border {
    border: 2px solid #3b82f6;
}

.ak-goal-banner {
    height: 144px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.ak-bg-light-blue {
    background-color: #eff6ff;
}

.ak-bg-bright-blue {
    background-color: #ebf5ff;
}

.ak-bg-light-pink {
    background-color: #fff1f2;
}

.ak-goal-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ak-goal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

/* The KPI box inside the card */
.ak-kpi-inner-card {
    border: 1px solid #ffe4e6;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    position: relative;
}

.ak-kpi-inner-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 6px;
    height: 6px;
    background-color: #e11d48;
    border-radius: 50%;
}

.ak-kpi-tag {
    font-size: 10px;
    font-weight: 800;
    color: #e11d48;
    letter-spacing: 0.5px;
}

.ak-kpi-name {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 4px;
    color: #1e293b;
}

.ak-goal-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.ak-goal-btn {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.ak-goal-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #ec0f68;
}

.ak-simplicity-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.ak-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.ak-simple-card {
    padding: 50px 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.ak-card-white {
    background-color: #ffffff;
    border: 1px solid #79747E;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.ak-card-pink {
    background-color: rgba(232, 19, 109, 0.05);
    /* Light pink background */
    border: 1px solid rgba(232, 19, 109, 0.10);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.ak-simple-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
}

.ak-icon-navy {
    background-color: #0f172a;
}

.ak-icon-pink-vibrant {
    background-color: #e11d48;
}

.ak-simple-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.ak-simple-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 30px;
    flex-grow: 1;
}

.ak-simple-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
    color: #1e293b;
    font-size: 1rem;
    transition: gap 0.2s ease;
}

.ak-text-pink {
    color: #E8136D;
}

.ak-simple-link:hover {
    gap: 12px;
}

.ak-arrow {
    font-size: 1.2rem;
    line-height: 1;
}

.rtl .ak-arrow {
    transform: scaleX(-1);
}

@media (max-width: 850px) {
    .ak-dual-grid {
        grid-template-columns: 1fr;
    }

    .ak-simple-card {
        padding: 40px 30px;
    }
}

.ak-vision-alignment {
    padding: 100px 0;
    background: #ffffff;
}

.ak-text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ak-badge-text {
    color: #e11d48;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.ak-heading-lg {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.ak-description-md {
    color: #64748b;
    font-size: 18px;
    line-height: 1.6;
}

.ak-alignment-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ak-card-item {
    flex: 1;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    height: 100%;
    /* Soft accurate shadow */
}

.ak-icon-wrap {
    width: 64px;
    height: 64px;
    background: #FDF2F8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.ak-card-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.ak-card-item p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .ak-alignment-cards {
        flex-wrap: wrap;
    }

    .ak-card-item {
        flex: 0 0 calc(50% - 24px);
    }

    .ak-impact-image {
        width: 100%;
    }
}

.ak-impact-section {
    padding: 60px 0;
}

.ak-impact-wrapper {
    margin: 0 auto;
    display: flex;
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    min-height: 600px;
}

.ak-impact-image {
    flex: 1;
    background-image: url('your-city-image.jpg');
    background-size: cover;
    background-position: center;
    width: 50%;
}

.ak-impact-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px;
}

.ak-impact-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7c3aed;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.ak-impact-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 30px;
}

.ak-impact-text {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

/* Tablet/Mobile logic */
@media (max-width: 991px) {
    .ak-impact-wrapper {
        flex-direction: column;
    }

    .ak-impact-image {
        max-height: 300px;
        object-fit: cover;
    }

    .ak-impact-content {
        padding: 40px;
    }

    .ak-impact-image {
        width: 100%;
    }

    .ak-promise-visual {
        width: 100%;
    }
}

.ak-promise-section {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.ak-promise-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
}

.ak-promise-info {
    flex: 1.2;
}

.ak-badge-orange {
    background: #F9FAFB;
    color: #F16722;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.ak-promise-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin: 25px 0;
}

.ak-promise-lead {
    color: #64748b;
    font-size: 18px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 50px;
}

/* Feature Grid Logic */
.ak-promise-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
}

.ak-feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: start;
}

.ak-icon-square {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.bg-pink {
    background: #E8136D;
}

.bg-indigo {
    background: #8B5CF6;
}

.bg-emerald {
    background: #10B981;
}

.bg-amber {
    background: #F59E0B;
}

.ak-feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.ak-feature-text p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Right Side Graphic Side */
.ak-promise-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ak-visual-stack {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.ak-main-stat-card {
    background: white;
    padding: 40px 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    z-index: 10;
    border: 1px solid #f8fafc;
    width: 260px;
    height: 170px;
    opacity: .9;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.ak-stat-sparkle {
    color: #e11d48;
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.ak-stat-val {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
}

.ak-stat-lbl {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1px;
}

/* Layered Blur Effect based on screenshot */
.ak-blur-card {
    /* position: absolute;
    width: 280px;
    height: 280px;
    background: #cbd5e1;
    border-radius: 40px;
    opacity: 0.3;
    filter: blur(50px);
    z-index: 1; */
}

.ak-blur-card img {
    width: 100%;
    border-radius: 24px;
    height: 260px;
    object-fit: cover;
}

.ak-blur-left {
    width: 50%;
    border-radius: 24px;
    margin-top: 48px;
}

.ak-blur-right {
    width: 50%;
    border-radius: 24px;
}

/* Mobile View Handling */
@media (max-width: 1024px) {
    .ak-promise-layout {
        flex-direction: column;
        align-items: center;
        gap: 80px;
    }

    .ak-promise-info {
        text-align: center;
    }

    .ak-promise-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .pf-container {
        padding: 0 12px;
        padding-bottom: 72px;
    }
}

.ak-mission-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.ak-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ak-mission-card {
    border-radius: 24px;
    border: 1px solid var(--color-grey-91, #E5E7EB);
    background: var(--color-white-02, rgba(255, 255, 255, 0.00));
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ak-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.ak-mission-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.ak-mission-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
}

/* Specific Icon Colors from image_79bdf6.png */
.icon-pink {
    color: #e11d48;
}

.icon-orange {
    color: #f97316;
}

.icon-magenta {
    color: #db2777;
}

.ak-mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.ak-mission-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .ak-mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ak-mission-card {
        padding: 40px 30px;
    }
}

/* Container setup */
.brand-story-container {
    padding: 60px 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.brand-story-content {
    max-width: 1100px;
    display: flex;
    align-items: center;
    gap: 50px;
    /* Space between image and text */
}

/* Image styling */
.brand-story-visual {
    flex: 1;
}

.brand-story-img {
    width: 100%;
    height: 300px;
    border-radius: 24px;
    /* Matches the smooth rounded corners in the image */
    display: block;
    object-fit: cover;
}

/* Text styling */
.brand-story-text {
    flex: 1;
    color: #333333;
}

.brand-story-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #000000;
    letter-spacing: -0.5px;
}

.brand-story-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: #5f6368;
    margin-bottom: 20px;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .brand-story-content {
        flex-direction: column;
        text-align: center;
    }

    .brand-story-title {
        font-size: 28px;
    }

    .capabilities-swiper .swiper-slide-active {
        transform: scale(1.1) !important;
    }
}

.ak-community-section .swiper-wrapper {
    padding-bottom: 70px;
}

.ak-community-section .swiper-pagination-bullet-active {
    background-color: #E8136D;
}

/* Swiper Styles */
/* .swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    box-sizing: border-box;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    box-sizing: border-box;
} */

/* Media Queries */
@media (min-width: 1024px) {
    .lg\:grid-cols-\[55\%_40\%\] {
        grid-template-columns: 55% 40%;
    }
}

/* Important utilities */
.\!py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.\!leading-\[130\%\] {
    line-height: 130% !important;
}

/* Lucide Icon Support */
[data-lucide] {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Scroll Reveal Animation */
[data-reveal],
[data-reveal-child] {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1), transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].opacity-100,
[data-reveal-child].opacity-100 {
    opacity: 1;
    transform: translateY(0);
}

.capabilities-swiper .swiper-slide-active {
    width: 120% !important;
    display: flex !important;
    margin: auto !important;
    transform: scale(1.25) !important;
    margin: 14px 0 !important;
    margin-bottom: 44px !important;
}

@media (max-width: 768px) {

    .capabilities-swiper .swiper-slide-active {
        transform: scale(1.1) !important;
    }

    .ak-stack-card {
        padding: 30px;
    }
}

.capabilities-swiper {
    overflow: visible;
}

.capabilities-swiper .swiper-wrapper {
    align-items: center;
}

.terms-page-title {
    color: #EC0F68;
    font-size: 48px;
    margin-bottom: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-60, 60px);
    /* 125% */
}

.terms-content h3 {
    color: var(--colors-text-text-tertiary-600, #535862);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--Line-height-text-xl, 30px);
    /* 93.75% */
}

.inner-page-desc {
    color: var(--colors-text-text-tertiary-600, #535862);
    font-size: var(--Font-size-text-xl, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--Line-height-text-xl, 30px);
    /* 150% */
}

.faqs-section {
    padding: 40px;
    border-radius: 30px;
}

.inner-page-section {
    padding-top: 60px;
    padding-bottom: 120px;
}

/* contact style  */
#contact form {
    margin-top: 0;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

#contact form br {
    display: none;
}

#contact img {
    border-radius: 30px;
}

.contact-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e3e0;
    background: white;
    color: #26251f;
    outline: none;
    transition: all 0.3s;
}

.contact-form-input::placeholder {
    color: #a8a6a3;
}

.contact-form-input:focus {
    ring: 2px rgba(59, 130, 246, 0.2);
}

/* Email input: merges contact-form-input + contact-form-input-email */
.contact-form-input-email {
    width: 100%;
    padding: 0.75rem 1rem;
    padding-left: 3rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e3e0;
    background: white;
    color: #26251f;
    outline: none;
    transition: all 0.3s;
}

.contact-form-input-email::placeholder {
    color: #a8a6a3;
}

.contact-form-input-email:focus {
    ring: 2px rgba(59, 130, 246, 0.2);
}

/* Textarea: merges contact-form-input + contact-form-input-textarea */
.contact-form-input-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e3e0;
    background: white;
    color: #26251f;
    outline: none;
    transition: all 0.3s;
    height: 120px;
    resize: vertical;
}

.contact-form-input-textarea::placeholder {
    color: #a8a6a3;
}

.contact-form-input-textarea:focus {
    ring: 2px rgba(59, 130, 246, 0.2);
}

.contact-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #26251f;
    margin-bottom: 0.5rem;
}

.contact-form-group {
    position: relative;
}

.contact-form-email-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a8a6a3;
    width: 1.25rem;
    height: 1.25rem;
}

.contact-form-submit {
    width: 100%;
}

.wpcf7-form-control-wrap {
    margin-bottom: 24px;
    display: block;
}

.contact-form-submit {
    height: 64px;
    padding: 16px 32px;
    font-size: 18px;
}

.contact-form-submit svg {
    margin-inline-start: 8px;
}

.rtl .form-group,
.rtl .form-group input {
    text-align: right;
}

.rtl .form-group textarea {
    text-align: right;
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .ak-vision-alignment {
        padding: 40px 0;
    }
}

.home-section__container {
    padding: 0 12px;
}


.video-container {
    position: relative;
}

.video-container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 2px 0px 0px #fff, inset -2px 0px 0px #fff;
    border-radius: 10px;
}

.video-container::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0px 54px 0px #fff, inset 0px -26px 0px #fff;
    border-radius: 10px;
    z-index: 1;
}