/* ==========================================================================
   אורית יתום - ניהול משרד חכם
   Stylesheet · Warm Minimalist RTL Design
   ========================================================================== */

:root {
    /* Refined palette — charcoal · sage · dusty rose · cream */
    --bg: #EDE8E0;
    --bg-soft: #F5F1EB;
    --bg-white: #FAF8F5;
    --cream: #F0EBE3;
    --ink: #3D4550;
    --ink-soft: #5A6470;
    --muted: #8E949C;
    --line: #DDD8D0;

    /* Accents */
    --sage: #8A9A8E;
    --sage-dark: #6E8478;
    --terracotta: #C08B7D;
    --blush: #E0C4BA;
    --clay: #B08070;
    --gold: #7E9076;
    --sagegreen: #9AADA1;
    --dustyrose: #C49089;
    --darkslate: #505E6E;


    /* System */
    --radius: 18px;
    --radius-lg: 28px;
    --shadow-sm: 0 4px 20px rgba(61, 69, 80, 0.06);
    --shadow-md: 0 20px 50px rgba(61, 69, 80, 0.10);
    --shadow-lg: 0 30px 80px rgba(61, 69, 80, 0.14);
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-serif: "Heebo", -apple-system, "Segoe UI", Arial, sans-serif;
    --font-sans: "Heebo", -apple-system, "Segoe UI", Arial, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    direction: rtl;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.25;
    color: var(--ink);
    letter-spacing: -0.01em;
}
h1 .accent, h2 .accent, h3 .accent { font-style: normal; color: var(--sagegreen); font-weight: 400; }

.container { width: 92%; max-width: 1200px; margin: 0 auto; }

.skip-link {
    position: absolute;
    top: -100px;
    right: 0;
    background: var(--ink);
    color: #fff;
    padding: 10px 20px;
    z-index: 1000;
}
.skip-link:focus { top: 0; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--sagegreen);
    margin-bottom: 14px;
    letter-spacing: 0.08em;
    text-transform: none;
}
.eyebrow::before { content: "\2014\00a0"; opacity: 0.6; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 999px;
    transition: all var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--dustyrose);
    color: var(--bg-soft);
}
.btn-primary:hover {
    background: var(--ink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-ghost:hover {
    background: var(--ink);
    color: var(--bg-soft);
}
.btn-outline {
    background: transparent;
    color: var(--dustyrose);
    border-color: var(--dustyrose);
}
.btn-outline:hover {
    background: var(--dustyrose);
    color: var(--bg-soft);
}
.btn-full { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 100;
    transition: all var(--transition);
    background: rgba(245, 241, 235, 0.92);
    backdrop-filter: blur(12px);
}
.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

/* Top contact bar */
.top-bar {
    background: #3D4550;
    color: var(--bg-soft);
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: all var(--transition);
}
.site-header.scrolled .top-bar {
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.top-contact {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}
.top-contact li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bg);
    transition: color var(--transition);
}
.top-contact li a:hover { color: var(--blush); }
.top-contact svg {
    width: 15px;
    height: 15px;
    color: var(--sagegreen);
    flex-shrink: 0;
}
.top-contact li:nth-child(3) svg { color: #25D366; }

.top-social {
    display: flex;
    align-items: center;
    gap: 10px;
}
.top-social li a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--bg);
    transition: all var(--transition);
}
.top-social li a:hover {
    background: var(--sagegreen);
    color: var(--bg-soft);
    transform: translateY(-2px);
}
.top-social svg { width: 15px; height: 15px; }

/* Main nav row */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 16px 0;
    transition: padding var(--transition);
    position: relative;
}
.site-header.scrolled .header-inner { padding: 16px 0; }
.logo, .site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    text-decoration: none;
    position: absolute;
    inset-inline-start: 0;
}
.site-logo img {
    display: block;
    height: 50px;
    width: auto;
    max-height: 50px;
}
.logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
}
.logo-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--sagegreen);
    color: var(--bg-soft);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 500;
}
.logo-text {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.logo-text small {
    font-size: 0.7rem;
    font-family: var(--font-sans);
    color: var(--ink-soft);
    letter-spacing: 0.05em;
    font-weight: 400;
}
.main-nav ul {
    display: flex;
    gap: 36px;
    align-items: center;
}
.main-nav a {
    font-size: 0.92rem;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.02em;
}
.main-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline-end: 50%;
    width: 0;
    height: 1px;
    background: var(--sagegreen);
    transition: all var(--transition);
    transform: translateX(50%);
}
.main-nav a:hover { color: var(--sagegreen); }
.main-nav a:hover::after { width: 100%; }
.main-nav .nav-cta {
    padding: 10px 24px;
    border: 1.5px solid var(--sagegreen);
    border-radius: 999px;
    color: var(--sagegreen);
}
.main-nav .nav-cta:hover { background: var(--sagegreen); color: var(--bg-soft); }
.main-nav .nav-cta::after { display: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 170px 0 80px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg) 0%, var(--cream) 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}


