/* ==========================================================================
   gs-modern.css — Design System for 3dekspert.ee
   Inspired by graphisoft.com and solibri.com
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
  --gs-blue:        #313D6B;
  --gs-blue-dark:   #1e2640;
  --gs-blue-mid:    #4a5a9a;
  --gs-orange:      #FF6104;
  --gs-orange-dark: #d94f00;
  --gs-gray-50:     #f8f8f9;
  --gs-gray-100:    #f1f1f2;
  --gs-gray-200:    #e3e4e5;
  --gs-gray-400:    #b4b5b7;
  --gs-gray-600:    #5F6062;
  --gs-dark:        #231F20;
  --gs-white:       #ffffff;
  --gs-teal:        #33B3DA;

  --shadow-card:    0px 2px 11px 0px rgba(5, 7, 19, 0.17);
  --shadow-hover:   0px 6px 24px 0px rgba(5, 7, 19, 0.24);

  --radius:         8px;
  --radius-lg:      16px;
  --radius-pill:    50px;

  --max-w:          960px;
  --font:           'Inter', Arial, sans-serif;

  --transition:     0.2s ease;
}

/* --------------------------------------------------------------------------
   Page wrapper — add class="gs-page" to the content container
   -------------------------------------------------------------------------- */
.gs-page {
  font-family: var(--font);
  color: var(--gs-dark);
  line-height: 1.6;
  clear: both;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.gs-hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gs-hero--tall { min-height: 520px; }

.gs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(30, 38, 64, 0.82) 0%,
    rgba(30, 38, 64, 0.55) 55%,
    rgba(30, 38, 64, 0.20) 100%
  );
  z-index: 1;
}

.gs-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 16px;
}

.gs-hero__badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 14px;
  background: var(--gs-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.gs-hero__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: var(--gs-white);
  line-height: 1.15;
  margin: 0 0 16px 0;
  max-width: 600px;
}

.gs-hero__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  margin: 0 0 32px 0;
  max-width: 520px;
}

.gs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.gs-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}
.gs-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.gs-btn:active { transform: translateY(0); }

.gs-btn--primary {
  background: var(--gs-orange);
  color: var(--gs-white);
  border-color: var(--gs-orange);
}
.gs-btn--primary:link, .gs-btn--primary:visited { color: var(--gs-white); }
.gs-btn--primary:hover { background: var(--gs-orange-dark); border-color: var(--gs-orange-dark); }

.gs-btn--secondary {
  background: transparent;
  color: var(--gs-white);
  border-color: rgba(255,255,255,0.7);
}
.gs-btn--secondary:link, .gs-btn--secondary:visited { color: var(--gs-white); }
.gs-btn--secondary:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.gs-btn--outline {
  background: transparent;
  color: var(--gs-blue);
  border-color: var(--gs-blue);
}
.gs-btn--outline:link, .gs-btn--outline:visited { color: var(--gs-blue); }
.gs-btn--outline:hover { background: var(--gs-blue); color: #fff; }

.gs-btn--dark {
  background: var(--gs-blue);
  color: var(--gs-white);
  border-color: var(--gs-blue);
}
.gs-btn--dark:link, .gs-btn--dark:visited { color: var(--gs-white); }
.gs-btn--dark:hover { background: var(--gs-blue-dark); border-color: var(--gs-blue-dark); }

.gs-btn--sm { padding: 8px 20px; font-size: 13px; }

/* --------------------------------------------------------------------------
   Section wrapper
   -------------------------------------------------------------------------- */
.gs-section {
  width: 100%;
  padding: 56px 16px;
}
.gs-section--gray  { background: var(--gs-gray-100); }
.gs-section--dark  { background: var(--gs-blue);  color: var(--gs-white); }
.gs-section--white { background: var(--gs-white); }

.gs-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */
.gs-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gs-orange);
  margin: 0 0 10px 0;
}

.gs-h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px 0;
}
.gs-h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px 0;
}
.gs-h3 {
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px 0;
}
.gs-lead {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--gs-gray-600);
  margin: 0 0 24px 0;
}
.gs-section--dark .gs-lead { color: rgba(255,255,255,0.78); }

