:root {
  --dark: #1f2937;
  --dark-2: #111827;
  --gold: #d6b170;
  --gold-2: #e6c483;
  --gold-light: #f3dfb6;
  --cream: #f8f3ea;
  --white: #ffffff;
  --text: #222222;
  --muted: #5f6368;
  --border: #eadfce;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  direction: rtl;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  text-align: right;
}
body.admin-bar .site-header { top: 32px; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
.container { width: min(1120px, 92%); margin-inline: auto; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link:focus { position: fixed !important; top: 10px; right: 10px; z-index: 9999; width: auto; height: auto; clip: auto; background: #fff; padding: 10px 14px; border-radius: 8px; }

.topbar { background: var(--dark-2); color: var(--white); padding: 10px 0; font-size: 15px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar a { color: var(--gold-light); font-weight: 700; }
.topbar-links { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 223, 206, 0.85);
}
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; min-height: 82px; }
.site-logo-text { display: inline-flex; align-items: center; gap: 12px; color: var(--dark); }
.site-logo-text:hover { color: var(--dark); }
.site-logo-mark { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--dark), #4b3a24); color: var(--gold-light); display: grid; place-items: center; font-weight: 900; letter-spacing: .5px; }
.site-logo-text strong { display: block; font-size: 20px; line-height: 1.2; }
.site-logo-text small { display: block; color: var(--muted); font-size: 13px; }
.custom-logo-link img { max-height: 58px; width: auto; }

.main-navigation { justify-self: center; }
.main-navigation ul { display: flex; gap: 6px; align-items: center; justify-content: center; list-style: none; margin: 0; padding: 0; }
.main-navigation li { position: relative; }
.main-navigation a { display: block; padding: 10px 12px; border-radius: 10px; color: var(--dark); font-weight: 800; font-size: 15px; }
.main-navigation a:hover, .main-navigation .current-menu-item > a { background: #f3eadb; color: var(--dark); }
.header-cta { background: var(--dark); color: #fff; padding: 11px 18px; border-radius: 12px; font-weight: 900; }
.header-cta:hover { background: #2e3b4e; color: #fff; }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 8px; cursor: pointer; }
.menu-toggle span:not(.screen-reader-text) { display: block; height: 3px; background: var(--dark); border-radius: 99px; margin: 6px 0; }

.hero, .page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(214,177,112,.25), transparent 28%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(73, 55, 36, 0.92)),
    url('../img/hero-pattern.svg') center/cover no-repeat;
}
.hero-home { padding: 86px 0 78px; }
.page-hero { padding: 86px 0 76px; }
.compact-hero { padding: 58px 0; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.badge, .eyebrow { display: inline-block; padding: 8px 16px; border-radius: 999px; margin-bottom: 18px; background: rgba(214, 177, 112, 0.18); border: 1px solid rgba(214, 177, 112, 0.65); color: var(--gold-light); font-weight: 900; }
.eyebrow { color: #8c682f; background: #f2e5cd; border-color: #e6d2aa; margin-bottom: 12px; }
.hero h1, .page-hero h1 { font-size: clamp(38px, 5.5vw, 64px); line-height: 1.12; letter-spacing: -1px; margin: 0 0 22px; max-width: 900px; }
.page-hero h1 { max-width: 980px; }
.hero-text { font-size: 21px; color: #f1f1f1; max-width: 780px; margin: 0 0 28px; }
.hero-points { list-style: none; display: grid; gap: 8px; margin: 0 0 28px; padding: 0; color: #f7f7f7; font-size: 17px; }
.hero-points li::before { content: "✓"; color: var(--gold); font-weight: 900; margin-left: 8px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn, .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  transition: .2s ease;
  text-align: center;
}
.btn-primary, .wp-block-button__link { background: var(--gold); color: #171717; }
.btn-primary:hover, .wp-block-button__link:hover { background: var(--gold-2); color: #171717; transform: translateY(-2px); }
.btn-secondary { background: var(--dark); color: #fff; }
.btn-secondary:hover { background: #2e3b4e; color: #fff; transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(255, 255, 255, 0.72); color: var(--white); background: rgba(255, 255, 255, 0.06); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.text-link { display: inline-block; color: #8c682f; font-weight: 900; margin-top: 12px; }
.text-link::after { content: " ←"; }

section { padding: 76px 0; }
.alt-bg { background: var(--white); }
.section-title { text-align: center; max-width: 820px; margin: 0 auto 42px; }
.section-title h2 { color: var(--dark); font-size: clamp(30px, 4vw, 44px); line-height: 1.25; margin: 0 0 12px; }
.section-title p { color: var(--muted); font-size: 19px; margin: 0; }

.cards, .cards-four { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card, .service-box, .content-card, .side-card, .post-card, .contact-details-card {
  background: var(--white);
  border: 1px solid #eeeeee;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(31, 41, 55, 0.07);
}
.alt-bg .service-box { background: var(--cream); border-color: var(--border); }
.icon { width: 48px; height: 48px; border-radius: 15px; background: #f2e5cd; color: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; font-weight: 900; }
.card h3, .service-box h2, .service-box h3, .step h3, .content-card h2, .side-card h3 { color: var(--dark); margin-top: 0; }
.card h3 { font-size: 22px; margin-bottom: 8px; }
.card p, .step p, .service-box li, .service-box p, .side-card p, .content-card p { color: var(--muted); font-size: 16px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-box { background: var(--cream); border-color: var(--border); padding: 30px; }
.service-box h2, .service-box h3 { font-size: 25px; margin-bottom: 12px; }
.service-box ul { padding-right: 20px; margin-bottom: 0; }

.highlight { background: var(--dark); color: var(--white); padding: 62px 0; }
.highlight-inner { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.highlight h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.25; margin: 0 0 10px; }
.highlight p { color: #e7e7e7; max-width: 760px; font-size: 19px; margin: 0; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
.compact-process { grid-template-columns: repeat(3, 1fr); }
.step { position: relative; background: var(--white); border: 1px solid #eeeeee; border-radius: 20px; padding: 24px; box-shadow: 0 8px 24px rgba(31, 41, 55, 0.06); }
.step::before { counter-increment: step; content: counter(step); width: 38px; height: 38px; border-radius: 50%; background: var(--gold); color: #171717; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-bottom: 13px; }
.step h3 { font-size: 19px; margin-bottom: 8px; }

.audience-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; list-style: none; padding: 0; margin: 0; }
.audience-list li { background: var(--cream); border: 1px solid var(--border); padding: 17px 18px; border-radius: 15px; font-weight: 800; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: center; }
.about-image { min-height: 430px; border-radius: 26px; background: linear-gradient(135deg, rgba(31,41,55,.08), rgba(31,41,55,.02)), url('../img/about-abstract.svg') center/cover no-repeat; box-shadow: var(--shadow); }
.about-text h2 { color: var(--dark); font-size: clamp(30px, 4vw, 44px); line-height: 1.25; margin: 0 0 16px; }
.about-text p { color: #4d4d4d; font-size: 18px; margin: 0 0 14px; }

.faq-grid { max-width: 920px; margin: 0 auto; display: grid; gap: 14px; }
details { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 18px 22px; }
summary { cursor: pointer; color: var(--dark); font-size: 19px; font-weight: 900; }
details p { color: var(--muted); margin: 12px 0 0; }

.form-card { background: var(--white); color: var(--text); padding: 32px; border-radius: 24px; box-shadow: 0 24px 65px rgba(0, 0, 0, 0.28); }
.form-card h2 { color: var(--dark); font-size: 28px; line-height: 1.25; margin: 0 0 8px; }
.form-card p { color: var(--muted); margin: 0 0 18px; font-size: 16px; }
.contact-form { display: grid; gap: 13px; }
.contact-form input, .contact-form select, .contact-form textarea,
.search-form input[type="search"] { width: 100%; border: 1px solid #dddddd; border-radius: 11px; padding: 13px 14px; font-family: inherit; font-size: 16px; background: var(--white); color: var(--text); }
.contact-form textarea { min-height: 96px; resize: vertical; }
.form-note { font-size: 13px; color: #777; line-height: 1.5; }
.form-honeypot { display: none !important; }
.form-alert { border-radius: 12px; padding: 12px 14px; margin-bottom: 14px; font-weight: 800; }
.form-alert-success { background: #e9f8ee; color: #176b35; border: 1px solid #bde7c8; }
.form-alert-error { background: #fff0f0; color: #9f2323; border: 1px solid #f1b6b6; }

.content-section { background: var(--cream); }
.narrow-content { max-width: 850px; background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.two-col { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: start; }
.side-card { position: sticky; top: 110px; background: var(--dark); color: #fff; }
.side-card h3 { color: #fff; }
.side-card p { color: #f3f3f3; }
.checked-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checked-list li { color: var(--muted); font-size: 18px; padding-right: 34px; position: relative; }
.checked-list li::before { content: "✓"; position: absolute; right: 0; top: 0; width: 24px; height: 24px; border-radius: 50%; background: #f2e5cd; color: var(--dark); display: grid; place-items: center; font-weight: 900; font-size: 14px; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
.contact-details-card { background: var(--white); }
.contact-details-card h2 { margin-top: 0; color: var(--dark); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card h2 { font-size: 24px; line-height: 1.25; margin-top: 0; }
.post-meta { color: var(--muted); font-size: 14px; }
.pagination-wrap, .navigation.pagination { grid-column: 1 / -1; }

.final-cta { background: linear-gradient(135deg, var(--dark-2), #3b3126); color: var(--white); text-align: center; padding: 82px 0; }
.final-cta h2 { font-size: clamp(34px, 5vw, 54px); line-height: 1.18; margin: 0 0 16px; }
.final-cta p { max-width: 710px; margin: 0 auto 26px; color: #eeeeee; font-size: 20px; }
.site-footer { background: #0f172a; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr 1fr; gap: 32px; padding: 46px 0; }
.site-footer h3 { margin-top: 0; color: #fff; }
.site-footer p, .site-footer li { color: #d8d8d8; }
.site-footer a { color: var(--gold-light); font-weight: 800; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 16px 0; text-align: center; }
.footer-bottom p { margin: 0; }
.floating-whatsapp { position: fixed; left: 20px; bottom: 20px; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 900; box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25); z-index: 50; }
.floating-whatsapp:hover { color: #fff; transform: translateY(-2px); }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .menu-toggle { display: inline-block; order: 3; }
  .header-cta { display: none; }
  .main-navigation { display: none; grid-column: 1 / -1; width: 100%; justify-self: stretch; }
  .main-navigation.is-open { display: block; }
  .main-navigation ul { display: grid; gap: 4px; justify-content: stretch; padding: 12px 0 18px; }
  .main-navigation a { padding: 12px 14px; background: #fbf7f0; }
}
@media (max-width: 980px) {
  body.admin-bar .site-header { top: 46px; }
  .hero-grid, .about-grid, .highlight-inner, .two-col, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .cards-four, .service-grid, .process-grid, .compact-process { grid-template-columns: repeat(2, 1fr); }
  .audience-list, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-inner { text-align: center; }
  .side-card { position: static; }
}
@media (max-width: 640px) {
  body.admin-bar .site-header { top: 0; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-links { justify-content: center; }
  .hero-home, .page-hero { padding: 56px 0 52px; }
  .hero-text { font-size: 18px; }
  .form-card { padding: 22px; }
  .cards-four, .service-grid, .process-grid, .compact-process, .audience-list, .blog-grid { grid-template-columns: 1fr; }
  section { padding: 58px 0; }
  .footer-grid { padding: 34px 0; }
  .floating-whatsapp { width: 54px; height: 54px; left: 14px; bottom: 14px; }
  .site-logo-text small { display: none; }
}
