/* SiteSimple.net — FINAL — 100% local */

/* === FONTS (TTF) === */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "League Spartan";
  src: url("../fonts/LeagueSpartan-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: block;
}

/* === VARIABLES === */
:root {
  --color-bg: #ffffff;
  --color-text: #252525;
  --color-lead: #2e2e2e;
  --color-accent: #3c8f69;
  --color-accent-h: #46ad7f;
  --color-accent-light: #63a587;
  --color-h6: #3d38ff;
  --color-gray: #a8a8a8;
  --color-light: #f2f2f2;
  --color-footer: #fafafa;
  --color-dark: #101015;
  --color-badge: #f2f3fe;
  --color-green-l: #7ec97e;
  --color-border: #5e835e;
  --color-sep: #929292;
  --color-pink: #f4a5a0;
  --max-w: 1100px;
  --content-w: 1080px;
  --btn-r: 8px;
  --btn-b: 3px;
  --nav-h: 90px;
  --nav-h-s: 60px;
}

/* === RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  overflow-x: clip;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.25s;
}
a:hover {
  color: var(--color-accent-h);
}
ul,
ol {
  list-style: none;
}

/* === TYPOGRAPHY === */
h1 {
  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
}
h2 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
}
h3 {
  font-size: 35px;
  line-height: 45px;
  font-weight: 700;
}
h4 {
  font-size: 26px;
  line-height: 38px;
  font-weight: 500;
}
h5 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}
h6 {
  font-size: 15px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-h6);
  display: inline-block;
  padding: 4px 20px 4px 12px;
  background: var(--color-badge);
  border-radius: 13px;
  margin-bottom: 25px;
}
h1,
h2,
h3,
h4,
h5 {
  color: var(--color-text);
}
.lead {
  font-size: 17px;
  line-height: 30px;
  font-weight: 500;
  color: var(--color-lead);
}
.text-gray {
  color: var(--color-gray);
}
.text-accent {
  color: var(--color-accent);
}
.text-white {
  color: #fff;
}
.text-center {
  text-align: center;
}

/* Stabilo — thin line highlighter on titles */
.stabilo {
  position: relative;
  display: inline;
  white-space: nowrap;
}
.stabilo::before {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: 2px;
  height: 12%;
  background: var(--color-green-l);
  transform: skewX(-8deg);
  border-radius: 2px;
  z-index: -1;
}

/* White stabilo for colored headers */
.stabilo-w {
  position: relative;
  display: inline;
  white-space: nowrap;
}
.stabilo-w::before {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: 2px;
  height: 8%;
  background: rgba(255, 255, 255, 0.7);
  transform: skewX(-8deg);
  border-radius: 2px;
  z-index: -1;
}