/* --------------------------------------------------------------------------
   Two-column intro split
   -------------------------------------------------------------------------- */
.gs-split {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.gs-split__text { flex: 1 1 300px; min-width: 0; }
.gs-split__visual { flex: 1 1 300px; min-width: 0; }
.gs-split__visual img { width: 100%; height: auto; border-radius: var(--radius-lg); }

.gs-split--reverse { flex-direction: row-reverse; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.gs-cards {
  display: grid;
  gap: 24px;
}
.gs-cards--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.gs-cards--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.gs-cards--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.gs-card {
  background: var(--gs-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.gs-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.gs-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  object-fit: contain;
}
.gs-card__logo {
  height: 36px;
  width: auto;
  margin-bottom: 18px;
  object-fit: contain;
}
.gs-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--gs-dark);
}
.gs-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gs-gray-600);
  margin: 0 0 18px 0;
}
.gs-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gs-orange);
  text-decoration: none;
}
.gs-card__link:hover { color: var(--gs-orange-dark); text-decoration: underline; }

/* Product card with top border accent */
.gs-card--accent { border-top: 3px solid var(--gs-orange); }
.gs-card--blue   { border-top: 3px solid var(--gs-blue); }

/* --------------------------------------------------------------------------
   Feature row (image + text side by side)
   -------------------------------------------------------------------------- */
.gs-feature {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
  border-bottom: 1px solid var(--gs-gray-200);
}
.gs-feature:last-child { border-bottom: none; }
.gs-feature__img {
  flex: 1 1 280px;
  max-width: 420px;
}
.gs-feature__img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.gs-feature__body { flex: 1 1 280px; }
.gs-feature--reverse { flex-direction: row-reverse; }

/* --------------------------------------------------------------------------
   Video block
   -------------------------------------------------------------------------- */
.gs-video-block {
  background: var(--gs-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.gs-video-block__thumb {
  position: relative;
  flex: 1 1 300px;
  min-height: 220px;
  cursor: pointer;
  overflow: hidden;
}
.gs-video-block__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gs-video-block__thumb:hover img { transform: scale(1.03); }
.gs-video-block__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background var(--transition);
}
.gs-video-block__play:hover { background: rgba(0,0,0,0.38); }
.gs-video-block__play svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.gs-video-block__body {
  flex: 1 1 280px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Section title centred
   -------------------------------------------------------------------------- */
.gs-section-title {
  text-align: center;
  margin-bottom: 40px;
}
.gs-section-title .gs-eyebrow { margin-bottom: 8px; }
.gs-section-title .gs-h2     { margin-bottom: 12px; }
.gs-section-title .gs-lead   { max-width: 600px; margin: 0 auto; }

/* --------------------------------------------------------------------------
   Help / docs row
   -------------------------------------------------------------------------- */
.gs-docs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  border: 1px solid var(--gs-gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.gs-docs-item {
  text-align: center;
  flex: 0 1 160px;
}
.gs-docs-item img {
  height: 56px;
  width: auto;
  margin-bottom: 8px;
}
.gs-docs-item__name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gs-dark);
}

/* --------------------------------------------------------------------------
   CTA banner
   -------------------------------------------------------------------------- */
.gs-cta-banner {
  background: linear-gradient(135deg, var(--gs-blue) 0%, var(--gs-blue-mid) 100%);
  color: var(--gs-white);
  text-align: center;
  padding: 64px 16px;
}
.gs-cta-banner .gs-h2 { color: var(--gs-white); margin-bottom: 12px; }
.gs-cta-banner .gs-lead { color: rgba(255,255,255,0.82); margin-bottom: 32px; }
.gs-cta-banner__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Logo / partner strip
   -------------------------------------------------------------------------- */
.gs-logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}
.gs-logo-strip img {
  height: 32px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity var(--transition), filter var(--transition);
}
.gs-logo-strip img:hover { opacity: 1; filter: grayscale(0); }

/* --------------------------------------------------------------------------
   Solibri tier cards
   -------------------------------------------------------------------------- */
