:root {
  --almaida-primary: #2563EB;
  --almaida-accent: #10B981;
  --almaida-dark: #111827;
  --almaida-muted: #6B7280;
  --almaida-bg: #FFFFFF;
  --almaida-soft: #F8FAFC;
  --almaida-border: #E5E7EB;
  --almaida-white: #FFFFFF;
  --almaida-radius: 24px;
  --almaida-shadow: 0 22px 60px rgba(17, 24, 39, 0.09);
  --almaida-shadow-soft: 0 12px 30px rgba(17, 24, 39, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--almaida-bg);
  color: var(--almaida-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--almaida-muted); }
h1, h2, h3, h4 { margin: 0; color: var(--almaida-dark); line-height: 1.08; letter-spacing: -0.04em; }
h1 { font-size: clamp(2.65rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: 1.15rem; }

.screen-reader-text {
  position: absolute;
  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;
  top: 16px;
  left: 16px;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: var(--almaida-dark);
  color: #fff;
  clip: auto;
}

.almaida-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.almaida-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229,231,235,0.8);
  transition: box-shadow .25s ease, background .25s ease;
}
.admin-bar .almaida-header { top: 32px; }
.almaida-header.is-scrolled { box-shadow: 0 14px 40px rgba(17,24,39,.08); background: rgba(255,255,255,.96); }
.almaida-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.almaida-brand { display: flex; align-items: center; flex: 0 0 auto; }
.almaida-logo-text, .almaida-footer-logo {
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: -0.06em;
  color: var(--almaida-dark);
}
.custom-logo-link img { max-height: 54px; width: auto; display: block; }
.almaida-navigation { margin-left: auto; }
.almaida-nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}
.almaida-nav-menu a {
  display: inline-flex;
  color: #374151;
  font-size: .94rem;
  font-weight: 700;
  transition: color .2s ease;
}
.almaida-nav-menu a:hover, .almaida-nav-menu a:focus { color: var(--almaida-primary); }
.almaida-header-cta { flex: 0 0 auto; }
.almaida-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--almaida-border);
  background: #fff;
  padding: 0;
  margin-left: auto;
  cursor: pointer;
}
.almaida-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--almaida-dark);
  margin: 4px auto;
  border-radius: 10px;
}

.almaida-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}
.almaida-btn:hover { transform: translateY(-2px); }
.almaida-btn-primary {
  background: linear-gradient(135deg, var(--almaida-primary), #1D4ED8);
  color: #fff;
  box-shadow: 0 16px 32px rgba(37, 99, 235, .24);
}
.almaida-btn-secondary {
  background: #fff;
  color: var(--almaida-dark);
  border-color: var(--almaida-border);
  box-shadow: var(--almaida-shadow-soft);
}
.almaida-btn-light {
  background: #fff;
  color: var(--almaida-primary);
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}
.almaida-btn-small { min-height: 44px; padding: 0 18px; font-size: .92rem; }
.almaida-btn-inline { margin-top: 22px; }

.almaida-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 15% 12%, rgba(37,99,235,.09), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(16,185,129,.08), transparent 32%),
    var(--almaida-bg);
}
.almaida-hero:after {
  content: "";
  position: absolute;
  inset: auto -10% 0 auto;
  width: 480px;
  height: 480px;
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(16,185,129,.10));
  filter: blur(40px);
  border-radius: 999px;
  pointer-events: none;
}
.almaida-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: 56px;
  align-items: center;
}
.almaida-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  color: var(--almaida-primary);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.almaida-hero-text {
  max-width: 690px;
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}
.almaida-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.almaida-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.almaida-hero-points span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--almaida-border);
  border-radius: 999px;
  color: #374151;
  background: rgba(255,255,255,.74);
  font-size: .88rem;
  font-weight: 800;
}
.almaida-hero-visual { display: flex; justify-content: center; }
.almaida-dashboard-card {
  width: min(100%, 430px);
  padding: 22px;
  border: 1px solid rgba(229,231,235,.92);
  border-radius: 34px;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--almaida-shadow);
  position: relative;
}
.almaida-dashboard-card:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(37,99,235,.22), rgba(16,185,129,.14), transparent 60%);
  z-index: -1;
}
.almaida-card-topline { display: flex; gap: 8px; margin-bottom: 20px; }
.almaida-card-topline span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--almaida-border);
}
.almaida-card-topline span:nth-child(1) { background: #F87171; }
.almaida-card-topline span:nth-child(2) { background: #FBBF24; }
.almaida-card-topline span:nth-child(3) { background: #34D399; }
.almaida-score-card {
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--almaida-dark), #1F2937);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.almaida-score-card:after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.almaida-score-card p { color: rgba(255,255,255,.72); font-weight: 800; }
.almaida-score-card h2 { margin-top: 8px; color: #fff; font-size: clamp(1.7rem, 4vw, 2.5rem); }
.almaida-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.almaida-metric-row div {
  padding: 16px 12px;
  background: var(--almaida-soft);
  border: 1px solid var(--almaida-border);
  border-radius: 20px;
  text-align: center;
}
.almaida-metric-row strong { display: block; color: var(--almaida-dark); font-size: 1.1rem; }
.almaida-metric-row span { display: block; color: var(--almaida-muted); font-size: .78rem; font-weight: 750; }
.almaida-check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}
.almaida-check-list li {
  padding: 13px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--almaida-border);
  color: #374151;
  font-weight: 760;
}
.almaida-check-list li:before { content: "✓"; color: var(--almaida-accent); margin-right: 8px; font-weight: 950; }

.almaida-section { padding: 88px 0; }
.almaida-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.almaida-section-head p:not(.almaida-eyebrow) { margin-top: 16px; font-size: 1.05rem; }
.almaida-trust { padding-top: 34px; }
.almaida-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.almaida-trust-card, .almaida-service-card, .almaida-portfolio-card, .almaida-form-shell, .almaida-contact-card {
  background: #fff;
  border: 1px solid var(--almaida-border);
  border-radius: var(--almaida-radius);
  box-shadow: var(--almaida-shadow-soft);
}
.almaida-trust-card { padding: 24px; }
.almaida-icon-dot {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(37,99,235,.09);
  color: var(--almaida-primary);
  font-weight: 950;
  margin-bottom: 18px;
}
.almaida-trust-card h3 { margin-bottom: 10px; }

.almaida-two-col { background: var(--almaida-soft); }
.almaida-two-col-grid, .almaida-why-grid, .almaida-contact-grid, .almaida-faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.almaida-section-copy { position: sticky; top: 120px; }
.almaida-section-copy p:not(.almaida-eyebrow) { margin-top: 18px; font-size: 1.05rem; }
.almaida-rich-text p + p { margin-top: 18px; }
.almaida-rich-text { font-size: 1.06rem; }

.almaida-card-grid { display: grid; gap: 20px; }
.almaida-card-grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.almaida-card-grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.almaida-service-card {
  padding: 30px;
  min-height: 236px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.almaida-service-card:hover, .almaida-portfolio-card:hover, .almaida-trust-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37,99,235,.32);
  box-shadow: var(--almaida-shadow);
}
.almaida-service-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--almaida-primary);
  font-weight: 950;
}
.almaida-service-card h3, .almaida-portfolio-card h3 { margin-bottom: 12px; }