/* === LAYOUT === */
.container {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 30px;
}
.section {
  padding: 100px 0;
}
.section-light {
  background: var(--color-light);
}
.section-dark {
  background: var(--color-dark);
  color: #fff;
}
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5 {
  color: #fff;
}
.section-green {
  background: var(--color-accent);
  color: #fff;
}
.section-green h1,
.section-green h2,
.section-green h3,
.section-green h4 {
  color: #fff;
}
.section-blue {
  background: #7dd5da;
  color: var(--color-text);
}
.section-blue h1,
.section-blue h2,
.section-blue h3,
.section-blue h4 {
  color: var(--color-text);
}
.section-orange {
  background: #ffbf60;
  color: var(--color-text);
}
.section-orange h1,
.section-orange h2,
.section-orange h3,
.section-orange h4 {
  color: var(--color-text);
}
.section-red {
  background: #ee4c4c;
  color: #fff;
}
.section-red h1,
.section-red h2,
.section-red h3,
.section-red h4 {
  color: #fff;
}
.section-pink {
  background: var(--color-pink);
  color: var(--color-text);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h6 {
  margin-bottom: 25px;
}
.section-header h2 {
  margin-bottom: 15px;
}
.section-header .lead {
  max-width: 600px;
  margin: 0 auto;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-bg);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.nav-inner {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  transition: height 0.3s;
}
.nav.scrolled .nav-inner {
  height: var(--nav-h-s);
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img,
.logo svg {
  height: 30px;
  width: auto;
  display: block;
}
.footer-top .logo svg {
  height: 24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  padding: 7px 7px;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-toggle {
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s;
}
.nav-toggle span:nth-child(3) {
  width: 16px;
}
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  width: 24px;
  transform: rotate(-45deg) translateY(-7px);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 998;
  padding: 30px 30px 40px;
  overflow-y: auto;
}
.nav-mobile.open {
  display: flex;
  flex-direction: column;
}
.nav-mobile .nav-mobile-logo {
  display: block;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-light);
}
.nav-mobile .nav-mobile-logo img,
.nav-mobile .nav-mobile-logo svg {
  height: 22px;
}
.nav-mobile a {
  display: flex;
  align-items: center;
  padding: 16px 0;
  color: var(--color-text);
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid var(--color-light);
  text-decoration: none;
  min-height: 52px;
}
.nav-mobile a.active {
  color: var(--color-accent);
}
.nav-mobile-cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 16px 30px !important;
  background: var(--color-accent);
  color: #fff !important;
  border: none !important;
  border-radius: var(--btn-r);
  font-weight: 700;
  font-size: 16px !important;
  text-align: center;
  min-height: 52px;
}
/* Nav CTA button in desktop */
.nav-cta {
  margin-left: auto;
}
.nav-cta a {
  text-decoration: none !important;
}
.nav-cta a::after {
  display: none !important;
}
.btn-nav-cta {
  display: inline-block;
  padding: 7px 7px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--btn-r);
  border: var(--btn-b) solid var(--color-accent);
  background: var(--color-accent);
  color: #fff !important;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  line-height: 1;
  margin-left: 12px;
  white-space: nowrap;
}
.btn-nav-cta:hover {
  background: var(--color-accent-h);
  color: #fff !important;
  border-color: var(--color-accent-h);
}
/* Sticky mobile CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-light);
  padding: 10px 20px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 900;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
}
.mobile-cta-bar a {
  display: block;
  width: 100%;
  text-decoration: none;
}
@media (max-width: 768px) {
  .mobile-cta-bar {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 18px 35px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--btn-r);
  border: var(--btn-b) solid var(--color-text);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  line-height: 1;
}
.btn-outline {
  background: var(--color-bg);
  color: var(--color-text);
}
.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
}
.btn-filled {
  background: var(--color-text);
  color: var(--color-bg);
}
.btn-filled:hover {
  background: var(--color-bg);
  color: var(--color-text);
}
.btn-accent {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-accent:hover {
  background: var(--color-accent-h);
  border-color: var(--color-accent-h);
  color: #fff;
}
.btn-on-green {
  background: var(--color-text);
  color: #fff;
  border: var(--btn-b) solid var(--color-text);
}
.btn-on-green:hover {
  background: #fff;
  color: #333;
  border-color: #333;
}
.btn-green-outline {
  background: #fff;
  color: var(--color-accent-light);
  border: var(--btn-b) solid var(--color-accent-light);
}
.btn-green-outline:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-sm {
  padding: 12px 28px;
  font-size: 14px;
}
.btn-full {
  width: 100%;
}

/* === BADGES === */
.badge {
  display: inline-block;
  padding: 4px 20px;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.badge-lavender {
  background: var(--color-badge);
  color: var(--color-h6);
}
.badge-dark {
  background: var(--color-text);
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  position: relative;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 {
  margin-bottom: 25px;
}
.hero-content .lead {
  margin-bottom: 35px;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header {
  padding: 140px 0 60px;
  text-align: center;
}
.page-header h1 {
  margin-bottom: 15px;
}
.page-header .lead {
  max-width: 600px;
  margin: 0 auto;
}
.topbar {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-light);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-text {
  font-size: 14px;
  font-weight: 500;
}

/* About image */
.about-image {
  border-radius: 13px;
  overflow: hidden;
  margin-bottom: 40px;
}
.about-image img {
  width: 100%;
  display: block;
}

/* === SUMMARY === */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.summary-item .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}
.summary-item ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-lead);
}
.summary-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3 4.7l-6.6 6.6L3.4 8' stroke='%233c8f69' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center;
}

/* === CTA BAR === */
.cta-bar {
  padding: 45px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
}
.cta-bar h4 {
  color: #fff;
  margin: 0;
  flex: 1;
}

/* === CARDS === */
.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-light);
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.card-visual {
  height: 220px;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-body {
  padding: 30px;
}
.card-body h3 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 5px;
}
.card-body .price {
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 10px;
}
.card-body p {
  color: var(--color-lead);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 26px;
}
.card-sep {
  height: 1px;
  background: var(--color-sep);
  margin: 15px 0;
}

