/* ==========================================
   CSS Variables & Reset
   ========================================== */
:root {
    --primary: #2ecc71;
    --primary-dark: #27ae60;
    --primary-light: rgba(46, 204, 113, 0.07);
    --primary-glow: rgba(46, 204, 113, 0.2);
    --secondary: #0a0e1a;
    --secondary-light: #141929;
    --accent: #00bfa5;
    --accent-light: rgba(0, 191, 165, 0.08);
    --gold: #f5a623;
    --gold-light: rgba(245, 166, 35, 0.1);
    --text: #1a1f36;
    --text-light: #6b7394;
    --text-lighter: #9ca3c4;
    --bg: #ffffff;
    --bg-alt: #f7f8fc;
    --bg-dark: #0a0e1a;
    --bg-card: #ffffff;
    --border: rgba(0, 0, 0, 0.06);
    --border-light: rgba(0, 0, 0, 0.04);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(46, 204, 113, 0.15);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Heebo', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ==========================================
   Layout
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.35);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-full {
    width: 100%;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.92);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(255,255,255,0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    padding: 8px 18px;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-links a:hover {
    color: white;
    background: rgba(255,255,255,0.08);
}

.nav-links a.active-link {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--secondary) !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    margin-right: 8px;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: all var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================
   Hero
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0a0e1a 0%, #0d1528 30%, #0a1a2e 60%, #071a1a 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(46, 204, 113, 0.08) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(0, 191, 165, 0.06) 0%, transparent 70%);
    animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    100% { transform: translate(30px, -20px) scale(1.1); opacity: 1; }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(46, 204, 113, 0.4);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 44px;
    max-width: 580px;
}

.hero-subtitle strong {
    color: rgba(255,255,255,0.95);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-trust {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ==========================================
   Services
   ========================================== */
.services {
    padding: 120px 0;
    background: var(--bg);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card.featured {
    border-color: rgba(46, 204, 113, 0.2);
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.03) 0%, var(--bg-card) 100%);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--secondary);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    transition: all var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.25);
}

.service-card:hover .service-icon-wrapper svg {
    stroke: white;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--secondary);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.75;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

.service-features li svg {
    flex-shrink: 0;
}

/* ==========================================
   Process
   ========================================== */
.process {
    padding: 120px 0;
    background: var(--bg-alt);
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 32px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent), var(--border));
    opacity: 0.3;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 24px 0;
    position: relative;
}

.step-icon-wrapper {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: 50%;
    position: relative;
    z-index: 1;
    border: 3px solid var(--bg-alt);
    box-shadow: 0 0 0 1px rgba(46, 204, 113, 0.2);
    transition: all var(--transition);
}

.step:hover .step-icon-wrapper {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 0 1px var(--primary), 0 8px 30px rgba(46, 204, 113, 0.3);
    transform: scale(1.1);
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary);
}

.step p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.95rem;
}

.step p strong {
    color: var(--primary);
    font-weight: 600;
}

/* ==========================================
   Pricing
   ========================================== */
.pricing {
    padding: 120px 0;
    background: var(--bg);
    position: relative;
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--accent-light);
    border: 1px solid rgba(0, 191, 165, 0.15);
    border-right: 3px solid var(--accent);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    margin-bottom: 48px;
    font-size: 0.95rem;
    color: var(--text);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.pricing-note-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-table-wrapper {
    max-width: 920px;
    margin: 0 auto 56px;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    overflow: hidden;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

.pricing-table th {
    color: white;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 0.92rem;
    text-align: right;
    letter-spacing: 0.02em;
}

.pricing-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    vertical-align: top;
    transition: background var(--transition);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover td {
    background: var(--bg-alt);
}

.col-num {
    width: 50px;
    text-align: center !important;
    color: var(--text-lighter);
    font-weight: 600;
}

.col-desc strong {
    display: block;
    color: var(--secondary);
    font-weight: 700;
}

.col-detail {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
}

.col-price {
    white-space: nowrap;
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 1.05rem;
    font-variant-numeric: tabular-nums;
}

/* Shekel signs are inserted via JS */

/* Pricing Example */
.pricing-example {
    max-width: 640px;
    margin: 0 auto 56px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.pricing-example::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
}

.pricing-example-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    justify-content: center;
}

.pricing-example h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
}

.example-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.example-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
}

.example-row:last-child {
    border-bottom: none;
}

.example-price {
    font-weight: 600;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.example-row.subtotal {
    border-top: 2px solid var(--border);
    border-bottom: 1px solid var(--border-light);
    padding-top: 20px;
    margin-top: 8px;
    font-weight: 700;
}

.example-row.subtotal .example-price {
    font-weight: 700;
}

.example-row.vat {
    color: var(--text-light);
    font-size: 0.9rem;
}

.example-row.vat .example-price {
    color: var(--text-light);
    font-weight: 500;
}

.example-row.total {
    border-top: 2px solid var(--primary);
    border-bottom: none;
    padding-top: 20px;
    margin-top: 8px;
    font-size: 1.3rem;
    font-weight: 900;
}

.example-row.total .example-price {
    color: var(--primary-dark);
    font-weight: 900;
    font-size: 1.3rem;
}

.pricing-cta-block {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a2340 100%);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pricing-cta-block::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(46, 204, 113, 0.08) 0%, transparent 70%);
}