.gs-tier-card {
  background: var(--gs-white);
  border: 1px solid var(--gs-gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 22px 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.gs-tier-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.gs-tier-card--featured {
  border-top: 3px solid var(--gs-orange);
  position: relative;
}
.gs-tier-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gs-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.gs-tier-card__icon { width: 48px; height: 48px; margin-bottom: 14px; }
.gs-tier-card__name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.gs-tier-card__desc { font-size: 13px; line-height: 1.6; color: var(--gs-gray-600); flex: 1; margin-bottom: 18px; }
.gs-tier-card__link { margin-top: auto; }

/* --------------------------------------------------------------------------
   Feature tag list
   -------------------------------------------------------------------------- */
.gs-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.gs-feature-list li {
  padding: 6px 0 6px 26px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gs-gray-600);
}
.gs-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23FF6104'/%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

/* ==========================================================================
   SOLIBRI THEME — .sol-page wrapper overrides
   Clean minimal style matching solibri.com — teal accent, white/light bg
   ========================================================================== */

.sol-page {
  font-family: var(--font);
  color: #1B2437;
  line-height: 1.6;
}

/* Solibri color tokens */
.sol-page {
  --sol-teal:       #FFC126;
  --sol-teal-dark:  #E6A800;
  --sol-teal-light: #FFF8E6;
  --sol-dark:       #222E46;
  --sol-gray-50:    #F5F7FA;
  --sol-gray-100:   #EEF0F4;
  --sol-gray-200:   #D8DCE6;
  --sol-gray-500:   #8A92A6;
  --sol-gray-700:   #4A5568;
  --sol-white:      #FFFFFF;
  --sol-shadow:     0 2px 12px rgba(0,0,0,0.09);
  --sol-shadow-lg:  0 6px 28px rgba(0,0,0,0.13);
  --sol-radius:     8px;
  --sol-radius-lg:  16px;
}

/* --- Hero ---------------------------------------------------------------- */
.sol-hero {
  position: relative;
  width: 100%;
  min-height: 460px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.sol-hero--light {
  background: linear-gradient(135deg, #F0FAF9 0%, #E6F4F8 100%);
  min-height: 380px;
}
.sol-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 40, 40, 0.72) 0%,
    rgba(0, 60, 60, 0.45) 55%,
    rgba(0, 80, 80, 0.15) 100%
  );
  z-index: 1;
}
.sol-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 72px 16px;
}
.sol-hero--light .sol-hero__content { position: static; padding: 72px 16px; max-width: 960px; margin: 0 auto }
.sol-hero__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 14px;
  background: var(--sol-teal);
  color: #222E46;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
}
.sol-hero__title {
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 800;
  color: var(--sol-white);
  line-height: 1.15;
  margin: 0 0 16px 0;
  max-width: 620px;
}
.sol-hero--light .sol-hero__title { color: var(--sol-dark) }
.sol-hero__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  margin: 0 0 36px 0;
  max-width: 520px;
}
.sol-hero--light .sol-hero__subtitle { color: var(--sol-gray-700) }
.sol-hero__actions { display: flex; flex-wrap: wrap; gap: 12px }

/* --- Buttons ------------------------------------------------------------- */
.sol-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
}
.sol-btn:hover { transform: translateY(-1px); box-shadow: var(--sol-shadow-lg) }
.sol-btn:active { transform: translateY(0) }