/* === SERVICE ROWS === */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 60px;
  border: 1px solid var(--color-light);
}
.service-row:nth-child(even) {
  direction: rtl;
}
.service-row:nth-child(even) > * {
  direction: ltr;
}
.service-row .row-visual {
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  padding: 40px;
}
.service-row .row-visual svg {
  width: 120px;
  height: 120px;
}
.service-row .row-content {
  padding: 50px 40px;
}
.service-row .row-content h5 {
  margin-bottom: 15px;
}
.service-row .row-content .check-list {
  margin: 15px 0 25px;
}
.service-row .row-content .check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--color-lead);
}
.service-row .row-content .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3 4.7l-6.6 6.6L3.4 8' stroke='%233c8f69' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center;
}

/* === PRICING TABLE === */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table thead th {
  padding: 30px 20px 20px;
  text-align: center;
  vertical-align: top;
  border-bottom: 2px solid var(--color-light);
}
.pricing-table thead th:first-child {
  text-align: left;
}
.pricing-table thead th.featured {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--btn-r) var(--btn-r) 0 0;
  border-bottom-color: var(--color-accent);
}
.pricing-table .plan-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-table .plan-price {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}
.pricing-table .plan-price span {
  font-size: 16px;
  font-weight: 500;
}
.pricing-table .plan-sub {
  font-size: 13px;
  color: var(--color-gray);
  margin-top: 8px;
}
.pricing-table .plan-desc {
  font-size: 13px;
  margin-top: 12px;
  line-height: 20px;
  font-style: italic;
}
.pricing-table thead th.featured .plan-sub {
  color: rgba(255, 255, 255, 0.7);
}
.pricing-table thead th.featured .plan-desc {
  color: rgba(255, 255, 255, 0.85);
}
.pricing-table tbody td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-light);
  font-size: 14px;
  color: var(--color-lead);
}
.pricing-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--color-text);
}
.pricing-table tbody td.featured {
  background: rgba(60, 143, 105, 0.04);
}
.pricing-table tbody td .check {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 18px;
}
.pricing-table tbody td .dash {
  color: var(--color-light);
  font-size: 20px;
}
.pricing-table tfoot td {
  padding: 25px 20px;
  text-align: center;
  border-top: 2px solid var(--color-light);
}
.pricing-table tfoot td.featured {
  background: rgba(60, 143, 105, 0.04);
  border-radius: 0 0 var(--btn-r) var(--btn-r);
}

/* === FEATURES === */
.feature-item {
  text-align: center;
}
.feature-item .feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--color-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    transform 0.3s;
}
.feature-item:hover .feature-icon {
  background: var(--color-accent);
  transform: rotate(6deg);
}
.feature-item .feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  transition: color 0.3s;
}
.feature-item:hover .feature-icon svg {
  color: #fff;
}
.feature-item h5 {
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-gray);
}

/* === STATS === */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin: 40px 0;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.stat-label {
  font-size: 18px;
  font-weight: 500;
  margin-top: 8px;
}

/* === BLOG === */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.blog-card {
  overflow: hidden;
  transition: transform 0.3s;
}
.blog-card:hover {
  transform: translateY(-3px);
}
.blog-card .blog-img {
  height: 200px;
  border-radius: var(--btn-r);
  overflow: hidden;
  margin-bottom: 15px;
}
.blog-card .blog-img .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card .blog-meta {
  font-size: 13px;
  color: var(--color-gray);
  margin-bottom: 8px;
}
.blog-card h5 {
  margin-bottom: 8px;
}
.blog-card h5 a {
  color: var(--color-text);
}
.blog-card h5 a:hover {
  color: var(--color-accent);
}
.blog-card p {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-lead);
}
.blog-featured .blog-img {
  height: 320px;
}