.almaida-why { background: linear-gradient(180deg, #fff, #F8FAFC); }
.almaida-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.almaida-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--almaida-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--almaida-shadow-soft);
}
.almaida-feature-item span {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(16,185,129,.12);
  color: var(--almaida-accent);
  font-weight: 950;
}
.almaida-feature-item p { color: #374151; font-weight: 800; }

.almaida-portfolio { background: #fff; }
.almaida-portfolio-card { padding: 26px; }
.almaida-portfolio-badge {
  display: inline-flex;
  padding: 7px 10px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  color: var(--almaida-primary);
  font-size: .78rem;
  font-weight: 900;
}

.almaida-process { background: var(--almaida-soft); }
.almaida-process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 14px;
}
.almaida-process-step {
  position: relative;
  padding: 24px;
  border: 1px solid var(--almaida-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--almaida-shadow-soft);
}
.almaida-process-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 15px;
  background: var(--almaida-primary);
  color: #fff;
  font-weight: 950;
}
.almaida-process-step h3 { margin-bottom: 10px; }

.almaida-cta-section { padding: 72px 0; }
.almaida-cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 7vw, 72px);
  border-radius: 34px;
  background: linear-gradient(135deg, var(--almaida-primary), #1D4ED8 58%, var(--almaida-accent));
  color: #fff;
  text-align: center;
  box-shadow: 0 28px 70px rgba(37,99,235,.28);
}
.almaida-cta-card:after {
  content: "";
  position: absolute;
  inset: -60px auto auto -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.almaida-cta-card h2 { color: #fff; }
.almaida-cta-card p { max-width: 680px; margin: 16px auto 28px; color: rgba(255,255,255,.86); }

.almaida-faq-grid { grid-template-columns: .82fr 1.18fr; }
.almaida-faq-list { display: grid; gap: 12px; }
.almaida-faq-item {
  border: 1px solid var(--almaida-border);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--almaida-shadow-soft);
}
.almaida-faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--almaida-dark);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}
.almaida-faq-item button strong { color: var(--almaida-primary); font-size: 1.3rem; }
.almaida-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.almaida-faq-answer p { padding: 0 22px 20px; }
.almaida-faq-item.is-open .almaida-faq-answer { max-height: 260px; }
.almaida-faq-item.is-open button strong { transform: rotate(45deg); }