.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    line-height: 1.15;
}
.hero-text {
    font-size: 1.1rem;
    color: var(--darkslate);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 50px;
}
.hero-meta {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
    max-width: 520px;
}
.hero-meta li { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--sagegreen);
    line-height: 1;
}
.hero-meta span {
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.hero-visual {
    position: relative;
    width: 80%;
    justify-self: center;
}
.hero-image-frame {
    position: relative;
    width: 100%;
    margin-inline: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    background: var(--cream);
}
.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}
.hero-image-frame:hover img { transform: scale(1.04); }

.hero-badge {
    position: absolute;
    bottom: 30px;
    inset-inline-start: -30px;
    background: var(--bg-soft);
    padding: 16px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-badge span {
    font-family: var(--font-serif);
    color: var(--sage-dark);
    font-size: 1rem;
    font-weight: 500;
}
.hero-badge small { font-size: 0.75rem; color: var(--ink-soft); }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 1.5px solid var(--ink-soft);
    border-radius: 999px;
    display: grid;
    place-items: center;
}
.scroll-indicator span {
    width: 3px;
    height: 8px;
    background: var(--ink-soft);
    border-radius: 999px;
    animation: scroll-dot 1.8s infinite;
}
@keyframes scroll-dot {
    0% { transform: translateY(-6px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(6px); opacity: 0; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    padding: 110px 0;
    position: relative;
}
.section-alt { background: var(--bg-soft); }
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}
.section-title {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 600px;
    margin: 0 auto;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text p {
    color: var(--ink-soft);
    margin-bottom: 20px;
    font-size: 1.02rem;
}
.about-text .section-title { text-align: right; margin-bottom: 30px; }
.about-text .btn { margin-top: 20px; }

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.value-card {
    background: var(--bg-soft);
    padding: 32px 26px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: all var(--transition);
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--sagegreen);
}
.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--cream);
    display: grid;
    place-items: center;
    color: var(--sagegreen);
    margin-bottom: 18px;
}
.value-icon svg { width: 24px; height: 24px; }
.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.value-card p {
    font-size: 0.92rem;
    color: var(--ink-soft);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--bg-white);
    border: 1px solid var(--line);
    padding: 40px 32px;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    width: 100%;
    height: 4px;
    background: var(--sagegreen);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--sagegreen);
    margin-bottom: 22px;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--sagegreen);
    color: var(--bg-soft);
    transform: rotate(-4deg);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.service-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

/* Process — Animated Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    width: 3px;
    background: var(--line);
    border-radius: 2px;
    transform: translateX(50%);
}
.timeline-line-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--sagegreen), var(--dustyrose));
    border-radius: 2px;
    transition: height 0.05s linear;
}
.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    padding: 30px 0;
}
.timeline-step:nth-child(even) { flex-direction: row-reverse; }
.timeline-step:nth-child(even) .timeline-content { text-align: left; }

.timeline-dot {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-soft);
    border: 3px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--sagegreen);
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(61, 69, 80, 0.08);
}
.timeline-dot svg { width: 24px; height: 24px; }
.timeline-step.visible .timeline-dot {
    border-color: var(--sagegreen);
    background: var(--sagegreen);
    color: #fff;
    animation: dot-pop 0.6s ease forwards;
}
@keyframes dot-pop {
    0%   { transform: translateX(50%) scale(0.6); }
    60%  { transform: translateX(50%) scale(1.15); }
    100% { transform: translateX(50%) scale(1); }
}

.timeline-content {
    width: calc(50% - 56px);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline-step.visible .timeline-content {
    border-color: var(--sagegreen);
    box-shadow: var(--shadow-sm);
}
.timeline-step:hover .timeline-content {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.timeline-content .step-number {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--sagegreen);
    opacity: 0.35;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    font-weight: 300;
}
.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.timeline-content p {
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Photo Banners */
.photo-banner {
    width: 100%;
    overflow: hidden;
    max-height: 400px;
    position: relative;
}
.photo-banner-narrow { max-height: 320px; }
.photo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s ease;
}
.photo-banner:hover img { transform: scale(1.03); }

