/*
Theme Name: Webify Theme
Theme URI: https://webify.co.il
Author: Webify
Author URI: https://webify.co.il
Description: תבנית וורדפרס מותאמת אישית לאתר תדמיתי של Webify - פיתוח אתרים וקידום SEO
Version: 1.0.0
Text Domain: webify
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ===========================
   CSS Variables
   =========================== */
:root {
    --primary: #6a1188;
    --primary-rgb: 106, 17, 136;
    --background-light: #f7f6f8;
    --background-dark: #1d1121;
    --deep-purple: #1C0029;
    --white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    --green-500: #22c55e;
    --purple-400: #c084fc;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Assistant', 'Inter', sans-serif;
    background-color: var(--background-light);
    color: var(--slate-900);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    direction: rtl;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ===========================
   Utility Classes
   =========================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===========================
   Header
   =========================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.site-logo .logo-icon .material-symbols-outlined {
    font-size: 1.875rem;
}

.site-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--primary);
}

/* Desktop Navigation */
.main-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
    transition: color 0.3s ease;
}

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

/* Header Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-login {
    display: none;
    align-items: center;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .btn-login {
        display: flex;
    }
}

.btn-login:hover {
    background: rgba(var(--primary-rgb), 0.05);
}

.btn-cta {
    display: flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    border-radius: 0.75rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(var(--primary-rgb), 0.2);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--slate-700);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 49;
    padding: 1.5rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-700);
    border-bottom: 1px solid var(--slate-100);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--primary);
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    background: linear-gradient(135deg, #1C0029 0%, #6a1188 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 6rem;
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 8rem 0 8rem;
    }
}

.hero-inner {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    text-align: right;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title .highlight {
    opacity: 0.8;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 36rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-hero-primary {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.btn-hero-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-weight: 700;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual / Mockup */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-visual {
        height: 500px;
    }
}

.mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 32rem;
}

.desktop-mockup {
    position: relative;
    z-index: 10;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: var(--slate-800);
    border-radius: 1rem;
    border: 12px solid var(--slate-900);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.desktop-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desktop-stand {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 8px;
    background: var(--slate-900);
    border-radius: 0 0 0.75rem 0.75rem;
    z-index: 10;
}

.mobile-mockup {
    position: absolute;
    bottom: -40px;
    right: -24px;
    z-index: 20;
    width: 140px;
    aspect-ratio: 9 / 19.5;
    background: var(--slate-900);
    border-radius: 2.5rem;
    border: 6px solid var(--slate-900);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.mobile-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 1rem;
    background: var(--slate-900);
    border-radius: 0 0 0.75rem 0.75rem;
    z-index: 30;
}

.mobile-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(var(--primary-rgb), 0.2);
    filter: blur(120px);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

/* ===========================
   Trust Bar
   =========================== */
.trust-bar {
    background: var(--white);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--slate-100);
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0.4;
    filter: grayscale(1);
    transition: all 0.5s ease;
}

.trust-items:hover {
    filter: grayscale(0);
}