.almaida-contact { background: var(--almaida-soft); }
.almaida-contact-grid { align-items: stretch; }
.almaida-contact-card { padding: clamp(30px, 5vw, 48px); }
.almaida-contact-card p:not(.almaida-eyebrow) { margin-top: 18px; font-size: 1.05rem; }
.almaida-contact-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.almaida-form-shell { padding: clamp(24px, 4vw, 34px); }
.almaida-placeholder-form { display: grid; gap: 14px; }
.almaida-placeholder-form label { display: grid; gap: 6px; color: var(--almaida-dark); font-weight: 800; }
.almaida-placeholder-form input,
.almaida-placeholder-form textarea,
.almaida-form-shell input,
.almaida-form-shell textarea,
.almaida-form-shell select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--almaida-border);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--almaida-dark);
  background: #fff;
  outline: none;
}
.almaida-placeholder-form textarea, .almaida-form-shell textarea { min-height: 116px; resize: vertical; }
.almaida-placeholder-form input:focus,
.almaida-placeholder-form textarea:focus,
.almaida-form-shell input:focus,
.almaida-form-shell textarea:focus,
.almaida-form-shell select:focus {
  border-color: var(--almaida-primary);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}
.almaida-form-note { font-size: .86rem; }

.almaida-footer {
  padding: 64px 0 28px;
  background: #0B1220;
  color: #fff;
}
.almaida-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr .9fr;
  gap: 36px;
}
.almaida-footer-logo { color: #fff; display: inline-flex; margin-bottom: 12px; }
.almaida-footer h3 { color: #fff; margin-bottom: 14px; font-size: 1rem; }
.almaida-footer p { color: rgba(255,255,255,.68); }
.almaida-footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.almaida-footer-menu a { color: rgba(255,255,255,.72); }
.almaida-footer-menu a:hover { color: #fff; }
.almaida-footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.almaida-footer-bottom p { font-size: .92rem; }

.almaida-page-header {
  padding: 76px 0;
  background: var(--almaida-soft);
  text-align: center;
}
.almaida-page-content {
  padding: 70px 0;
}
.almaida-content-wrap {
  max-width: 830px;
  margin: 0 auto;
}
.almaida-content-wrap :where(p, ul, ol) { color: #374151; }
.almaida-content-wrap a { color: var(--almaida-primary); text-decoration: underline; }
.almaida-content-wrap h2,
.almaida-content-wrap h3 { margin-top: 1.3em; margin-bottom: .5em; }

.almaida-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.almaida-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .almaida-reveal { opacity: 1; transform: none; transition: none; }
  .almaida-btn, .almaida-service-card, .almaida-portfolio-card, .almaida-trust-card { transition: none; }
}

@media (max-width: 1100px) {
  .almaida-card-grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .almaida-process-list { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 920px) {
  .admin-bar .almaida-header { top: 46px; }
  .almaida-container { width: min(100% - 30px, 1180px); }
  .almaida-header-inner { min-height: 72px; }
  .almaida-menu-toggle { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; }
  .almaida-navigation {
    position: absolute;
    left: 15px;
    right: 15px;
    top: calc(100% + 10px);
    display: none;
    padding: 16px;
    border: 1px solid var(--almaida-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--almaida-shadow);
  }
  .almaida-navigation.is-open { display: block; }
  .almaida-nav-menu { flex-direction: column; align-items: stretch; gap: 0; }
  .almaida-nav-menu a { padding: 12px; border-radius: 12px; }
  .almaida-nav-menu a:hover { background: var(--almaida-soft); }
  .almaida-header-cta { display: none; }
  .almaida-hero { padding-top: 58px; }
  .almaida-hero-grid, .almaida-two-col-grid, .almaida-why-grid, .almaida-contact-grid, .almaida-faq-grid { grid-template-columns: 1fr; gap: 34px; }
  .almaida-section-copy { position: static; }
  .almaida-trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .almaida-card-grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .almaida-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.35rem, 12vw, 3.35rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.45rem); }
  .almaida-section { padding: 64px 0; }
  .almaida-hero { padding-bottom: 52px; }
  .almaida-hero-actions, .almaida-contact-buttons { flex-direction: column; }
  .almaida-btn { width: 100%; min-height: 50px; }
  .almaida-hero-points { align-items: stretch; }
  .almaida-hero-points span { width: 100%; justify-content: center; }
  .almaida-dashboard-card { border-radius: 26px; padding: 16px; }
  .almaida-score-card { padding: 24px; }
  .almaida-metric-row { grid-template-columns: 1fr; }
  .almaida-trust-grid, .almaida-card-grid-3, .almaida-card-grid-4, .almaida-feature-list, .almaida-process-list { grid-template-columns: 1fr; }
  .almaida-service-card { min-height: auto; }
  .almaida-section-head { text-align: left; }
  .almaida-footer { padding-top: 48px; }
}

@media (max-width: 782px) {
  .admin-bar .almaida-header { top: 46px; }
}
.almaida-content-wrap article + article { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--almaida-border); }
.almaida-content-wrap article h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); margin-bottom: 12px; }
.almaida-post-thumbnail { margin-bottom: 28px; }
.almaida-post-thumbnail img { border-radius: 24px; box-shadow: var(--almaida-shadow-soft); }
.comments-area { margin-top: 46px; padding-top: 30px; border-top: 1px solid var(--almaida-border); }
.comment-list { padding-left: 20px; }