/* Automation Section */
.automation { background: var(--bg-soft); }
.automation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}
.automation-image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--cream);
}
.automation-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 1.2s ease;
}
.automation-image-frame:hover img { transform: scale(1.04); }

.auto-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.auto-feature:last-child { border-bottom: none; }
.auto-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: var(--sagegreen);
    color: #fff;
    display: grid;
    place-items: center;
    transition: all var(--transition);
}
.auto-feature:hover .auto-feature-icon {
    transform: rotate(-6deg) scale(1.08);
}
.auto-feature-icon svg { width: 22px; height: 22px; }
.auto-feature h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}
.auto-feature p {
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.automation-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding: 50px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 40px;
    text-align: center;
}
.auto-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.auto-stat-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--sagegreen);
    line-height: 1;
    display: inline;
}
.auto-stat-unit {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--sagegreen);
    font-weight: 300;
}
.auto-stat-label {
    font-size: 0.88rem;
    color: var(--ink-soft);
    max-width: 180px;
}

.automation-tools { text-align: center; }
.tools-label {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-bottom: 18px;
}
.tools-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.tool-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
    transition: all var(--transition);
}
.tool-badge:hover {
    border-color: var(--sagegreen);
    background: var(--sagegreen);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Testimonials */
.testimonial-slider {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial {
    min-width: 100%;
    padding: 50px 40px;
    text-align: center;
}
.testimonial blockquote {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--ink);
    font-weight: 400;
    margin-bottom: 30px;
    position: relative;
}
.testimonial blockquote::before {
    content: "\201F";
    font-size: 6rem;
    color: var(--sagegreen);
    opacity: 0.25;
    position: absolute;
    top: -40px;
    inset-inline-end: -20px;
    font-family: var(--font-serif);
    line-height: 1;
}
.testimonial figcaption {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.testimonial figcaption strong {
    font-family: var(--font-serif);
    color: var(--sagegreen);
    font-size: 1.1rem;
}
.testimonial figcaption span {
    font-size: 0.88rem;
    color: var(--ink-soft);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    color: var(--ink);
    font-size: 1rem;
    transition: all var(--transition);
    display: grid;
    place-items: center;
}
.slider-btn:hover {
    background: var(--sagegreen);
    color: var(--bg-soft);
    border-color: var(--sagegreen);
}
.slider-dots {
    display: flex;
    gap: 10px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    transition: all var(--transition);
}
.dot.active {
    background: var(--sagegreen);
    width: 28px;
    border-radius: 4px;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.faq-head .section-title { text-align: right; }
.faq-head p { color: var(--ink-soft); margin: 20px 0 28px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 26px;
    transition: all var(--transition);
}
.faq-item[open] {
    background: var(--cream);
    border-color: var(--sagegreen);
}
.faq-item summary {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 1.7rem;
    color: var(--sagegreen);
    transition: transform var(--transition);
    line-height: 1;
    font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 0.95rem;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: none; }
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}
.contact-info .section-title { text-align: right; margin-bottom: 20px; }
.contact-info > p {
    color: var(--ink-soft);
    margin-bottom: 30px;
    font-size: 1rem;
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--ink);
    font-size: 1rem;
}
.contact-list svg {
    width: 22px;
    height: 22px;
    color: var(--sagegreen);
    flex-shrink: 0;
}
.contact-list a:hover { color: var(--sagegreen); }

.contact-form {
    background: var(--bg-white);
    padding: 45px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row-full { grid-column: 1 / -1; }
.contact-form label {
    font-size: 0.88rem;
    color: var(--ink);
    font-weight: 500;
}
.contact-form label span { color: var(--sagegreen); }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--line);
    background: var(--bg-soft);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--ink);
    transition: all var(--transition);
    direction: rtl;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--sagegreen);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(176, 120, 88, 0.08);
}
.contact-form textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.contact-form .btn-primary { grid-column: 1 / -1; margin-top: 6px; }
.form-note {
    grid-column: 1 / -1;
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
}
.error-msg {
    font-size: 0.78rem;
    color: #B94C4C;
    min-height: 14px;
}
.form-row.error input,
.form-row.error select,
.form-row.error textarea {
    border-color: #B94C4C;
    background: #FCF1F1;
}
.form-success {
    grid-column: 1 / -1;
    padding: 18px;
    background: #E8EDE5;
    border: 1px solid var(--sage);
    border-radius: 12px;
    color: var(--sage-dark);
    text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #3D4550;
    color: var(--bg);
    padding: 60px 0 30px;
    font-family: "Heebo", -apple-system, "Segoe UI", Arial, sans-serif;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 30px 40px;
    align-items: center;
}
.footer-brand { grid-column: 1; grid-row: 1; }
.footer-nav { grid-column: 2; grid-row: 1; }
.footer-social { grid-column: 3; grid-row: 1; justify-self: end; }
.copyright { grid-column: 1 / -1; grid-row: 2; text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.08); }

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social li a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--bg);
    transition: all var(--transition);
}
.footer-social li a:hover {
    background: var(--sagegreen);
    color: var(--bg-soft);
    transform: translateY(-3px);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-brand strong {
    font-family: "Heebo", var(--font-sans);
    font-size: 1.2rem;
    display: block;
}
.footer-brand small {
    font-family: "Heebo", var(--font-sans);
    font-size: 0.78rem;
    color: var(--muted);
}
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.footer-nav a { font-size: 0.92rem; color: var(--bg); }
.footer-nav a:hover { color: var(--blush); }
.copyright {
    text-align: left;
    font-size: 0.82rem;
    color: var(--muted);
}

/* Floating controls */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    inset-inline-start: 30px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 90;
    animation: pulse 2.4s infinite;
    transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ==========================================================================
   Maintenance Page
   ========================================================================== */
.maintenance-section {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--cream) 100%);
}
.maintenance-card {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    box-shadow: var(--shadow-md);
}
.maintenance-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: grid;
    place-items: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--sagegreen);
    animation: spin-slow 8s linear infinite;
}
.maintenance-icon svg {
    width: 42px;
    height: 42px;
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.maintenance-title {
    font-size: 2.2rem;
    color: var(--ink);
    margin-bottom: 16px;
}
.maintenance-text {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 36px;
}
.maintenance-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.maintenance-contact .btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
@media (max-width: 720px) {
    .maintenance-card { padding: 40px 24px; }
    .maintenance-title { font-size: 1.7rem; }
    .maintenance-contact { flex-direction: column; }
    .maintenance-contact .btn { width: 100%; }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0); }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    inset-inline-end: 30px;
    width: 48px;
    height: 48px;
    background: var(--sagegreen);
    color: var(--bg-soft);
    border-radius: 50%;
    font-size: 1.4rem;
    box-shadow: var(--shadow-md);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.back-to-top:hover { background: var(--ink); }

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hero-content { max-width: 640px; margin: 0 auto; }
    .hero-text { margin-inline: auto; }
    .hero-meta { margin-inline: auto; justify-content: center; }
    .hero-ctas { justify-content: center; }
    .hero-visual { max-width: 320px; margin: 0 auto; }

    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .automation-grid { grid-template-columns: 1fr; gap: 40px; }
    .automation-stats { grid-template-columns: repeat(2, 1fr); }
    .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-text .section-title, .faq-head .section-title, .contact-info .section-title { text-align: center; }
}

