:root {
    /* Premium Color Palette */
    --primary-color: #0061ff;
    /* Brighter, more modern blue */
    --primary-dark: #003366;
    --secondary-color: #00c6ff;
    /* Cyan */
    --accent-color: #60efff;
    --text-dark: #0f172a;
    /* Slate 900 */
    --text-medium: #334155;
    /* Slate 700 */
    --text-light: #64748b;
    /* Slate 500 */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.9);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0061ff 0%, #60efff 100%);
    --gradient-text: linear-gradient(120deg, #0061ff, #00c6ff);
    --gradient-card: linear-gradient(145deg, #ffffff, #f0f9ff);

    /* Spacing & Layout */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Shadows - Soft & Premium */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-glow: 0 0 20px rgba(96, 239, 255, 0.3);

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', 'Heebo', sans-serif;
    direction: rtl;
    text-align: right;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
    border: 3px solid var(--bg-light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Heebo', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.25;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 900;
}

h1 {
    font-size: 4rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.8rem;
    letter-spacing: -0.5px;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.text-primary {
    color: var(--primary-color);
}

.highlight-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    padding: 0 24px;
    margin: 0 auto;
    /* Ensure centering */
}

.margin-auto {
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Custom Badge */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 97, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.badge-light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 97, 255, 0.3);
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 97, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 97, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 97, 255, 0);
    }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 97, 255, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1.15rem;
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind text */
    pointer-events: none;
}

.glow-effect:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg) scale(0);
    transition: var(--transition);
    z-index: -1;
}

.glow-effect:hover:after {
    transform: rotate(45deg) scale(1);
}

.full-width {
    width: 100%;
}

/* Glassmorphism */
.glass-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 30px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* Gradient fade for readability */
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    box-shadow: none;
    padding: 25px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header .logo,
.site-header .main-nav ul li a {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.site-header.scrolled .logo,
.site-header.scrolled .main-nav ul li a {
    color: var(--text-dark);
    text-shadow: none;
}

.site-header.scrolled .logo .dot {
    color: var(--secondary-color);
}

.site-header.scrolled .main-nav ul li a:hover {
    color: var(--primary-color);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    /* Logo Left, Menu Right */
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-dark);
    letter-spacing: -1px;
}

.logo .dot {
    color: var(--secondary-color);
    font-size: 2.2rem;
    line-height: 0;
}

.main-nav ul {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
}

.main-nav a:not(.btn):after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.main-nav a:not(.btn):hover:after {
    width: 100%;
}