/* === FAQ === */
.faq-item {
  border-bottom: 1px solid var(--color-light);
  padding: 25px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-q {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q .faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  transition: all 0.3s;
  color: var(--color-text);
}
.faq-item.open .faq-icon {
  background: var(--color-accent);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  font-size: 15px;
  line-height: 26px;
  color: var(--color-lead);
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 15px;
}

/* === CONTACT === */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--btn-r);
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-text);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-gray);
}
.form-group textarea {
  resize: none;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.contact-detail .detail-icon {
  width: 44px;
  height: 44px;
  background: var(--color-light);
  border-radius: var(--btn-r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--color-text);
}

/* === CONTACT LAYOUT === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-form-col {
  max-width: 600px;
}
.contact-info-col {
  position: sticky;
  top: 100px;
}
.contact-info-card {
  background: var(--color-light);
  border-radius: 12px;
  padding: 35px;
}
.next-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.next-step p {
  font-size: 14px;
  line-height: 22px;
  color: var(--color-lead);
  margin: 0;
}
.step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.form-success {
  background: var(--color-light);
  border-radius: 12px;
}

/* === NEWSLETTER === */
.footer-newsletter {
  padding: 20px 0;
  margin-top: 10px;
}
.footer-newsletter p {
  font-size: 13px;
  color: var(--color-gray);
  margin-bottom: 12px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 400px;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid var(--color-light);
  background: var(--color-bg);
  border-radius: var(--btn-r);
  color: var(--color-text);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  outline: none;
}
.newsletter-form input::placeholder {
  color: var(--color-gray);
}
.newsletter-form input:focus {
  border-color: var(--color-accent);
}
.newsletter-form button {
  padding: 10px 20px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--btn-r);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--color-accent-h);
}

/* === FOOTER === */
.footer {
  background: var(--color-footer);
  padding: 60px 0 25px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h5 {
  margin-bottom: 18px;
}
.footer-col p {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-lead);
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--color-lead);
}
.footer-col ul li a:hover {
  color: var(--color-accent);
}
.footer-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.footer-badge-link {
  display: inline-block;
  font-size: 11px;
  padding: 5px 12px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  background: var(--color-text);
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.2s;
}
.footer-badge-link:hover {
  background: var(--color-accent);
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--color-accent);
  color: #fff;
}
.footer-social a svg {
  width: 16px;
  height: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--color-gray);
}
.footer-bottom a {
  color: var(--color-gray);
}
.footer-bottom a:hover {
  color: var(--color-accent);
}
.footer-legal {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 13px;
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--color-bg);
  color: var(--color-text);
  border: 3px solid #fafafa;
  border-radius: var(--btn-r);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 901;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  border-color: #252525;
}
.back-to-top:hover {
  background: #252525;
  color: #fff;
  border-color: #252525;
}

/* === LEGAL PAGES === */
.legal-content {
  max-width: 750px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 26px;
  line-height: 36px;
  margin: 40px 0 15px;
}
.legal-content h3 {
  font-size: 20px;
  line-height: 30px;
  margin: 30px 0 10px;
}
.legal-content p {
  font-size: 15px;
  line-height: 26px;
  color: var(--color-lead);
  margin-bottom: 15px;
}
.legal-content ul {
  margin: 10px 0 20px 20px;
}
.legal-content ul li {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-lead);
  margin-bottom: 8px;
  list-style: disc;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim {
  opacity: 0;
}
.anim.vis {
  animation: fadeUp 0.65s ease-out forwards;
}
.d1 {
  animation-delay: 0.1s;
}
.d2 {
  animation-delay: 0.2s;
}
.d3 {
  animation-delay: 0.3s;
}
.d4 {
  animation-delay: 0.4s;
}