.sol-btn--primary {
  background: var(--sol-teal);
  color: #222E46;
  border-color: var(--sol-teal);
}
.sol-btn--primary:link, .sol-btn--primary:visited { color: #222E46 }
.sol-btn--primary:hover { background: var(--sol-teal-dark); border-color: var(--sol-teal-dark); color: #222E46 }

.sol-btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.sol-btn--secondary:link, .sol-btn--secondary:visited { color: #fff }
.sol-btn--secondary:hover { background: rgba(255,255,255,0.12); border-color: #fff }

.sol-btn--outline {
  background: transparent;
  color: var(--sol-dark);
  border-color: var(--sol-teal);
}
.sol-btn--outline:link, .sol-btn--outline:visited { color: var(--sol-dark) }
.sol-btn--outline:hover { background: var(--sol-teal); color: #222E46 }

.sol-btn--dark {
  background: var(--sol-dark);
  color: #fff;
  border-color: var(--sol-dark);
}
.sol-btn--dark:link, .sol-btn--dark:visited { color: #fff }
.sol-btn--dark:hover { background: #0d1526; border-color: #0d1526 }

.sol-btn--sm { padding: 8px 20px; font-size: 13px }

/* --- Sections ------------------------------------------------------------ */
.sol-section { width: 100%; padding: 64px 16px }
.sol-section--white { background: var(--sol-white) }
.sol-section--light { background: var(--sol-gray-50) }
.sol-section--teal  { background: var(--sol-teal); color: #222E46 }
.sol-section--dark  { background: var(--sol-dark); color: #fff }

.sol-container { max-width: 960px; margin: 0 auto }

/* --- Typography ---------------------------------------------------------- */
.sol-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sol-dark);
  margin: 0 0 10px 0;
}
.sol-h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.15; margin: 0 0 20px 0 }
.sol-h2 { font-size: clamp(22px, 3.2vw, 32px); font-weight: 700; line-height: 1.2;  margin: 0 0 16px 0 }
.sol-h3 { font-size: clamp(17px, 2.5vw, 22px); font-weight: 700; line-height: 1.3;  margin: 0 0 10px 0 }
.sol-lead {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
  color: var(--sol-gray-700);
  margin: 0 0 24px 0;
}
.sol-section--teal .sol-lead,
.sol-section--dark .sol-lead { color: rgba(255,255,255,0.82) }

.sol-section-title { text-align: center; margin-bottom: 48px }
.sol-section-title .sol-eyebrow { margin-bottom: 8px }
.sol-section-title .sol-h2 { margin-bottom: 12px }
.sol-section-title .sol-lead { max-width: 600px; margin: 0 auto }

/* --- Split --------------------------------------------------------------- */
.sol-split {
  display: flex;
  gap: 56px;
  align-items: center;
  flex-wrap: wrap;
}
.sol-split__text  { flex: 1 1 300px }
.sol-split__visual { flex: 1 1 300px }
.sol-split__visual img { width: 100%; height: auto; border-radius: var(--sol-radius-lg) }
.sol-split--reverse { flex-direction: row-reverse }

/* --- Cards --------------------------------------------------------------- */
.sol-cards { display: grid; gap: 24px }
.sol-cards--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) }
.sol-cards--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) }
.sol-cards--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) }

.sol-card {
  background: var(--sol-white);
  border: 1px solid var(--sol-gray-200);
  border-radius: var(--sol-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--sol-shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.sol-card:hover { box-shadow: var(--sol-shadow-lg); transform: translateY(-2px) }
.sol-card--accent { border-top: 3px solid var(--sol-teal) }

.sol-card__title { font-size: 17px; font-weight: 700; margin: 0 0 8px 0; color: var(--sol-dark) }
.sol-card__text  { font-size: 14px; line-height: 1.65; color: var(--sol-gray-700); margin: 0 0 16px 0 }
.sol-card__link  { font-size: 14px; font-weight: 600; color: var(--sol-dark); text-decoration: none }
.sol-card__link:hover { color: var(--sol-teal-dark); text-decoration: underline }

/* --- Tier cards ---------------------------------------------------------- */
.sol-tier-card {
  background: var(--sol-white);
  border: 1px solid var(--sol-gray-200);
  border-radius: var(--sol-radius-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--sol-shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
}
.sol-tier-card:hover { box-shadow: var(--sol-shadow-lg); transform: translateY(-2px) }
.sol-tier-card--featured { border: 2px solid var(--sol-teal) }
.sol-tier-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sol-teal);
  color: #222E46;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.sol-tier-card__icon { width: 44px; height: 44px; margin-bottom: 14px; object-fit: contain }
.sol-tier-card__name { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--sol-dark) }
.sol-tier-card__desc { font-size: 13px; line-height: 1.65; color: var(--sol-gray-700); flex: 1; margin-bottom: 18px }
.sol-tier-card__link { margin-top: auto }

/* --- Feature list -------------------------------------------------------- */
.sol-feature-list { list-style: none; padding: 0; margin: 0 0 20px 0 }
.sol-feature-list li {
  padding: 5px 0 5px 24px;
  position: relative;
  font-size: 13px;
  line-height: 1.55;
  color: var(--sol-gray-700);
}
.sol-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23FFC126'/%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-5' stroke='%23222E46' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

/* --- Video block --------------------------------------------------------- */
.sol-video-block {
  background: var(--sol-gray-100);
  border-radius: var(--sol-radius-lg);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--sol-gray-200);
}
.sol-video-block__thumb {
  position: relative;
  flex: 1 1 300px;
  min-height: 220px;
  cursor: pointer;
  overflow: hidden;
}
.sol-video-block__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease }
.sol-video-block__thumb:hover img { transform: scale(1.03) }
.sol-video-block__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  transition: background 0.2s ease;
}
.sol-video-block__play:hover { background: rgba(0,0,0,0.34) }
.sol-video-block__body { flex: 1 1 280px; padding: 32px 28px; display: flex; flex-direction: column; justify-content: center }