.header-cta {
    margin-right: 30px;
    /* Space between nav and button */
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.bar {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 6px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 0;
    padding-top: 100px;
}



.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f9ff;
    background-image:
        radial-gradient(at 0% 0%, hsla(213, 100%, 88%, 1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(190, 100%, 90%, 1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(213, 100%, 89%, 1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(189, 100%, 89%, 1) 0px, transparent 50%);
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
    z-index: -2;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(0, 97, 255, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    padding-bottom: 50px;
}

.hero h1 {
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* SVG Divider */
.custom-shape-divider-bottom-1689970993 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1689970993 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.custom-shape-divider-bottom-1689970993 .shape-fill {
    fill: var(--bg-light);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.highlight-text {
    border-right: 5px solid var(--secondary-color);
    margin-top: 30px;
    color: var(--primary-dark);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: rgba(96, 239, 255, 0.4);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 97, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-item:hover .icon-box {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(10deg);
}

/* Services Section */
.services-section {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    border-color: rgba(96, 239, 255, 0.3);
}

.card-bg-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 239, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    transition: var(--transition);
}

.service-card:hover .card-bg-shape {
    transform: scale(1.5);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
}

.service-card:hover .icon-wrapper {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.service-card:hover .icon-wrapper i {
    transform: rotateY(-180deg);
    /* Counter rotate icon */
}

.service-card h3 {
    position: relative;
    z-index: 1;
}

.service-list {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px dashed var(--text-light);
    position: relative;
    z-index: 1;
}

.service-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-medium);
    padding-right: 24px;
    position: relative;
}

.service-list li::before {
    content: "\f00c";
    /* FontAwesome check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 2px;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.link-highlight {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--secondary-color);
    text-underline-offset: 4px;
}

.link-highlight:hover {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Apps Section */
.apps-section {
    background: var(--gradient-primary);
    color: white;
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.apps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.apps-content {
    z-index: 2;
}

.apps-content h2 {
    color: white;
    font-size: 3rem;
}

.apps-content h3 {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 2rem;
}

.apps-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    transition: var(--transition);
}

.store-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.store-btn i {
    font-size: 2rem;
}

.store-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-btn small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.store-btn span {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Phone Mockup (CSS only) */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--text-dark);
    border-radius: 45px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    padding: 12px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transform: rotate(-10deg) translateY(20px);
    transition: var(--transition);
}

.phone-mockup:hover {
    transform: rotate(0deg) translateY(0);
}

.notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: var(--text-dark);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 5;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px;
    padding-top: 50px;
}

.app-logo {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.app-logo i {
    font-size: 4rem;
    margin-bottom: 10px;
    display: block;
}

.app-logo span {
    font-weight: 800;
    font-size: 1.5rem;
}

.app-ui-row {
    height: 15px;
    background: #f1f5f9;
    border-radius: 10px;
    margin-bottom: 15px;
    width: 100%;
}

.app-ui-row.short {
    width: 60%;
}

.app-ui-card {
    height: 80px;
    background: var(--bg-light);
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.app-cta-mock {
    margin-top: auto;
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    font-weight: bold;
}

.custom-shape-divider-bottom-apps {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-apps svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.custom-shape-divider-bottom-apps .shape-fill {
    fill: var(--bg-light);
}

/* FAQ */
.faq-section {
    background: var(--bg-light);
}

.accordion {
    max-width: 900px;
    margin: 40px auto 0;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    text-align: right;
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    color: var(--text-dark);
}

.accordion-header span {
    max-width: 90%;
}

.accordion-header i {
    color: var(--secondary-color);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.accordion-header.active i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.accordion-header.active {
    background: #f8fafc;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: white;
}

.accordion-content p {
    padding: 0 30px 25px;
    margin: 0;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Suppliers / Business Section */
.suppliers-section {
    padding: 50px 0;
}

.suppliers-card {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        var(--gradient-primary) border-box;
}

.suppliers-card h2 {
    font-size: 2.5rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
}

.tag {
    background: rgba(0, 97, 255, 0.05);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.main-nav ul li a {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-medium);
    padding: 8px 0;
    position: relative;
    /* For underline animation */
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-text);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
}

.main-nav ul li a:hover::after {
    width: 100%;
    left: 0;
    /* Optional: animates form right to left usually in hebrew, or fix to right */
}

/* Contact */
.contact-wrapper {
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: 30px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    padding: 60px;
    background: #0f172a;
    color: white;
    text-align: center;
}

.contact-info.full-width-info {
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: right;
}

.contact-info h2 {
    color: white;
    margin-bottom: 15px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.info-item h4 {
    color: white;
    margin-bottom: 5px;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.highlight-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
}

.highlight-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.highlight-whatsapp:hover::before {
    transform: translateX(100%);
}

.highlight-whatsapp:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.highlight-whatsapp .icon-circle {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.highlight-whatsapp h4,
.highlight-whatsapp .contact-link {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.highlight-whatsapp .contact-link:hover {
    color: white;
    text-decoration: underline;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-link {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    display: block;
}

.contact-link:hover {
    color: var(--accent-color);
}

/* Footer */
.site-footer {
    background: #0b1120;
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--secondary-color);
}

/* Animation Utils */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.5, 0, 0, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Founders */
.founders-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}

.founder-card {
    text-align: center;
    transition: var(--transition);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.founder-img {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    /* Rounded square instead of circle */
    object-fit: cover;
    object-position: top;
    /* Focus on faces */
    margin-bottom: 20px;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.founder-card:hover .founder-img {
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

.founder-card .role {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

/* Responsiveness */
@media (max-width: 992px) {
    :root {
        --container-width: 100%;
    }

    h1 {
        font-size: 3rem;
    }

    .hero {
        min-height: auto;
        padding-bottom: 150px;
    }

    .about-grid,
    .apps-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 40px;
    }

    .apps-container {
        gap: 60px;
        text-align: center;
    }

    .apps-content {
        order: 1;
    }

    .apps-visual {
        order: 2;
        margin-top: 20px;
    }

    .app-buttons {
        justify-content: center;
    }

    .contact-info {
        padding: 40px;
    }

    .contact-form-container {
        padding: 40px;
    }
}

/* Mobile Visibility Logic */
.mobile-link {
    display: none;
}

@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }

    .header-cta {
        display: none;
        /* Hide desktop button on mobile */
    }

    .mobile-link {
        display: block;
        /* Show menu link on mobile */
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        padding: 100px 30px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group.half {
        width: 100%;
    }

    .phone-mockup {
        transform: rotate(0) translateY(0);
    }

}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.loader-logo .dot {
    color: var(--secondary-color);
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--bg-light);
    border-top: 4px solid var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.float-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: white;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    font-size: 20px;
    z-index: 999;
    display: flex;
    /* Flex but hidden via opacity */
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    /* Prevent clicks when hidden */
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Mobile Tweak - adjust positions */
@media (max-width: 768px) {
    .float-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

}

/* Custom Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #d1fae5;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Stats Section */
.stats-section {
    background: var(--gradient-primary);
    padding: 60px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-number::after {
    content: "+";
    font-size: 2rem;
    vertical-align: top;
    opacity: 0.8;
}

.stat-item:last-child .stat-number::after {
    content: "+";
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .stats-title {
        font-size: 1.8rem;
        /* Smaller on mobile */
    }
}

.stats-title {
    color: white;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}