/* Fallback: if JS doesn't load after 3s, show everything */
@keyframes showAll {
  to {
    opacity: 1;
  }
}
.anim {
  animation: showAll 0s 3s forwards;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
    line-height: 50px;
  }
  h2 {
    font-size: 36px;
    line-height: 44px;
  }
  h3 {
    font-size: 26px;
    line-height: 34px;
  }
  .hero-split,
  .grid-2,
  .service-row {
    grid-template-columns: 1fr;
  }
  .service-row:nth-child(even) {
    direction: ltr;
  }
  .summary-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-table-wrap {
    overflow-x: auto;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-col {
    max-width: 100%;
  }
  .contact-info-col {
    position: static;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    z-index: 999;
    display: flex;
  }
  h1 {
    font-size: 34px;
    line-height: 40px;
  }
  h2 {
    font-size: 28px;
    line-height: 34px;
  }
  .stabilo,
  .stabilo-w {
    white-space: normal;
  }
  .section {
    padding: 60px 0;
  }
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 120px 0 80px;
  }
  .hero-visual {
    justify-content: center;
    margin-top: 8px;
  }
  .hero-visual svg {
    width: 200px;
    height: auto;
  }
  .stats-row {
    flex-direction: column;
    gap: 25px;
  }
  .grid-4,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .cta-bar {
    flex-direction: column;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .page-header {
    padding: 120px 0 40px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .service-row .row-content {
    padding: 30px 20px;
  }
  .service-row .row-visual {
    min-height: 200px;
    padding: 30px;
  }
  .container {
    padding: 0 20px;
  }
  .btn {
    padding: 16px 28px;
    font-size: 15px;
  }
  .btn-sm {
    padding: 12px 24px;
  }
  .pricing-table thead th {
    padding: 20px 12px 15px;
  }
  .pricing-table .plan-price {
    font-size: 32px;
  }
  .pricing-table tbody td {
    padding: 10px 12px;
    font-size: 13px;
  }
  .footer-legal {
    justify-content: center;
    gap: 10px;
  }
  .footer-social {
    justify-content: center;
  }
  .section-header h2 {
    font-size: 26px;
    line-height: 34px;
  }
  .about-image {
    border-radius: 8px;
  }
  /* Back-to-top: float above the sticky mobile CTA bar */
  .back-to-top {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    right: 15px;
  }
}

/* === SMALL MOBILE (≤480px) === */
@media (max-width: 480px) {
  h1 {
    font-size: 28px;
    line-height: 34px;
  }
  h2 {
    font-size: 24px;
    line-height: 30px;
  }
  h3 {
    font-size: 22px;
    line-height: 28px;
  }
  .hero {
    padding: 100px 0 40px;
  }
  .page-header {
    padding: 100px 0 30px;
  }
  .lead {
    font-size: 15px;
    line-height: 26px;
  }
  /* Prevent iOS auto-zoom on form focus */
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
  }
  .form-row {
    gap: 12px;
  }
  .hero-buttons {
    gap: 8px;
  }
  .pricing-table .plan-name {
    font-size: 16px;
  }
  .pricing-table .plan-price {
    font-size: 26px;
  }
  .cta-bar h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .stat-number {
    font-size: 36px;
  }
}

/* === LANDSCAPE PHONE — keep mobile nav === */
/* Phones in landscape: height ≤500px. Tablets in landscape: height ≥600px. */
@media (orientation: landscape) and (max-height: 500px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
    z-index: 999;
  }
  .mobile-cta-bar {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 80px 0 70px;
  }
  .back-to-top {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    right: 15px;
  }
}

/* === TOUCH TARGETS (mobile accessibility) === */
@media (pointer: coarse) {
  .nav-toggle {
    z-index: 999;
    min-width: 44px;
    min-height: 44px;
  }
  .nav-mobile a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .faq-q {
    min-height: 48px;
    padding: 8px 0;
  }
  .btn {
    min-height: 48px;
  }
  .footer-social a {
    width: 44px;
    height: 44px;
  }
}