@media (max-width: 860px) {
    .top-bar { font-size: 0.75rem; padding: 6px 0; }
    .top-bar-inner { flex-direction: column; gap: 8px; align-items: center; }
    .top-contact { gap: 14px; justify-content: center; }
    .top-contact li a span { display: none; }
    .top-contact svg { width: 17px; height: 17px; }
    .footer-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        text-align: center;
        gap: 24px;
    }
    .footer-brand, .footer-nav, .footer-social { grid-column: 1; justify-self: center; }
    .footer-brand { grid-row: 1; }
    .footer-nav { grid-row: 2; }
    .footer-social { grid-row: 3; }
    .copyright { grid-row: 4; grid-column: 1; }
}

@media (max-width: 720px) {
    .section { padding: 80px 0; }
    .section-head { margin-bottom: 50px; }
    .hero { padding: 150px 0 60px; }
    .hero-meta { flex-wrap: wrap; gap: 24px; }

    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0;
        inset-inline-end: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-soft);
        padding: 100px 40px 40px;
        box-shadow: var(--shadow-lg);
        transition: inset-inline-end var(--transition);
    }
    .main-nav.active { inset-inline-end: 0; }
    .main-nav ul { flex-direction: column; gap: 22px; align-items: flex-start; }
    .main-nav a { font-size: 1.1rem; }

    .services-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .contact-form { grid-template-columns: 1fr; padding: 32px 24px; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-nav { justify-content: center; }
    .copyright { text-align: center; }

    /* Timeline mobile — single column */
    .timeline-line { right: 28px; transform: none; }
    .timeline-step,
    .timeline-step:nth-child(even) { flex-direction: column; padding-right: 80px; padding-left: 0; }
    .timeline-step:nth-child(even) .timeline-content { text-align: right; }
    .timeline-dot { right: 0; transform: none; }
    .timeline-step.visible .timeline-dot { animation-name: dot-pop-mobile; }
    @keyframes dot-pop-mobile {
        0%   { transform: scale(0.6); }
        60%  { transform: scale(1.15); }
        100% { transform: scale(1); }
    }
    .timeline-content { width: 100%; }

    /* Automation mobile */
    .automation-grid { grid-template-columns: 1fr; }
    .automation-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    .photo-banner { max-height: 250px; }
    .photo-banner-narrow { max-height: 200px; }

    .testimonial { padding: 30px 20px; }
    .testimonial blockquote { font-size: 1.25rem; }
    .hero-badge { inset-inline-start: auto; inset-inline-end: 20px; bottom: 20px; }

    .blog-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-hero {
    padding: 160px 0 40px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--cream) 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.blog-grid-full {
    grid-template-columns: repeat(2, 1fr);
}

.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--sagegreen);
    transform: translateY(-4px);
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.blog-card-body h2,
.blog-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5;
}
.blog-card-body p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.7;
}
.blog-card-body ul {
    list-style: none;
    padding: 0;
    margin: 8px 0;
}
.blog-card-body ul li {
    position: relative;
    padding-inline-start: 18px;
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.8;
}
.blog-card-body ul li::before {
    content: "✓";
    position: absolute;
    inset-inline-start: 0;
    color: var(--sagegreen);
    font-weight: 700;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--muted);
    font-family: var(--font-sans);
}

