/* Inline SVG icons (talo_icon) – rozmiar dziedziczony z font-size, kolor z currentColor */
  .talo-ico {
    display: inline-block;
    width: 1em; height: 1em;
    vertical-align: -0.125em; /* optyczne wyrównanie do tekstu */
    flex-shrink: 0;
    line-height: 1;
  }

  body { background-color: #fcf9f0; color: #1c1c17; }

  /* Glassmorphism nav */
  .nav-glass {
    background: rgba(252,249,240,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(28,28,23,0.06), 0 24px 40px rgba(28,28,23,0.03);
  }
  .nav-scrolled { box-shadow: 0 2px 24px rgba(28,28,23,0.08) !important; }

  /* CTA gradient button */
  .btn-primary {
    background: linear-gradient(135deg, #00322b 0%, #004b41 100%);
    box-shadow: 0 6px 20px rgba(0,50,43,0.22);
    transition: all 0.25s ease;
  }
  .btn-primary:hover {
    background: linear-gradient(135deg, #004b41 0%, #005f52 100%);
    box-shadow: 0 10px 28px rgba(0,50,43,0.32);
    transform: translateY(-1px);
  }
  .btn-ghost {
    border: 1.5px solid rgba(191,201,197,0.45);
    transition: all 0.25s ease;
  }
  .btn-ghost:hover { border-color: #00322b; background: rgba(0,50,43,0.04); }

  /* Duże przyciski w treści (hero, CTA, sekcje) – większy, spójny padding.
     Nawigacja używa .btn-primary/.btn-ghost bez .btn-lg, więc pozostaje kompaktowa.
     !important zapewnia, że padding zadziała niezależnie od resetów Tailwind i kolejności CSS. */
  a.btn-lg,
  .btn-lg {
    padding: 1.1rem 2.5rem !important;
  }
  @media (max-width: 640px) {
    a.btn-lg,
    .btn-lg { padding: 1rem 1.75rem !important; }
  }

  /* Scroll reveal */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .d1 { transition-delay: 0.08s; }
  .d2 { transition-delay: 0.16s; }
  .d3 { transition-delay: 0.24s; }
  .d4 { transition-delay: 0.32s; }

  /* Eyebrow */
  .eyebrow { font-family: "Plus Jakarta Sans", sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }

  /* Akcentowa linia pod nagłówkami sekcji (zamiast linii-dzielnika) */
  .accent-bar { width: 44px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, #00322b, #004b41); }

  /* Numeracja kroków / punktów (np. 01, 02, 03) */
  .step-num { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.6rem; letter-spacing: -0.02em; color: rgba(0,50,43,0.22); }

  /* Okrągły numerowany znacznik (podstrona O nas – lista "myślimy jak użytkownicy") */
  .step-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2.25rem; height: 2.25rem; border-radius: 8px;
    background: #00322b; color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 0.8rem;
    flex-shrink: 0;
  }

  /* Fallback dla lg:grid-cols-5 – ta wartość nie istnieje w statycznie
     skompilowanym Tailwindzie (tailwind.css), dlatego dopisujemy ją ręcznie.
     Używane w sekcji "Wartości" / "Nasze DNA" na podstronie O nas. */
  @media (min-width: 1024px) {
    .talo-grid-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
  }

  /* Fallback dla proporcji obrazu hero (aspect-[16/10] nie jest skompilowane) */
  .hero-visual-ratio { aspect-ratio: 4 / 5; }
  @media (min-width: 768px) {
    .hero-visual-ratio { aspect-ratio: 16 / 10; }
  }

  /* Linia dekoracyjna przed linkiem "Poznaj nasz proces" – rośnie na hover
     (zamiennik dla w-12 + group-hover:w-20, które nie są skompilowane) */
  .hero-cta-line { width: 3rem; height: 1px; background: #00322b; transition: width 0.5s ease; }
  a:hover .hero-cta-line { width: 5rem; }

  /* USP hover */
  .usp-card { transition: transform 0.3s, box-shadow 0.3s; }
  .usp-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,50,43,0.07); }

  /* Offer card */
  .offer-card img { transition: transform 0.7s cubic-bezier(.25,.46,.45,.94); }
  .offer-card:hover img { transform: scale(1.06); }

  /* Float badge */
  .float-badge { animation: floatY 4s ease-in-out infinite; }
  @keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

  /* Hamburger */
  .hline { display: block; width: 22px; height: 1.5px; background: #1c1c17; transition: all 0.28s ease; transform-origin: center; }
  .menu-open .hline:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-open .hline:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .menu-open .hline:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .mobile-menu { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
  .mobile-menu.open { max-height: 420px; }

  /* Filter active */
  .filter-btn.active { background: #00322b; color: #fff; border-color: #00322b; }

  /* Quote */
  .quote-mark { font-family: Georgia,serif; font-size: 5rem; line-height: 0.6; color: #00322b; opacity: 0.1; user-select: none; pointer-events: none; }

  /* Focus */
  a:focus-visible, button:focus-visible { outline: 2px solid #00322b; outline-offset: 3px; border-radius: 4px; }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .reveal, .btn-primary, .float-badge { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
  }

  /* Typografia treści z edytora WordPress (the_content) */
  .talo-prose { font-family: "Manrope", sans-serif; color: #1c1c17; line-height: 1.75; font-size: 1.0625rem; }
  .talo-prose h2 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.9rem; letter-spacing: -0.02em; margin: 2.2rem 0 1rem; line-height: 1.2; }
  .talo-prose h3 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 1.4rem; margin: 1.8rem 0 0.8rem; }
  .talo-prose h4 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 1.15rem; margin: 1.4rem 0 0.6rem; }
  .talo-prose p { margin: 0 0 1.2rem; }
  .talo-prose a { color: #00322b; text-decoration: underline; text-underline-offset: 3px; }
  .talo-prose ul, .talo-prose ol { margin: 0 0 1.2rem 1.4rem; }
  .talo-prose li { margin-bottom: 0.5rem; }
  .talo-prose ul { list-style: disc; }
  .talo-prose ol { list-style: decimal; }
  .talo-prose blockquote { border-left: 3px solid #00322b; padding-left: 1.2rem; margin: 1.6rem 0; font-style: italic; color: #3f4946; }
  .talo-prose img { border-radius: 8px; margin: 1.6rem 0; }
  .talo-prose strong { font-weight: 700; }

  /* Paginacja */
  .pagination .page-numbers, .nav-links .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 12px; border-radius: 8px;
    background: #f6f3ea; color: #1c1c17; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 600;
    text-decoration: none; transition: all 0.2s ease;
  }
  .pagination .page-numbers.current, .nav-links .page-numbers.current { background: #00322b; color: #fff; }
  .pagination .page-numbers:hover, .nav-links .page-numbers:hover { background: #ebe8df; }

  /* FAQ (akordeon) */
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.36s cubic-bezier(.4,0,.2,1); }
  .faq-item.open .faq-answer { max-height: 400px; }
  .faq-icon { transition: transform 0.28s ease; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }

  /* Karta kontaktowa (hover lift) */
  .contact-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .contact-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,50,43,0.08); }

  /* ═══════════════════════════════════════════════════════════════
     GUTENBERG — renderowanie treści blokowej (.talo-blocks)
     Obsługa szerokości: zwykła 768px, wide 1100px, full 100%.
     ═══════════════════════════════════════════════════════════════ */
  .talo-blocks {
    --talo-content: 768px;
    --talo-wide: 1100px;
    font-family: "Manrope", sans-serif;
    color: #1c1c17;
    font-size: 1.0625rem;
    line-height: 1.75;
  }
  /* Bloki na poziomie głównym centrowane do contentSize */
  .talo-blocks > * {
    max-width: var(--talo-content);
    margin-left: auto;
    margin-right: auto;
  }
  /* Wyrównanie szerokie */
  .talo-blocks > .alignwide {
    max-width: var(--talo-wide);
  }
  /* Wyrównanie pełne – cała szerokość ekranu */
  .talo-blocks > .alignfull {
    max-width: none;
    width: 100%;
  }
  /* Odstępy między blokami */
  .talo-blocks > * + * { margin-top: 1.5rem; }

  /* Nagłówki w treści blokowej */
  .talo-blocks h2 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.9rem; letter-spacing: -0.02em; line-height: 1.2; margin-top: 2.4rem; }
  .talo-blocks h3 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 1.4rem; margin-top: 1.8rem; }
  .talo-blocks h4 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 1.15rem; margin-top: 1.4rem; }
  .talo-blocks a { color: #00322b; text-decoration: underline; text-underline-offset: 3px; }
  .talo-blocks a:hover { text-decoration: none; }
  .talo-blocks ul, .talo-blocks ol { padding-left: 1.4rem; }
  .talo-blocks ul { list-style: disc; }
  .talo-blocks ol { list-style: decimal; }
  .talo-blocks li { margin-bottom: 0.5rem; }
  .talo-blocks img { border-radius: 8px; }
  .talo-blocks .wp-block-quote { border-left: 3px solid #00322b; padding-left: 1.2rem; font-style: italic; color: #3f4946; }

  /* Przyciski WP w stylu TALO */
  .talo-blocks .wp-block-button__link {
    font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700;
    border-radius: 0.5rem; padding: 0.9rem 1.75rem;
    background-color: #00322b; color: #fff;
  }
  .talo-blocks .wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent; color: #00322b; border: 2px solid #00322b;
  }
  /* Blok Okładka – pełna szerokość wewnątrz pełnego wyrównania */
  .talo-blocks .wp-block-cover { border-radius: 0; }

  /* ═══════════════════════════════════════════════════════════════
     GUTENBERG — TRYB PEŁNEJ SZEROKOŚCI (.talo-blocks-full)
     Treść zajmuje całą szerokość; własny HTML (sekcje z max-w-screen-2xl
     mx-auto) sam zarządza swoją szerokością i centrowaniem.
     ═══════════════════════════════════════════════════════════════ */
  .talo-blocks-full {
    width: 100%;
    font-family: "Manrope", sans-serif;
    color: #1c1c17;
    font-size: 1.0625rem;
    line-height: 1.75;
  }
  /* Dziedziczenie typografii nagłówków/treści, ale BEZ ograniczania szerokości */
  .talo-blocks-full h2 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
  .talo-blocks-full h3, .talo-blocks-full h4 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; }
  /* Natywne bloki Gutenberga w trybie full nadal respektują własne wyrównanie */
  .talo-blocks-full > .alignfull { width: 100%; max-width: none; }

  /* ═══════════════════════════════════════════════════════════════
     WIDŻET OPINII GOOGLE (Trustindex) — dopasowanie do marki TALO
     Trustindex renderuje własny HTML (.ti-widget). Poniżej delikatne
     nadpisania kolorów/zaokrągleń/fontów, by pasował do strony.
     ═══════════════════════════════════════════════════════════════ */
  .talo-reviews .ti-widget { font-family: "Manrope", sans-serif !important; }
  /* Karty pojedynczych opinii */
  .talo-reviews .ti-widget .ti-review-item,
  .talo-reviews .ti-widget .ti-review-box {
    border-radius: 1rem !important;
    background: #f6f3ea !important;            /* surface-low */
    border: 1px solid rgba(191,201,197,.18) !important;
    box-shadow: none !important;
  }
  /* Nazwiska / nagłówki w karcie */
  .talo-reviews .ti-widget .ti-name,
  .talo-reviews .ti-widget .ti-profile-link {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-weight: 700 !important;
    color: #1c1c17 !important;
  }
  /* Treść opinii */
  .talo-reviews .ti-widget .ti-review-content,
  .talo-reviews .ti-widget .ti-inner-text {
    color: #3f4946 !important;
    line-height: 1.7 !important;
  }
  /* Gwiazdki / akcenty na zieleń marki */
  .talo-reviews .ti-widget .ti-stars .ti-star.ti-gold { color: #00322b !important; }
  .talo-reviews .ti-widget .ti-rating-text,
  .talo-reviews .ti-widget .ti-rating-value { color: #00322b !important; font-family: "Plus Jakarta Sans", sans-serif !important; }
  /* Nagłówek/podsumowanie widżetu (logo Google + ocena) */
  .talo-reviews .ti-widget .ti-header { background: transparent !important; }
  /* Przycisk „napisz opinię” / „zobacz wszystkie” w stylu TALO */
  .talo-reviews .ti-widget .ti-write-review-btn,
  .talo-reviews .ti-widget .ti-show-more {
    background: #00322b !important;
    color: #fff !important;
    border-radius: .5rem !important;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-weight: 700 !important;
  }

/* ═══ Realizacje: sticky sub-nav ═══ */
.talo-subnav { position: sticky; top: 118px; z-index: 40; background: rgba(252,249,240,.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(28,28,23,.06); }.talo-no-scrollbar::-webkit-scrollbar { display: none; }
.talo-no-scrollbar { scrollbar-width: none; }
.cat-pill { transition: all .2s ease; border: 1px solid rgba(196,206,201,.6); color: #1c1c17; }
.cat-pill:hover { background: #f1eee5; }
.cat-pill.active { background: #00322b; color: #fff; border-color: #00322b; }

/* Offset kotwic pod nav (64) + sub-nav (~56) */
.talo-realizacje [id="kuchnie"], .talo-realizacje [id="szafy"],
.talo-realizacje [id="lazienki"], .talo-realizacje [id="w-akcji"],
.talo-realizacje [id="wideo"] { scroll-margin-top: var(--talo-scroll-offset, 190px); }
.talo-realizacje .talo-video-grid { display: grid !important; }
.talo-realizacje .talo-video-grid > * { margin-block: 0 !important; margin-top: 0 !important; }

/* ═══ Realizacje: galeria (bloki wp:gallery) ═══ */
.talo-realizacje .wp-block-gallery .wp-block-image { position: relative; overflow: hidden; border-radius: 1rem; margin: 0; }
.talo-realizacje .wp-block-gallery img { border-radius: 1rem; cursor: zoom-in; transition: transform .5s cubic-bezier(.25,.46,.45,.94), box-shadow .3s ease; }
.talo-realizacje .wp-block-gallery img:hover { transform: scale(1.02); box-shadow: 0 14px 36px rgba(0,50,43,.12); }
.talo-realizacje .talo-gal-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.1rem; color: #fff; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 600; font-size: .85rem; line-height: 1.3; background: linear-gradient(to top, rgba(0,50,43,.72), transparent); opacity: 0; transform: translateY(6px); transition: opacity .3s ease, transform .3s ease; pointer-events: none; }
.talo-realizacje .wp-block-image:hover .talo-gal-cap { opacity: 1; transform: translateY(0); }
.talo-realizacje .wp-block-video video { border-radius: 1rem; width: 100%; display: block; background: #00322b; }
.talo-realizacje h2 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.02em; line-height: 1.1; margin-bottom: .6rem; }

/* ═══ Realizacje: lightbox ═══ */
.talo-lb { position: fixed; inset: 0; z-index: 100; background: rgba(15,20,18,.94); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s ease; padding: 1.5rem; }
.talo-lb.open { opacity: 1; pointer-events: auto; }
.talo-lb-stage { max-width: min(1100px,92vw); max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: .9rem; }
.talo-lb-stage img { max-width: 100%; max-height: 80vh; border-radius: .5rem; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.talo-lb-stage video { max-width: 100%; max-height: 80vh; border-radius: .5rem; box-shadow: 0 30px 80px rgba(0,0,0,.5); background: #000; }
.talo-lb-cap { color: rgba(255,255,255,.75); font-family: "Manrope", sans-serif; font-size: .9rem; text-align: center; }
.talo-lb-btn { position: absolute; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff; width: 48px; height: 48px; border-radius: 9999px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s ease; }
.talo-lb-btn:hover { background: rgba(255,255,255,.2); }
.talo-lb-close { top: 1.25rem; right: 1.25rem; }
.talo-lb-prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.talo-lb-next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.talo-lb-count { position: absolute; top: 1.5rem; left: 1.5rem; color: rgba(255,255,255,.6); font-family: "Plus Jakarta Sans", sans-serif; font-size: .8rem; letter-spacing: .08em; }
.talo-lb-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
@media (max-width:640px) { .talo-lb-prev { left:.5rem } .talo-lb-next { right:.5rem } .talo-lb-btn { width:42px; height:42px } }
@media (prefers-reduced-motion: reduce) { .talo-lb { transition: none } .talo-realizacje .wp-block-gallery img, .talo-realizacje .talo-video-card img, .talo-realizacje .talo-play { transition: none } }

/* ═══ Realizacje: galeria wideo (karty + „Zobacz więcej filmów") ═══ */
.talo-realizacje .talo-video-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width:640px)  { .talo-realizacje .talo-video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width:1024px) { .talo-realizacje .talo-video-grid { grid-template-columns: repeat(3, 1fr); } }
.talo-realizacje .talo-video-card { position: relative; margin: 0; border-radius: 1rem; overflow: hidden; background: #00322b; cursor: pointer; aspect-ratio: 16/9; }
.talo-realizacje .talo-video-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform .6s ease, opacity .3s ease; }
.talo-realizacje .talo-video-card:hover img { transform: scale(1.04); opacity: .85; }
.talo-realizacje .talo-video-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 2rem; letter-spacing: .1em; color: rgba(255,255,255,.18); }
.talo-realizacje .talo-play-badge { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.talo-realizacje .talo-play { width: 64px; height: 64px; border-radius: 9999px; background: rgba(252,249,240,.92); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,50,43,.3); transition: transform .25s ease; }
.talo-realizacje .talo-video-card:hover .talo-play { transform: scale(1.08); }
.talo-realizacje .talo-video-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.2rem; background: linear-gradient(to top, rgba(0,50,43,.75), transparent); color: #fff; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 600; font-size: .9rem; }
.talo-realizacje .talo-video-card.is-hidden { display: none; }
.talo-realizacje .talo-video-more { text-align: center; margin-top: 2rem; }

.talo-realizacje .wp-block-post-excerpt { display: none; }
.talo-realizacje .talo-blocks-full > p.wp-block-paragraph:empty { display: none; }
.talo-realizacje .has-surface-container-low-background-color { background-color: #f6f3ea; }
/* ═══ Realizacje: HERO (tekst + zdjęcie) ═══ */
.talo-hero { background: #fcf9f0; padding: 8.5rem 1.25rem 3rem; }
@media (min-width:768px)  { .talo-hero { padding: 9.5rem 3rem 4.5rem; } }
.talo-hero-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width:1024px) { .talo-hero-inner { grid-template-columns: 1.05fr .95fr; gap: 4rem; } }
.talo-hero-eyebrow { color: rgba(0,50,43,.6); margin-bottom: 1.1rem; }
.talo-hero-title { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.05; letter-spacing: -.025em; color: #1c1c17; margin: 0 0 1.4rem; }
.talo-hero-title em { font-style: normal; font-weight: 300; color: #00322b; }
.talo-hero-lead { font-family: "Manrope", sans-serif; font-size: 1.075rem; line-height: 1.75; color: #3f4946; max-width: 48ch; margin: 0; }
.talo-hero-media { position: relative; }
.talo-hero-media img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: 1.5rem; box-shadow: 0 30px 60px -18px rgba(0,50,43,.28); display: block; }
@media (min-width:1024px) { .talo-hero-media img { aspect-ratio: auto; height: 520px; } }

/* ═══ Realizacje: CTA ═══ */
.talo-cta-section { background: #fcf9f0; padding: 4.5rem 1.25rem; }
@media (min-width:768px) { .talo-cta-section { padding: 7rem 3rem; } }
.talo-cta { max-width: 1000px; margin: 0 auto; background: #00322b; border-radius: 2rem; padding: 3.5rem 1.5rem; text-align: center; color: #fff; box-shadow: 0 40px 80px -30px rgba(0,50,43,.5); }
@media (min-width:768px) { .talo-cta { padding: 5rem 4rem; border-radius: 2.5rem; } }
.talo-cta-eyebrow { font-family: "Plus Jakarta Sans", sans-serif; font-size: .7rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #95d2c5; margin: 0 0 1rem; }
.talo-cta-title { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.12; letter-spacing: -.02em; color: #fff !important; margin: 0 0 1.1rem; }
.talo-cta-lead { font-family: "Manrope", sans-serif; font-size: 1.075rem; line-height: 1.7; color: rgba(176,239,225,.9); max-width: 36rem; margin: 0 auto 2.25rem; }
.talo-cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }
.talo-cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: 1.05rem 2.1rem; border-radius: .9rem; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: .88rem; letter-spacing: .04em; text-transform: uppercase; text-decoration: none !important; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.talo-cta-btn svg { width: 1.15em; height: 1.15em; }
.talo-cta-btn--solid { background: #fcf9f0; color: #00322b !important; }
.talo-cta-btn--solid:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.28); }
.talo-cta-btn--ghost { background: transparent; color: #fff !important; border: 1.5px solid rgba(255,255,255,.4); }
.talo-cta-btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
@media (prefers-reduced-motion: reduce) { .talo-cta-btn { transition: none; } }