/* === PERFORMANCE: reduce motion for users who prefer it === */
@media (prefers-reduced-motion: reduce) {
  .anim {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
  .anim.vis {
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* === PRINT === */
@media print {
  .nav,
  .back-to-top,
  .footer-social,
  .newsletter-form,
  .btn {
    display: none !important;
  }
  body {
    font-size: 12pt;
    color: #000;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
}

/* === PRICING TOOLTIPS === */
.info-tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-badge);
  color: var(--color-h6);
  border: none;
  cursor: pointer;
  font-size: 11px;
  line-height: 1;
  margin-left: 5px;
  vertical-align: middle;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.info-tip:hover,
.info-tip:focus,
.info-tip.active {
  background: var(--color-h6);
  color: #fff;
  outline: none;
}
/* Global bubble is appended to <body> so position:fixed always targets the viewport */
.info-tip-bubble {
  position: fixed;
  background: var(--color-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 8px;
  width: max-content;
  max-width: 280px;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  white-space: normal;
  word-wrap: break-word;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.info-tip-bubble.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.info-tip-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 14px;
  border: 6px solid transparent;
  border-top-color: var(--color-dark);
}
/* Mobile: centered overlay — visible wherever the user has scrolled */
.info-tip-bubble.mobile-mode {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: calc(100vw - 48px);
  max-width: 360px;
  font-size: 14px;
  line-height: 1.6;
  padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.info-tip-bubble.mobile-mode::after {
  display: none;
}
@media (max-width: 768px) {
  .info-tip {
    width: 16px;
    height: 16px;
    font-size: 10px;
    margin-left: 4px;
  }
}
.pricing-table td:first-child {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .pricing-table td:first-child {
    white-space: normal;
  }
}
.plan-ht {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.6;
}
/* Scroll bounce animation */
@keyframes scrollBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(6px);
  }
  60% {
    transform: translateY(3px);
  }
}
/* Extra costs cards */
.extra-cost-card {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  text-align: left;
}
.extra-cost-card h5 {
  margin-bottom: 8px;
}
.extra-cost-card p {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-lead);
}

/* === PRICING TABLE MOBILE (card layout) === */
@media (max-width: 768px) {
  .pricing-table-wrap {
    overflow-x: visible !important;
  }
  .pricing-table {
    display: block;
    width: 100%;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table tbody {
    display: block;
  }
  .pricing-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    border-bottom: 1px solid var(--color-light);
    padding: 0;
  }
  .pricing-table tbody td {
    padding: 8px 6px;
    font-size: 13px;
    text-align: center;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
  }
  .pricing-table tbody td:first-child {
    grid-column: 1 / -1;
    text-align: left;
    justify-content: flex-start;
    font-weight: 600;
    padding: 12px 6px 2px;
    font-size: 13px;
    min-height: auto;
  }
  .pricing-table tbody td.featured {
    background: rgba(60, 143, 105, 0.06);
  }
  .pricing-table tfoot {
    display: block;
  }
  .pricing-table tfoot tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding: 15px 0;
  }
  .pricing-table tfoot td {
    display: block;
    border: none;
    padding: 0;
  }
  .pricing-table tfoot td:first-child {
    display: none;
  }
  .pricing-table tfoot .btn {
    display: block;
    width: 100%;
    padding: 12px 8px;
    font-size: 12px;
    white-space: normal;
    line-height: 1.3;
  }
  .info-tip {
    width: 16px;
    height: 16px;
    font-size: 10px;
    margin-left: 4px;
  }
  /* Mobile headers */
  .pricing-mobile-headers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
    position: sticky;
    top: var(--nav-h-s);
    background: var(--color-bg);
    z-index: 10;
    padding: 8px 0;
  }
  .pricing-mobile-headers .pmh-card {
    text-align: center;
    padding: 10px 6px;
    border-radius: 8px;
    background: var(--color-light);
  }
  .pricing-mobile-headers .pmh-card.featured {
    background: var(--color-accent);
    color: #fff;
  }
  .pricing-mobile-headers .pmh-name {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .pricing-mobile-headers .pmh-price {
    font-size: 18px;
    font-weight: 700;
    margin-top: 2px;
  }
  .pricing-mobile-headers .pmh-price .plan-ht {
    font-size: 10px;
  }
}
@media (min-width: 769px) {
  .pricing-mobile-headers {
    display: none;
  }
}

/* === BLOG ARTICLE LAYOUT === */
.article-toc {
  background: var(--color-light);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 35px;
}
.article-toc h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--color-text);
}
.article-toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
}
.article-toc ol li {
  counter-increment: toc;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.article-toc ol li:last-child {
  border-bottom: none;
}
.article-toc ol li a {
  color: var(--color-accent);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  gap: 10px;
  transition: color 0.2s;
}
.article-toc ol li a::before {
  content: counter(toc);
  color: var(--color-h6);
  font-weight: 700;
  min-width: 18px;
}
.article-toc ol li a:hover {
  color: var(--color-accent-h);
}
/* Article blockquote */
.article-quote {
  border-left: 3px solid var(--color-accent);
  padding: 16px 24px;
  margin: 30px 0;
  background: var(--color-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 17px;
  line-height: 28px;
  color: var(--color-lead);
}
/* Article key points */
.article-keypoints {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 30px 0;
}
.article-keypoint {
  text-align: center;
  padding: 20px 12px;
  background: var(--color-light);
  border-radius: 8px;
}
.article-keypoint-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.article-keypoint h5 {
  font-size: 15px;
  margin-bottom: 4px;
}
.article-keypoint p {
  font-size: 13px;
  color: var(--color-gray);
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  text-align: center;
}
.scroll-indicator a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--color-text);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--color-light);
  transition: all 0.3s ease;
}
.scroll-indicator a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(60, 143, 105, 0.04);
}
.scroll-indicator span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.scroll-indicator svg {
  animation: scrollBounce 2s ease infinite;
}