.pricing-cta-title {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.pricing-cta-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
}

.btn-calc-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border: none;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 20px 48px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(46, 204, 113, 0.3);
    position: relative;
    z-index: 1;
}

.btn-calc-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(46, 204, 113, 0.4);
}

.pricing-cta-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.pricing-cta-divider::before,
.pricing-cta-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.pricing-cta-divider span {
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    font-weight: 500;
}

.pricing-cta-block .btn-outline-dark {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.2);
}

.pricing-cta-block .btn-outline-dark:hover {
    color: white;
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
}

/* ==========================================
   About
   ========================================== */
.about {
    padding: 120px 0;
    background: var(--bg-alt);
}

.about-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 72px;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 44px;
    line-height: 1.85;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 4px 0;
}

.value-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.value-item:hover .value-icon {
    background: var(--primary);
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.25);
    transform: scale(1.05);
}

.value-item:hover .value-icon svg {
    stroke: white;
}

.value-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--secondary);
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.credential-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.credential-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.credential-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 166, 35, 0.2);
}

.credential-card:hover::after {
    opacity: 1;
}

.credential-icon {
    margin-bottom: 16px;
}

.credential-label {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.credential-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary);
}

/* ==========================================
   Contact
   ========================================== */
.contact {
    padding: 120px 0;
    background: var(--bg);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: start;
}

.quote-form {
    background: white;
    padding: 48px 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg-alt);
    transition: all var(--transition);
    direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.form-note {
    text-align: center;
    font-size: 0.83rem;
    color: var(--text-light);
    margin-top: 16px;
}

.form-field-note {
    display: block;
    font-size: 0.78rem;
    color: var(--text-lighter);
    margin-top: 6px;
    line-height: 1.5;
    font-style: italic;
}

.contact-info {
    padding-top: 12px;
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--secondary);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: white;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.contact-method:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.whatsapp-method:hover {
    border-color: #25D366;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.15);
}

.contact-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.whatsapp-method .contact-method-icon {
    background: rgba(37, 211, 102, 0.1);
}

.contact-method-label {
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.contact-method-value {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--secondary);
}

.working-hours {
    background: white;
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border);
}

.working-hours-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.working-hours h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
}

.working-hours p {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 6px;
    padding-right: 28px;
}

.hours-note {
    color: var(--text-light) !important;
    font-size: 0.83rem !important;
    margin-top: 10px !important;
    padding-right: 28px;
    font-style: italic;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.6);
    padding: 56px 0 28px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.3), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 28px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .logo-name {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-license {
    font-size: 0.78rem !important;
    color: rgba(255,255,255,0.3) !important;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all var(--transition);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
}

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

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

/* ==========================================
   WhatsApp Float
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    z-index: 999;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0; }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ==========================================
   Form Success State
   ========================================== */
.form-success {
    text-align: center;
    padding: 72px 44px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    margin: 0 auto 24px;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--secondary);
}

.form-success p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==========================================
   Section Dot Navigation
   ========================================== */
.section-dots {
    position: fixed;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 998;
}

.section-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0;
    outline: none;
}

.section-dot::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-dot.active {
    border-color: var(--primary);
    transform: scale(1.3);
}

.section-dot.active::before {
    background: var(--primary);
}

.section-dot:hover {
    border-color: var(--primary);
    transform: scale(1.2);
}

/* Tooltip */
.dot-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--secondary);
    color: white;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font);
}

.dot-tooltip::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--secondary);
}

.section-dot:hover .dot-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* On light sections, dots need dark styling */
body .section-dots {
    mix-blend-mode: normal;
}

/* Adjust for non-hero sections: use dark dots */
@supports (backdrop-filter: blur(8px)) {
    .section-dots {
        background: rgba(10, 14, 26, 0.4);
        backdrop-filter: blur(8px);
        padding: 16px 10px;
        border-radius: 30px;
        border: 1px solid rgba(255,255,255,0.06);
    }
}

/* ==========================================
   Reveal Animations
   ========================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin: 0 auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-credentials {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .credential-card {
        flex: 1;
        min-width: 160px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-dots {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        right: 0;
        left: 0;
        background: rgba(10, 14, 26, 0.96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 14px 18px;
        border-radius: var(--radius-sm);
    }

    .nav-cta {
        margin-right: 0 !important;
        text-align: center;
        margin-top: 8px;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 14px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form {
        padding: 32px 24px;
    }

    .pricing-example {
        padding: 28px 24px;
    }

    .about-credentials {
        flex-direction: column;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 14px 16px;
        font-size: 0.85rem;
    }

    .step {
        gap: 20px;
    }

    .step-icon-wrapper {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .timeline-line {
        right: 25px;
    }

    .services,
    .process,
    .pricing,
    .about,
    .contact {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 18px;
    }

    .hero-badge {
        font-size: 0.78rem;
    }

    .service-card {
        padding: 36px 28px;
    }

    .pricing-example-header {
        flex-direction: column;
        gap: 8px;
    }

    .pricing-example h3 {
        font-size: 1rem;
    }

    .services,
    .process,
    .pricing,
    .about,
    .contact {
        padding: 64px 0;
    }
}