@media (min-width: 768px) {
    .trust-items {
        gap: 4rem;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item .material-symbols-outlined {
    font-size: 1.875rem;
}

.trust-item span:last-child {
    font-weight: 700;
    font-size: 1.25rem;
}

/* ===========================
   Services / Bento Section
   =========================== */
.services-section {
    padding: 6rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

@media (min-width: 1024px) {
    .services-section {
        padding: 8rem 0 8rem;
    }
}

.services-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
    text-align: right;
}

@media (min-width: 768px) {
    .services-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.services-header .subtitle {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: block;
}

.services-header h2 {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--slate-900);
}

@media (min-width: 768px) {
    .services-header h2 {
        font-size: 3.75rem;
    }
}

.services-header .description {
    color: var(--slate-400);
    font-size: 1.125rem;
    max-width: 24rem;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover {
    transform: translateY(-5px);
}

.bento-item.span-8 {
    grid-column: span 12;
}

.bento-item.span-4 {
    grid-column: span 12;
}

.bento-item.span-12 {
    grid-column: span 12;
}

@media (min-width: 768px) {
    .bento-item.span-8 {
        grid-column: span 8;
    }

    .bento-item.span-4 {
        grid-column: span 4;
    }
}

.bento-item.dark-card {
    background: linear-gradient(to bottom right, #2D0642, #1C0029);
}

.bento-item.dark-card.bordered {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-item .bento-height {
    height: 450px;
}

.bento-item .bento-height-cta {
    height: 300px;
}

.bento-number {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.05;
    color: var(--white);
    transition: all 0.5s ease;
}

.bento-item:hover .bento-number {
    opacity: 0.15;
    transform: scale(1.1);
}

.bento-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    z-index: 10;
    position: relative;
}

.bento-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.bento-content p {
    color: var(--slate-400);
    transition: color 0.3s ease;
}

.bento-item:hover .bento-content p {
    color: var(--slate-200);
}

/* Service icon - large for all */
.bento-icon-large {
    position: absolute;
    top: 0;
    right: 0;
    padding: 3rem;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.bento-item:hover .bento-icon-large {
    opacity: 0.2;
}

.bento-icon-large .material-symbols-outlined {
    font-size: 9rem;
    color: var(--white);
}

/* Small inline icon for bento */
.bento-icon-inline {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.bento-item:hover .bento-icon-inline {
    transform: scale(1.1);
}

.bento-icon-inline .material-symbols-outlined {
    font-size: 1.875rem;
    color: var(--primary);
}

.bento-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.bento-link span:first-child {
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.bento-link:hover span:first-child {
    border-bottom-color: var(--primary);
}

.bento-link .material-symbols-outlined {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.bento-link:hover .material-symbols-outlined {
    transform: rotate(180deg) translateX(8px);
}

.bento-link-small {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.bento-link-small:hover {
    color: var(--white);
}

.bento-link-small .material-symbols-outlined {
    font-size: 0.75rem;
    transform: rotate(180deg);
}

.bento-btn-view {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-weight: 700;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 0.875rem;
    cursor: pointer;
}

.bento-btn-view:hover {
    background: var(--primary);
}

/* Reveal text on hover */
.bento-reveal-text {
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.bento-item:hover .bento-reveal-text {
    opacity: 1;
    transform: translateY(0);
}

/* Performance circles */
.perf-circles {
    display: flex;
    gap: 1rem;
}

.perf-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.perf-circle.accent {
    border-color: rgba(var(--primary-rgb), 0.2);
    border-top-color: var(--primary);
}

.perf-circle.green {
    border-top-color: var(--green-500);
}

.perf-circle span {
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
}

/* CTA Bento Card */
.bento-cta {
    grid-column: span 12;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 1.5rem;
}

.bento-cta .bento-cta-inner {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1.5rem;
}

.bento-cta h2 {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--slate-900);
}

@media (min-width: 768px) {
    .bento-cta h2 {
        font-size: 2.25rem;
    }
}

.bento-cta .btn-white {
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.bento-cta .btn-white:hover {
    transform: scale(1.05);
}

.bento-cta .glow {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 10rem;
    height: 10rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(48px);
    transition: transform 0.5s ease;
}

.bento-cta:hover .glow {
    transform: scale(1.5);
}

/* ===========================
   Portfolio Section
   =========================== */
.portfolio-section {
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--primary-rgb), 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(16px);
    padding: 1.5rem;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.portfolio-tag {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.portfolio-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--white);
    border-radius: 9999px;
    font-weight: 700;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.portfolio-all-btn {
    background: rgba(var(--primary-rgb), 0.05);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}

.portfolio-all-btn .btn-primary {
    padding: 1rem 3rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(var(--primary-rgb), 0.2);
    transition: all 0.3s ease;
}

.portfolio-all-btn .btn-primary:hover {
    transform: scale(1.05);
}

/* ===========================
   SEO Results Section
   =========================== */
.seo-section {
    padding: 4rem 0;
    background: var(--white);
}

.seo-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.seo-header h2 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.seo-header p {
    color: var(--slate-500);
    font-size: 0.875rem;
}

.seo-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.seo-carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
}

.seo-card {
    flex: 0 0 calc(50% - 0.5rem);
    padding: 1rem;
    background: var(--slate-50);
    border-radius: 0.5rem;
    border: 1px solid var(--slate-100);
    text-align: center;
}

@media (min-width: 1024px) {
    .seo-card {
        flex: 0 0 calc(16.666% - 0.833rem);
    }
}

.seo-card .keyword {
    color: var(--slate-500);
    font-size: 0.6875rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.seo-card .position {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
}

.seo-card .change {
    color: var(--green-500);
    font-weight: 700;
    font-size: 0.625rem;
    margin-top: 0.25rem;
}

.seo-carousel-nav {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.seo-carousel-nav.has-nav {
    display: flex;
}

.seo-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--slate-200);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.seo-carousel-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

.seo-carousel-arrows {
    display: none;
}

.seo-carousel-arrows.has-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.seo-carousel-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--slate-100);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.seo-carousel-arrow:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===========================
   Process Section
   =========================== */
.process-section {
    padding: 6rem 0;
    background: var(--white);
}

.process-section h2 {
    font-size: 2.25rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
}

.process-wrapper {
    position: relative;
}

.process-line {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(var(--primary-rgb), 0.1);
    transform: translateY(-50%);
}

@media (min-width: 1024px) {
    .process-line {
        display: block;
    }
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-card {
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid rgba(var(--primary-rgb), 0.05);
    z-index: 10;
}

.process-number {
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(var(--primary-rgb), 0.2);
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--slate-600);
}

/* ===========================
   Clients / Brands Carousel
   =========================== */
.clients-section {
    padding: 5rem 0;
    background: var(--background-light);
    overflow: hidden;
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
}

.clients-section h2 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--primary);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3.5rem;
}

.clients-carousel {
    position: relative;
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 5rem;
    white-space: nowrap;
    padding: 1rem 0;
    align-items: center;
    animation: scrollLogos 30s linear infinite;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

.clients-carousel:hover .clients-track {
    animation-play-state: paused;
}

.client-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    filter: grayscale(1);
    opacity: 0.4;
    transition: all 0.5s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.client-logo .material-symbols-outlined {
    font-size: 1.875rem;
    color: rgba(var(--primary-rgb), 0.8);
    transition: color 0.3s ease;
}

.client-logo:hover .material-symbols-outlined {
    color: var(--primary);
}

.client-logo span:last-child {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.testimonials-section > .container > h2 {
    font-size: 2.25rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-style: italic;
    position: relative;
}

.testimonial-card .quote-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--primary);
    opacity: 0.1;
    font-size: 3.75rem;
    transform: rotate(180deg);
}

.testimonial-card p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 10;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--slate-200);
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author .name {
    font-weight: 700;
    font-style: normal;
}

.testimonial-author .role {
    font-size: 0.875rem;
    color: var(--slate-500);
    font-style: normal;
}

/* ===========================
   Footer CTA
   =========================== */
.footer-cta {
    padding: 5rem 0;
    background: var(--primary);
    text-align: center;
}

.footer-cta h2 {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.3;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .footer-cta h2 {
        font-size: 3rem;
    }
}

.footer-cta .btn-white-xl {
    padding: 1.25rem 3rem;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    border-radius: 1rem;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.footer-cta .btn-white-xl:hover {
    transform: scale(1.05);
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    background: var(--deep-purple);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-about {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .footer-about {
        grid-column: span 1;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-logo .material-symbols-outlined {
    font-size: 1.875rem;
}

.footer-logo span:last-child {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-social a .material-symbols-outlined {
    font-size: 1.125rem;
}

.footer-col h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-col ul li a.highlight {
    font-weight: 700;
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact .material-symbols-outlined {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.875rem;
}

/* ===========================
   Contact Modal / Popup
   =========================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--white);
    width: 100%;
    max-width: 520px;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem;
    color: var(--slate-400);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.modal-body {
    padding: 2rem;
}

@media (min-width: 768px) {
    .modal-body {
        padding: 3rem;
    }
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header .icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.modal-header .icon-wrap .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.875rem;
}

.modal-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--slate-500);
    font-size: 1.125rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .modal-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-form label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-right: 0.25rem;
}

.modal-form input,
.modal-form select {
    width: 100%;
    height: 3.5rem;
    padding: 0 1rem;
    background: rgba(var(--primary-rgb), 0.05);
    border: 1px solid transparent;
    border-radius: 0.75rem;
    color: var(--slate-900);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.modal-form input::placeholder {
    color: var(--slate-400);
}

.modal-form input:focus,
.modal-form select:focus {
    outline: none;
    border-color: var(--primary);
}

.modal-form .select-wrapper {
    position: relative;
}

.modal-form .select-wrapper .material-symbols-outlined {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-400);
    pointer-events: none;
}

.modal-form .btn-submit {
    width: 100%;
    height: 3.5rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(var(--primary-rgb), 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.modal-form .btn-submit:hover {
    background: rgba(var(--primary-rgb), 0.9);
}

.modal-disclaimer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--slate-400);
}

.modal-accent {
    height: 8px;
    width: 100%;
    background: linear-gradient(to left, var(--primary), var(--purple-400), var(--primary));
}

/* Modal success state */
.modal-success {
    display: none;
    text-align: center;
    padding: 3rem;
}

.modal-success.active {
    display: block;
}

.modal-success .material-symbols-outlined {
    font-size: 4rem;
    color: var(--green-500);
    margin-bottom: 1rem;
}

.modal-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-success p {
    color: var(--slate-500);
}

/* ===========================
   Responsive Utilities
   =========================== */
@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }
}
