/*
Theme Name: Instalator Tulcea
Theme URI: https://instalatortulcea.ro/
Author: Copilot
Description: Tema WordPress pentru instalator local in Tulcea, cu pagini separate pentru fiecare serviciu important.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: instalator-tulcea
*/

/* Instalator Tulcea */
:root {
  --bg: #f4f8f8;
  --surface: #ffffff;
  --surface-strong: #e8f3f3;
  --text: #132033;
  --muted: #5d6a7d;
  --line: #d7e3e4;
  --primary: #0f8f8c;
  --primary-dark: #0a5f66;
  --accent: #ff8a3d;
  --accent-soft: #fff0e6;
  --success: #1b9a59;
  --shadow: 0 18px 40px rgba(19, 32, 51, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #e3eeec 0%, #d4e2e0 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(15, 34, 49, 0.96) 0%, rgba(19, 45, 61, 0.94) 100%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 30px rgba(19, 32, 51, 0.16);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  display: block;
  font-size: 17px;
  line-height: 1.05;
  color: #ffffff;
}

.brand-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  flex: 0 1 52px;
  width: 52px;
  min-width: 42px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: none;
}

.brand-logo {
  width: 100%;
  height: 100%;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span {
  opacity: 0;
}

.nav-toggle.is-open::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open::after {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav > a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-desktop-only {
  display: inline-flex;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  font-family: inherit;
}

.nav-dropdown-toggle::after {
  content: "▾";
  font-size: 12px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 0.18s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: translateY(-1px) rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 20;
  display: none;
  min-width: 320px;
  max-height: none;
  overflow: visible;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  gap: 6px;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  background: rgba(15, 143, 140, 0.04);
}

.site-nav > a:hover,
.site-nav > a.is-active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.is-active,
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
  color: #ffffff;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
  color: var(--primary-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 9px 54px 9px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(19, 32, 51, 0.08);
  color: var(--text);
  box-shadow: 0 16px 28px rgba(19, 32, 51, 0.08);
}

.header-cta > span {
  display: grid;
  gap: 4px;
  line-height: 1;
}

.header-cta::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24c1.11.37 2.3.56 3.57.56a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.06 21 3 13.94 3 5a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.27.19 2.46.56 3.57a1 1 0 0 1-.24 1.02l-2.2 2.2Z' fill='%23ffffff'/%3E%3C/svg%3E"), linear-gradient(135deg, var(--accent) 0%, #ff6e24 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 14px 14px, 100% 100%;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  box-shadow: 0 12px 20px rgba(255, 110, 36, 0.2);
}

.header-cta strong {
  display: block;
  font-size: 18px;
  line-height: 1;
  color: var(--text);
}

.header-cta > span > span {
  display: block;
  margin-top: 0;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-main {
  display: block;
}

.hero {
  padding: 54px 0 88px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: stretch;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
  gap: 26px;
  align-items: stretch;
  padding: 22px;
  border-radius: 40px;
  background: linear-gradient(180deg, #f4fbfb 0%, #e8f4f3 100%);
  border: 1px solid rgba(15, 143, 140, 0.12);
  box-shadow: var(--shadow);
}

.hero-copy-panel {
  background:
    radial-gradient(ellipse 60% 40% at 20% 10%, rgba(14, 165, 233, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 30% at 90% 80%, rgba(245, 158, 11, 0.08), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  color: #0b1220;
  border-radius: 36px;
  padding: 42px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(186, 230, 253, 0.45);
}

.page-hero-copy {
  background: linear-gradient(155deg, #ffffff 0%, #f5fbfb 55%, #eef8f7 100%);
  color: var(--text);
  border-radius: 34px;
  padding: 28px 38px 38px;
  box-shadow: inset 0 0 0 1px rgba(15, 143, 140, 0.08);
  position: relative;
  overflow: hidden;
}

.hero-copy-panel::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 40px;
  width: 288px;
  height: 288px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  filter: blur(60px);
  pointer-events: none;
}

.page-hero-copy::before {
  content: "";
  position: absolute;
  inset: -10% auto auto 70%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 143, 140, 0.18) 0%, rgba(15, 143, 140, 0) 72%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero .eyebrow,
.hero-copy-panel .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(186, 230, 253, 0.7);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(12px);
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.005em;
}
.hero .eyebrow::before,
.hero-copy-panel .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #10b981;
  animation: apx-blink 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.cta-panel .eyebrow {
  color: #9fe6df;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.page-hero-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin: 10px 0 0;
}

.page-hero-topline .eyebrow {
  opacity: 0.72;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.page-hero-topline .eyebrow::before {
  width: 18px;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero h1 {
  color: #0b1220;
}

.page-hero h1 {
  color: #132033;
  font-size: clamp(38px, 5.5vw, 72px);
  margin: 0;
}

.hero h1 span,
.page-hero h1 span {
  display: block;
  margin-top: 10px;
  color: #0369a1;
  font-size: clamp(20px, 2.5vw, 32px);
  letter-spacing: normal;
}

.page-hero h1 span {
  color: var(--primary-dark);
}

.hero-copy-panel > p:last-of-type,
.page-hero-desc {
  margin: 22px 0 0;
  max-width: 720px;
  color: #475569;
  font-size: 20px;
}

.home .hero-copy-panel {
  border: 1px solid rgba(186, 230, 253, 0.5);
  box-shadow: 0 16px 48px -12px rgba(8, 47, 73, 0.2);
}

.home .hero-copy-panel > p:last-of-type {
  color: #475569;
}

.home .hero h1 span {
  color: #0369a1;
}

.page-hero-lead {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.page-hero-desc {
  margin: 0;
  color: var(--muted);
  max-width: none;
  font-size: 16px;
}

.page-hero-desc.is-primary {
  color: var(--text);
  font-size: 18px;
}

.hero-actions,
.page-hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) {
  .hero .hero-actions {
    flex-direction: row;
    align-items: center;
  }
}

.cta-panel .hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, 290px);
  max-width: 290px;
  flex: 0 0 290px;
}

.cta-panel .hero-actions .btn {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-label {
  display: inline-block;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff6e24 100%);
  color: #fff;
  box-shadow: 0 16px 26px rgba(255, 110, 36, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.page-hero .btn-secondary {
  background: rgba(19, 32, 51, 0.04);
  color: var(--text);
  border: 1px solid rgba(19, 32, 51, 0.12);
}

.btn-dark {
  background: var(--text);
  color: #fff;
}

.hero-trust,
.page-hero-points {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-item,
.point-chip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero .trust-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(241, 245, 249, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.24);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.hero .trust-item strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0c4a6e;
  line-height: 1.1;
}
.hero .trust-item span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.home .trust-item {
  background: rgba(241, 245, 249, 0.88);
  border-color: rgba(148, 163, 184, 0.28);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.home .trust-item strong {
  color: #0c4a6e;
}

.home .trust-item span {
  color: #64748b;
}

.point-chip {
  color: var(--text);
  background: var(--surface);
  border-color: rgba(15, 143, 140, 0.12);
}

.page-hero-coverage {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.page-hero-coverage strong {
  color: var(--primary-dark);
}

.page-hero-points {
  margin-top: 18px;
}

.trust-item strong,
.point-chip strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
}

.trust-item span,
.point-chip span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.point-chip span {
  color: var(--muted);
}

.hero-side,
.page-hero-side {
  display: grid;
  gap: 22px;
}

.hero-visual,
.page-hero-visual,
.placeholder-frame {
  min-height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #dff3f2 0%, #c6e7e5 100%);
  box-shadow: var(--shadow);
}

.home .hero-visual {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-visual img,
.page-hero-visual img,
.placeholder-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel,
.info-panel,
.cta-panel,
.section-card,
.faq-item,
.service-card,
.mini-card,
.area-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
}

.home .hero-panel {
  background: linear-gradient(180deg, #ffffff 0%, #e2f2f1 100%);
  border-color: rgba(15, 143, 140, 0.2);
  box-shadow: 0 20px 34px rgba(19, 32, 51, 0.12);
}

.home .panel-label {
  color: var(--primary-dark);
}

.home .panel-title {
  color: #132033;
}

.home .panel-list li {
  color: #334456;
}

.home .hero .btn-secondary {
  background: #f1f5f9;
  color: #0c4a6e;
  border: 1px solid rgba(148, 163, 184, 0.38);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.home .hero .btn-secondary:hover {
  background: #ffffff;
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.panel-label {
  margin: 0;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-title {
  margin: 14px 0 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
}

.panel-list,
.check-list,
.local-list,
.service-bullets,
.faq-answer ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.panel-list li,
.check-list li,
.local-list li,
.service-bullets li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 16px;
}

.panel-list a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(93, 106, 125, 0.28);
  text-underline-offset: 2px;
}

.panel-list a:hover {
  color: var(--primary-dark);
  text-decoration-color: currentColor;
}

.panel-list li::before,
.check-list li::before,
.local-list li::before,
.service-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.section {
  padding: 92px 0;
  background: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(15, 143, 140, 0.06);
  border-bottom: 1px solid rgba(15, 143, 140, 0.06);
}

.section-alt {
  background: linear-gradient(180deg, rgba(15, 143, 140, 0.14) 0%, rgba(15, 143, 140, 0.08) 100%);
}

.section-header {
  max-width: 860px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-header h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-header p {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

#despre-noi .split-section > .info-panel {
  align-self: center;
}

.copy-stack {
  display: grid;
  gap: 22px;
}

.copy-stack h3,
.content-card h3,
.area-card h3,
.faq-question {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 900;
}

.copy-stack p,
.content-card p,
.area-card p,
.faq-answer p,
.service-card p,
.mini-card p,
.lead-copy {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-grid.secondary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-benefits-grid .service-card {
  gap: 14px;
  padding: 24px;
  justify-content: flex-start;
}

.service-benefits-grid .service-card p {
  font-size: 16px;
  line-height: 1.5;
}

.service-benefits-grid .service-benefit-note {
  margin-top: 0;
  padding-top: 0;
  font-size: 16px;
  line-height: 1.56;
  color: var(--muted);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  overflow: hidden;
  min-height: 100%;
}

.service-card.featured {
  padding: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfc 100%);
}

.home .service-card {
  padding: 20px;
  justify-content: flex-start;
  min-height: 256px;
  border: 0;
  color: #ffffff;
  background-color: #0f1d2f;
  background-image: none;
  box-shadow: 0 24px 38px rgba(19, 32, 51, 0.18);
  isolation: isolate;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home .service-card[data-service-card-url] {
  cursor: pointer;
}

.home .service-card.featured {
  padding: 20px;
  background-color: #0f1d2f;
}

.home .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(180deg, rgba(2, 4, 8, 0.16) 0%, rgba(2, 4, 8, 0.08) 100%), linear-gradient(180deg, rgba(5, 8, 15, 0.34) 0%, rgba(5, 8, 15, 0.42) 38%, rgba(5, 8, 15, 0.56) 100%), var(--service-card-image);
  background-size: cover, cover, cover;
  background-position: center, center, center right;
  background-repeat: no-repeat, no-repeat, no-repeat;
  transform: scale(1);
  filter: brightness(0.9);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home .service-card::after {
  content: "" !important;
  position: absolute;
  left: -1%;
  top: 6%;
  bottom: 6%;
  width: 30%;
  z-index: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(8, 18, 31, 0.82) 0%, rgba(10, 23, 38, 0.66) 48%, rgba(12, 25, 40, 0.2) 82%, rgba(12, 25, 40, 0) 100%);
  filter: blur(28px);
  opacity: 0.94;
}

.home .service-card > * {
  position: relative;
  z-index: 1;
}

.home .service-card-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  align-content: start;
  column-gap: 18px;
  row-gap: 13px;
  width: 100%;
  max-width: none;
  min-height: 100%;
}

.home .service-card-head {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: 100%;
  grid-column: 1 / -1;
}

.home .service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff922e 0%, #ff7318 100%);
  color: #ffffff;
  box-shadow: 0 12px 18px rgba(255, 115, 24, 0.18);
}

.home .service-card-icon svg {
  width: 38px;
  height: 38px;
}

.home .service-card-icon .service-icon-recent {
  width: 42px;
  height: 42px;
  position: relative;
  top: 2px;
  flex-shrink: 0;
  transform-origin: center;
}

.home .service-card-icon .service-icon-recent-lower-large {
  width: 46px;
  height: 46px;
  top: 5px;
}

.home .service-card-icon .service-icon-recent-ac-install {
  width: 45px;
  height: 45px;
  top: 4px;
}

.home .service-card-icon .service-icon-recent-large {
  width: 45px;
  height: 45px;
}

.home .service-card-icon .service-icon-heating {
  width: 45px;
  height: 45px;
}

.home .service-card-icon .service-icon-heating-install {
  transform: scale(1.15);
}

.home .service-card-icon .service-icon-heating-repair {
  transform: translateX(3px) scale(1.17);
}

.home .service-card-icon .service-icon-heating-boiler {
  width: 47px;
  height: 47px;
  transform: translateY(2px) scale(1.22);
}

.home .service-card-icon .service-icon-sanitare-xl {
  width: 62px;
  height: 62px;
  top: 6px;
}

.home .service-card-icon .service-icon-nonstop-xl {
  width: 60px;
  height: 60px;
  top: 3px;
}

.home .service-card-icon .service-icon-ac-install-xl {
  width: 58px;
  height: 58px;
  top: 3px;
}

.home .service-card-icon .service-icon-ac-service-xl {
  width: 48px;
  height: 48px;
  top: 7px;
}

.home .service-card-icon .service-icon-curatare-xl {
  width: 56px;
  height: 56px;
  top: 1px;
}

.home .service-card-icon .service-icon-detectare-xl {
  width: 56px;
  height: 56px;
  top: 9px;
}

.home .service-card-icon .service-icon-boiler-xl {
  width: 48px;
  height: 48px;
  top: 3px;
}

.home .service-card-icon .service-icon-pipe-lower {
  width: 42px;
  height: 42px;
  top: 2px;
}

.home .service-card-icon .service-icon-racordare-strong {
  width: 47px;
  height: 47px;
  top: 3px;
}

.home .service-card-icon .service-icon-racordare-strong path {
  stroke: currentColor;
  stroke-width: 1.05px;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  paint-order: stroke fill;
}

.home .service-card-icon .service-icon-heating-install-strong {
  transform: translateY(2px) scale(1.2);
  stroke-width: 1.16;
}

.home .service-card-icon .service-icon-heating-install-strong * {
  vector-effect: non-scaling-stroke;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

.service-card h3,
.mini-card h3 {
  margin: 18px 0 12px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
}

.home .service-card h3 {
  margin: 0;
  color: #ffffff;
  text-align: left;
  font-size: 20px;
  line-height: 1.1;
  width: 100%;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff6e24 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: center;
  box-shadow: 0 16px 26px rgba(255, 110, 36, 0.22);
}

.home .card-link {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.card-link:hover {
  color: #fff;
  transform: translateY(-1px);
}

.service-card p {
  margin-bottom: 24px;
}

.home .service-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  line-clamp: 5;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
  grid-column: 1 / -1;
}

.home .service-card-divider {
  grid-column: 1 / -1;
  width: 100%;
  height: 1px;
  margin: 1px 0 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.15) 55%, rgba(255, 255, 255, 0.02) 100%);
}

.home .service-card-points-primary {
  grid-column: 1 / -1;
  align-self: start;
}

.home .service-card-points-primary + .service-card-points {
  margin-top: -5px;
}

.home .service-card-points-primary li::before {
  top: 3px;
}

.home .service-card-points {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  position: relative;
  align-self: start;
}

.home .service-card-points::before {
  content: none;
  display: none;
}

.home .service-card-points li {
  position: relative;
  padding-left: 23px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.35;
}

.home .service-card-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8.3l2.3 2.3L12 4.9' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), linear-gradient(180deg, #ff922e 0%, #ff7318 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 10px 10px, 100% 100%;
  box-shadow: 0 0 0 2px rgba(255, 146, 46, 0.16), 0 6px 14px rgba(255, 115, 24, 0.2);
}

.home .service-card .card-link {
  min-height: 42px;
  margin-top: 0;
  padding: 9px 48px 9px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: radial-gradient(circle at 100% 0%, rgba(255, 139, 45, 0.46) 0%, rgba(255, 139, 45, 0.2) 13%, rgba(255, 139, 45, 0) 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.008) 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: flex-start;
  box-shadow: 0 10px 20px rgba(4, 6, 12, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  justify-self: end;
  align-self: end;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1), filter 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home .service-card .card-link::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.014) 34%, rgba(255, 255, 255, 0.006) 100%);
  opacity: 0.78;
}

.home .service-card .card-link::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 12px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.home .service-card .card-link span,
.home .service-card .card-link {
  position: relative;
  z-index: 1;
}

.home .service-card .card-link {
  backdrop-filter: blur(18px) saturate(120%);
}

.home .service-card .card-link {
  --card-arrow-shift: 0px;
}

.home .service-card .card-link::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24' fill='none' stroke='%23ff8b2d' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3l8 9-8 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 16px;
  transform: translateY(-50%) translateX(var(--card-arrow-shift));
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1), background-size 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 52px rgba(19, 32, 51, 0.24);
}

.home .service-card:hover::before {
  transform: scale(1.055);
  filter: brightness(0.95);
}

.home .service-card:hover::after {
  opacity: 0.78;
}

.home .service-card:hover .card-link {
  filter: brightness(1.04);
  box-shadow: 0 14px 26px rgba(4, 6, 12, 0.16), 0 0 18px rgba(255, 139, 45, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home .service-card:hover .card-link::after {
  --card-arrow-shift: 2px;
  background-size: 11px 16px;
}

.mini-grid,
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mini-card,
.area-card,
.content-card,
.info-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.cta-panel {
  padding: 28px;
}

.mini-card strong {
  display: block;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
}

.mini-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.compact-card {
  gap: 10px;
  padding: 22px 24px;
}

.local-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.local-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid {
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 900;
  font-size: 20px;
}

.faq-answer {
  color: var(--text);
  padding: 0 24px 24px;
}

.faq-question,
.faq-answer p,
.faq-answer li {
  color: var(--text);
}

.faq-answer a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(10, 95, 102, 0.32);
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--primary);
  text-decoration-color: currentColor;
}

.faq-answer[hidden] {
  display: none;
}

.cta-band {
  padding: 44px 0 92px;
}

.cta-panel {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #132033 0%, #18304c 60%, #0b6071 100%);
  color: #fff;
  border: 0;
}

.cta-panel > :first-child {
  min-width: 0;
  flex: 1 1 auto;
}

.cta-panel h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.cta-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  padding: 54px 0 48px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.page-hero .breadcrumbs {
  color: rgba(19, 32, 51, 0.56);
  margin-bottom: 0;
  font-size: 11px;
  letter-spacing: 0.02em;
  opacity: 0.72;
}

.breadcrumbs a:hover {
  color: #fff;
}

.page-hero .breadcrumbs a:hover {
  color: var(--primary-dark);
}

.page-hero-visual {
  min-height: 320px;
  background: linear-gradient(145deg, #cfeeed 0%, #b7e1df 100%);
  border: 1px solid rgba(15, 143, 140, 0.12);
}

.page-hero-panel {
  border-color: rgba(15, 143, 140, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfc 100%);
}

.page-content-grid {
  display: grid;
  gap: 28px;
}

.dual-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
}

.sticky-box {
  position: sticky;
  top: 110px;
}

.site-footer {
  background: #132033;
  color: rgba(255, 255, 255, 0.76);
  padding: 72px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.footer-grid h4 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
}

.kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #9a4a10;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .hero-shell,
  .page-hero-shell,
  .split-section,
  .dual-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-grid.secondary,
  .local-grid,
  .stats-row,
  .lead-grid,
  .service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-box {
    position: static;
  }
}

@media (max-width: 920px) {
  .home .service-card-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    max-width: none;
  }

  .home .service-card .card-link {
    justify-self: end;
    align-self: end;
    margin-top: 0;
  }

  .home .service-card::after {
    left: 0;
    top: 6%;
    bottom: 6%;
    width: 33%;
  }

  .nav-toggle {
    display: inline-block;
    order: 3;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-copy {
    gap: 2px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 14px;
    background: rgba(15, 143, 140, 0.04);
    color: var(--text);
  }

  .nav-desktop-only {
    display: none !important;
  }

  .site-nav > a:hover,
  .site-nav > a.is-active,
  .nav-dropdown-toggle:hover,
  .nav-dropdown-toggle.is-active {
    color: var(--primary-dark);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    margin: 0;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    max-height: none;
    margin-top: 10px;
    padding: 0 0 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-dropdown-menu a {
    background: rgba(15, 143, 140, 0.06);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
    order: 2;
    padding: 9px 10px 9px 38px;
    border-radius: 18px;
  }

  .header-cta::after {
    left: 7px;
    right: auto;
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .header-cta strong {
    font-size: 15px;
  }

  .header-cta > span > span {
    display: none;
  }

  .hero-copy-panel,
  .page-hero-copy {
    padding: 30px;
    border-radius: 26px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(36px, 10vw, 62px);
  }
}

@media (max-width: 650px) {
  .cta-panel {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .cta-panel > :first-child {
    width: 100%;
  }

  .cta-panel .hero-actions {
    width: 100%;
    max-width: none;
    flex: 1 1 auto;
    justify-items: stretch;
  }
}

@media (max-width: 640px) {
  .home .service-card {
    min-height: 288px;
    background-position: center;
    transform: translateY(0);
    transform-origin: center center;
    box-shadow: 0 24px 38px rgba(19, 32, 51, 0.18);
  }

  .home .service-card::before {
    transform: scale(1);
    filter: brightness(0.9);
  }

  .home .service-card::after {
    opacity: 0.94;
  }

  .home .service-card .card-link {
    filter: none;
    box-shadow: 0 10px 20px rgba(4, 6, 12, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .home .service-card .card-link::after {
    --card-arrow-shift: 0px;
    background-size: 10px 16px;
  }

    .home .service-card-points li {
      padding-left: 24px;
    }

    .home .service-card-points li::before {
      left: 0;
      top: 50%;
      transform: translateY(-50%);
    }

    .home .service-card-points-primary li::before {
      top: 50%;
      transform: translateY(-50%);
    }

  .home .service-card.is-mobile-focused {
    transform: scale(1.035);
    box-shadow: 0 34px 60px rgba(19, 32, 51, 0.26);
  }

  .home .service-card.is-mobile-focused::before {
    transform: scale(1.07);
    filter: brightness(0.95);
  }

  .home .service-card.is-mobile-focused::after {
    opacity: 0.78;
  }

  .home .service-card.is-mobile-focused .card-link {
    filter: brightness(1.04);
    box-shadow: 0 14px 26px rgba(4, 6, 12, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .home .service-card.is-mobile-focused .card-link::after {
    --card-arrow-shift: 2px;
    background-size: 11px 16px;
  }

  .home .service-card-shell {
    width: 100%;
  }

  .home .service-card::after {
    left: 0;
    top: 0;
    bottom: 0;
    width: 42%;
    border-radius: 0 40px 40px 0;
    background: linear-gradient(90deg, rgba(8, 18, 31, 0.84) 0%, rgba(10, 23, 38, 0.68) 48%, rgba(12, 25, 40, 0.2) 82%, rgba(12, 25, 40, 0) 100%);
    filter: blur(28px);
    opacity: 0.94;
  }

  .home .service-card-shell {
    max-width: 100%;
  }

  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .section,
  .cta-band {
    padding: 68px 0;
  }

  .hero,
  .page-hero {
    padding: 15px 0;
  }

  .stats-row,
  .service-grid,
  .service-grid.secondary,
  .service-benefits-grid,
  .local-grid,
  .lead-grid,
  .service-detail-grid,
  .hero-trust,
  .page-hero-points {
    grid-template-columns: 1fr;
  }

  .faq-toggle {
    padding: 14px 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
  }

  .faq-question {
    font-size: 18px;
    line-height: 1.26;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
    margin-top: 0;
  }

  .faq-answer {
    padding: 14px 18px 18px;
  }

  .faq-answer p {
    font-size: 15px;
    line-height: 1.6;
  }

  .cta-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-panel .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
    flex-basis: auto;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy span {
    display: block;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .header-cta {
    padding: 7px 10px 7px 31px;
  }

  .header-cta strong {
    font-size: 13px;
  }

  .header-cta::after {
    left: 6px;
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
}

@media (max-width: 465px) {
  .header-row {
    gap: 10px;
    min-height: 72px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    min-width: 38px;
    border-radius: 13px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .nav-toggle span,
  .nav-toggle::before,
  .nav-toggle::after {
    width: 18px;
    margin: 4px auto;
  }

  .header-cta {
    padding: 6px 9px 6px 29px;
    border-radius: 16px;
  }

  .header-cta strong {
    font-size: 12px;
  }

  .header-cta::after {
    left: 5px;
    width: 18px;
    height: 18px;
    background-size: 10px 10px, 100% 100%;
  }
}

@media (max-width: 430px) {
  .hero .hero-actions,
  .cta-panel .hero-actions,
  .page-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
  }

  .hero .hero-actions .btn,
  .cta-panel .hero-actions .btn,
  .page-hero-actions .btn {
    position: relative;
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }

  .hero .hero-actions .btn-with-icon,
  .cta-panel .hero-actions .btn-with-icon,
  .page-hero-actions .btn-with-icon {
    padding-left: 50px;
  }

  .hero .hero-actions .btn-with-icon .btn-icon,
  .cta-panel .hero-actions .btn-with-icon .btn-icon,
  .page-hero-actions .btn-with-icon .btn-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
  }

  .hero .hero-actions .btn-label,
  .cta-panel .hero-actions .btn-label,
  .page-hero-actions .btn-label {
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }
}

@keyframes apx-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