/* --- Docs/guides row ----------------------------------------------------- */
.sol-docs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border: 1px solid var(--sol-gray-200);
  border-radius: var(--sol-radius-lg);
  padding: 24px;
  background: var(--sol-white);
}
.sol-docs-item { text-align: center; flex: 0 1 160px }
.sol-docs-item img { height: 48px; width: auto; margin-bottom: 8px }
.sol-docs-item__name { font-size: 13px; font-weight: 600; margin-bottom: 10px; color: var(--sol-dark) }

/* --- CTA banner ---------------------------------------------------------- */
.sol-cta-banner {
  background: var(--sol-dark);
  color: #fff;
  text-align: center;
  padding: 72px 16px;
}
.sol-cta-banner .sol-h2 { color: #fff; margin-bottom: 12px }
.sol-cta-banner .sol-lead { color: rgba(255,255,255,0.8); margin-bottom: 36px }
.sol-cta-banner__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap }

/* --- Comparison table ---------------------------------------------------- */
.sol-compare { width: 100%; border-collapse: collapse; font-family: var(--font); font-size: 14px }
.sol-compare th, .sol-compare td { padding: 11px 14px; text-align: center; border-bottom: 1px solid var(--sol-gray-200) }
.sol-compare td:first-child { text-align: left; color: var(--sol-gray-700) }
.sol-compare th { font-weight: 700; color: var(--sol-dark); padding: 16px 14px; background: var(--sol-gray-50) }
.sol-compare th:first-child { text-align: left }
.sol-compare tbody tr:hover td { background: var(--sol-gray-50) }
.sol-compare tr:last-child td { border-bottom: none }
.sol-compare .sol-check { color: var(--sol-dark); font-size: 18px; font-weight: 700 }

/* Responsive */
@media (max-width: 700px) {
  .sol-hero { min-height: 320px }
  .sol-section { padding: 44px 12px }
  .sol-split { gap: 28px }
  .sol-split--reverse { flex-direction: column }
  .sol-cards--4 { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) }
  .sol-video-block__body { padding: 24px 20px }
  .sol-cta-banner { padding: 52px 12px }
}

/* --------------------------------------------------------------------------
   Responsive (Graphisoft theme)
   -------------------------------------------------------------------------- */
@media (max-width: 700px) {
  .gs-hero { min-height: 300px; }
  .gs-hero--tall { min-height: 380px; }
  .gs-section { padding: 40px 12px; }
  .gs-split  { gap: 28px; }
  .gs-feature { gap: 24px; padding: 28px 0; }
  .gs-feature__img { max-width: 100%; }
  .gs-split--reverse,
  .gs-feature--reverse { flex-direction: column; }
  .gs-cards--4 { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .gs-video-block__body { padding: 24px 20px; }
  .gs-cta-banner { padding: 48px 12px; }
}