.blog-read-more {
    margin-top: auto;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--sagegreen);
    transition: color var(--transition);
}
.blog-read-more:hover {
    color: var(--sage-dark);
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

.main-nav a.active {
    color: var(--sagegreen);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 120px 0 0;
    font-size: 0.9rem;
}
.breadcrumbs a {
    color: var(--sagegreen);
    font-weight: 500;
}
.breadcrumbs a:hover {
    color: var(--sage-dark);
}
.breadcrumb-sep {
    margin: 0 8px;
    color: var(--muted);
}
.breadcrumb-current {
    color: var(--ink);
    font-weight: 600;
}

/* Blog Post Full-Width Readable Layout */
.blog-post {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.blog-post-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}
.blog-post-content h2 {
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.5;
}
.blog-post-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--ink);
    margin-bottom: 16px;
}
.blog-post-content ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.blog-post-content ul li {
    position: relative;
    padding-right: 24px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink);
}
.blog-post-content ul li::before {
    content: "\2714";
    position: absolute;
    right: 0;
    color: var(--sagegreen);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .blog-grid,
    .blog-grid-full { grid-template-columns: repeat(2, 1fr); }
    .blog-post { grid-template-columns: 1fr 1fr; gap: 24px; padding: 24px; }
}
@media (max-width: 640px) {
    .blog-grid,
    .blog-grid-full { grid-template-columns: 1fr; }
    .blog-hero { padding: 140px 0 30px; }
    .blog-post { grid-template-columns: 1fr; padding: 20px; }
    .breadcrumbs { padding: 100px 0 0; }
}
