:root{
  --dark:#1B1B1F;
  --light:#FAF7F2;
  --yellow:#F3E063;
  --orange:#F97316;
  --blue:#2A4C9E;
  --ink:#1A1A1A;
  --muted:#6b6b6b;
  --heading:'Satoshi','Satoshi Placeholder',sans-serif;
  --body:'Figtree','Figtree Placeholder',sans-serif;
  --maxw:1240px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{
  scroll-behavior:smooth;
  background:var(--dark);          /* kolor overscrollu (nad navbarem) = nasz ciemny, nie biały */
  overscroll-behavior:none;        /* blokuje sprężynowanie/rubber-band na macOS */
}

/* płynne przejście między stronami (Chrome/Edge – reszta ignoruje) */
@view-transition{ navigation:auto; }
::view-transition-old(root){ animation:tf-fade-out .22s ease both; }
::view-transition-new(root){ animation:tf-fade-in .30s ease both; }
@keyframes tf-fade-out{ to{ opacity:0; } }
@keyframes tf-fade-in{ from{ opacity:0; transform:translateY(8px);} to{ opacity:1; transform:translateY(0);} }

/* fallback: delikatne pojawienie się strony przy wejściu */
@media (prefers-reduced-motion: no-preference){
  body{ animation:tf-page-in .35s ease both; }
}
@keyframes tf-page-in{ from{ opacity:0; } to{ opacity:1; } }
body{
  font-family:var(--body);
  color:var(--ink);
  background:var(--light);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}

.container{max-width:var(--maxw);margin:0 auto;padding:0 32px}
.container-narrow{max-width:820px}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  font-family:var(--heading);
  font-weight:700;
  border-radius:10px;
  transition:transform .15s ease,box-shadow .15s ease,filter .15s ease;
  cursor:pointer;
}
.btn-yellow{background:var(--yellow);color:var(--ink)}
.btn-yellow:hover{filter:brightness(1.05);transform:translateY(-1px)}
.header-cta{padding:15px 25px;font-size:14px}
.btn-lg{padding:20px 34px;font-size:17px}

/* ---------- Header ---------- */
.site-header{
  background:var(--dark);
  padding:22px 0 0;
  position:relative;
}
/* menu mobilne – ukryte na desktopie (pokazywane w @media 720) */
.nav-toggle{display:none}
.nav-cta-mobile{display:none}
.header-inner{
  max-width:var(--maxw);
  margin:0 auto;
  /* logo wyrównane do linii startu hero (56px), CTA do prawej krawędzi kontentu (32px) */
  padding:0 32px 0 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.logo{
  font-family:var(--heading);
  font-weight:700;
  font-size:24px;
  color:#fff;
  letter-spacing:-.01em;
}
.nav-pill{
  display:flex;
  gap:6px;
  background:rgba(255,255,255,.1);
  padding:10px 12px;
  border-radius:14px;
}
.nav-pill a{
  color:rgba(255,255,255,.7);
  font-size:16px;
  padding:8px 14px;
  border-radius:9px;
  transition:background .2s ease,color .2s ease,transform .2s ease;
}
.nav-pill a:hover{color:#fff;background:rgba(255,255,255,.08);transform:translateY(-1px)}
.nav-pill a:active{transform:translateY(0)}
.nav-pill a.active{color:#fff;background:rgba(255,255,255,.08)}

/* jasny navbar – strony prawne (regulamin / polityka), zlewa się z dokumentem */
.site-header.light{background:var(--light);border-bottom:1px solid rgba(0,0,0,.07)}
.site-header.light .logo-img{filter:brightness(0)}
.site-header.light .nav-pill{background:rgba(0,0,0,.05)}
.site-header.light .nav-pill a{color:rgba(0,0,0,.6)}
.site-header.light .nav-pill a:hover,
.site-header.light .nav-pill a.active{color:var(--ink);background:rgba(0,0,0,.07)}

/* ---------- Hero ---------- */
.hero{
  background:var(--dark);
  color:#fff;
  text-align:center;
  padding:110px 32px 90px;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.eyebrow{
  color:var(--orange);
  font-weight:600;
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hero .eyebrow{margin-bottom:26px}
.hero h1{
  font-family:var(--heading);
  font-weight:700;
  font-size:60px;
  line-height:1.05;
  letter-spacing:-.02em;
  margin-bottom:26px;
}
.hero-sub{
  color:rgba(255,255,255,.65);
  font-size:20px;
  max-width:620px;
  margin:0 auto 36px;
}
.hero-badges{
  display:flex;
  justify-content:center;
  gap:38px;
  margin-top:40px;
  color:rgba(255,255,255,.55);
  font-size:15px;
  flex-wrap:wrap;
}

/* ---------- Sections ---------- */
.section{padding:90px 0}
.section-light{background:var(--light)}
.center{text-align:center}
.section-title{
  font-family:var(--heading);
  font-weight:700;
  font-size:44px;
  line-height:1.1;
  letter-spacing:-.02em;
  text-align:center;
}
.eyebrow.center{margin-bottom:16px}
.section-sub{
  text-align:center;
  color:var(--muted);
  font-size:19px;
  max-width:720px;
  margin:16px auto 0;
}

/* ---------- Gallery ---------- */
.gallery-grid{
  margin-top:56px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:38px;
}
.gallery-card img{
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:14px;
}
.gallery-card figcaption{padding:18px 4px 0}
.gallery-card h3{
  font-family:var(--heading);
  font-weight:700;
  font-size:20px;
  margin-bottom:8px;
}
.gallery-card .loc{color:var(--muted);font-size:15px}

/* ---------- Steps ---------- */
.steps-grid{
  margin-top:56px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.step-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:34px 32px;
  box-shadow:0 12px 30px rgba(0,0,0,.04);
}
.step-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;height:44px;
  background:var(--dark);
  color:var(--orange);
  font-family:var(--heading);
  font-weight:700;
  border-radius:50%;
  font-size:16px;
  margin-bottom:22px;
}
.step-card h3{
  font-family:var(--heading);
  font-weight:700;
  font-size:22px;
  margin-bottom:14px;
  line-height:1.2;
}
.step-card p{color:var(--muted);font-size:16px}

/* ---------- Build cards ---------- */
.build-grid{
  margin-top:56px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}
.build-card img{
  width:100%;
  height:210px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:18px;
  transition:transform .2s ease;
}
.build-card:hover img{transform:scale(1.02)}
.build-card h3{
  font-family:var(--heading);
  font-weight:700;
  font-size:22px;
  margin-bottom:6px;
}
.build-card .price{color:var(--muted);font-size:16px;margin-bottom:14px}
.build-link{color:var(--orange);font-weight:600;font-size:15px}

/* ---------- Testimonials ---------- */
.testi-grid{
  margin-top:56px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.testi-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.04);
  display:flex;
  flex-direction:column;
}
.testi-photo{width:100%;height:190px;object-fit:cover}
.testi-body{padding:26px 26px 30px;display:flex;flex-direction:column;flex:1}
.stars{color:var(--orange);letter-spacing:3px;font-size:16px;margin-bottom:18px}
.quote{font-style:italic;color:#333;font-size:16.5px;line-height:1.6;margin-bottom:26px;flex:1}
.author{display:flex;align-items:center;gap:14px}
.author img{width:46px;height:46px;border-radius:50%;object-fit:cover}
.author strong{display:block;font-family:var(--heading);font-weight:700;font-size:16px}
.author span{color:var(--muted);font-size:14px}

/* ---------- FAQ ---------- */
.faq{margin-top:48px;display:flex;flex-direction:column;gap:18px}
.faq details{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  padding:0 26px;
}
.faq summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:26px 0;
  font-family:var(--heading);
  font-weight:700;
  font-size:20px;
}
.faq summary::-webkit-details-marker{display:none}
.faq-arrow{color:var(--ink);font-size:20px;transition:transform .2s ease}
.faq details[open] .faq-arrow{transform:rotate(90deg)}
.faq-content{padding:0 0 26px;color:var(--muted);font-size:16.5px;line-height:1.65}

/* ---------- Feature strip ---------- */
.strip-section{padding-top:20px;padding-bottom:60px}
.feature-strip{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:30px 24px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  box-shadow:0 12px 30px rgba(0,0,0,.04);
}
.feature{display:flex;align-items:center;gap:16px;padding:6px 30px}
.feature+.feature{border-left:1px solid rgba(0,0,0,.08)}
.feature-num{
  flex:none;
  width:34px;height:34px;
  background:var(--orange);
  color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--heading);font-weight:700;font-size:15px;
}
.feature strong{display:block;font-family:var(--heading);font-weight:700;font-size:16px;line-height:1.25;margin-bottom:4px}
.feature span{color:var(--muted);font-size:14px}

/* ---------- Press ---------- */
.press-section{padding-top:40px;padding-bottom:80px}
.press-eyebrow{color:#b7b3ac;font-weight:600;letter-spacing:.06em;margin-bottom:32px}
.press-logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:56px;
  flex-wrap:wrap;
}
.press-logos span{
  font-family:var(--heading);
  font-weight:700;
  font-size:30px;
  color:#d8d3ca;
}

/* ---------- Final CTA band ---------- */
.cta-band{
  background:var(--dark);
  color:#fff;
  padding:104px 0;
}
.cta-inner{display:flex;align-items:center;justify-content:space-between;gap:40px}
.cta-band h2{
  font-family:var(--heading);
  font-weight:700;
  font-size:40px;
  line-height:1.15;
  letter-spacing:-.02em;
  max-width:820px;
}

/* ---------- Footer ---------- */
.site-footer{background:var(--light);padding:80px 0 40px}
.footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr;
  gap:40px;
}
.logo-dark{color:var(--ink);font-size:24px}
/* logo obrazkowe – ograniczona wysokość */
.logo-img{height:48px;width:auto;display:block}
.tf-logo .logo-img{height:40px}
.logo-dark .logo-img{height:60px;filter:brightness(0);margin-bottom:4px} /* dużo większe, czarne logo na jasnej stopce */
.footer-brand p{color:var(--muted);font-size:16px;margin:18px 0 24px;max-width:460px}
.socials{display:flex;gap:20px;color:var(--ink)}
.socials a{transition:opacity .15s}
.socials a:hover{opacity:.6}
.footer-col h4{font-family:var(--heading);font-weight:700;font-size:19px;margin-bottom:22px}
.fc-email{display:block;font-size:16px;margin-bottom:4px;color:var(--ink);text-decoration:none}
.fc-email:hover{text-decoration:underline}
.fc-muted{color:var(--muted);font-size:15px;margin-bottom:18px}
.fc-link{color:var(--blue);text-decoration:underline;font-size:16px}
.footer-bottom{
  margin-top:56px;
  padding-top:26px;
  border-top:1px solid rgba(0,0,0,.1);
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--muted);
  font-size:15px;
}
.footer-nav{display:flex;gap:34px}
.footer-nav a{color:var(--ink)}
.footer-nav a:hover{color:var(--orange)}
.footer-legal{display:flex;flex-wrap:wrap;align-items:center;gap:8px 18px}
.footer-legal a{color:var(--muted)}
.footer-legal a:hover{color:var(--orange);text-decoration:underline}

/* ---------- Strony prawne (regulamin / polityka) ---------- */
.legal{background:var(--light);padding:70px 0 90px}
.legal .container{max-width:840px}
.legal h1{font-family:var(--heading);font-weight:700;font-size:40px;line-height:1.1;letter-spacing:-.02em;margin-bottom:10px}
.legal .legal-meta{color:var(--muted);font-size:15px;margin-bottom:38px}
.legal .lead{font-size:18px;color:#333;line-height:1.6;margin-bottom:26px}
.legal h2{font-family:var(--heading);font-weight:700;font-size:22px;margin:36px 0 12px}
.legal h3{font-family:var(--heading);font-weight:700;font-size:17px;margin:22px 0 8px}
.legal p,.legal li{color:#333;font-size:16px;line-height:1.7}
.legal p{margin-bottom:14px}
.legal ul,.legal ol{margin:0 0 16px 22px}
.legal li{margin-bottom:6px}
.legal a{color:var(--blue);text-decoration:underline}
@media(max-width:720px){ .legal h1{font-size:32px} .legal{padding:48px 0 64px} }

/* ---------- Responsive ---------- */
@media(max-width:1000px){
  .gallery-grid,.steps-grid,.testi-grid{grid-template-columns:repeat(2,1fr)}
  .build-grid{grid-template-columns:repeat(2,1fr)}
  .feature-strip{grid-template-columns:1fr;gap:20px}
  .feature+.feature{border-left:none;border-top:1px solid rgba(0,0,0,.08);padding-top:20px}
  .hero h1{font-size:44px}
  .section-title{font-size:34px}
  .cta-inner{flex-direction:column;text-align:center;align-items:center}
  .cta-band h2{font-size:32px}
}
@media(max-width:720px){
  /* --- hamburger + rozwijane menu --- */
  .header-cta{display:none}                 /* CTA przenosimy do menu */
  .nav-toggle{
    display:flex;flex-direction:column;justify-content:center;gap:5px;
    width:44px;height:44px;flex:none;cursor:pointer;
    background:rgba(255,255,255,.12);border:none;border-radius:11px;
  }
  .nav-toggle span{display:block;width:20px;height:2px;margin:0 auto;background:#fff;border-radius:2px;transition:transform .25s,opacity .2s}
  .site-header.nav-open .nav-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .site-header.nav-open .nav-toggle span:nth-child(2){opacity:0}
  .site-header.nav-open .nav-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .site-header.light .nav-toggle{background:rgba(0,0,0,.06)}
  .site-header.light .nav-toggle span{background:var(--ink)}
  .nav-pill{
    display:none;
    position:absolute;top:calc(100% + 4px);left:14px;right:14px;
    flex-direction:column;gap:2px;
    background:#1e1e23;padding:12px;border-radius:16px;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 24px 60px rgba(0,0,0,.5);
  }
  .site-header.nav-open .nav-pill{display:flex}
  /* solidne tło dropdownu (wyższa specyficzność niż szklisty overlay) */
  .site-header.transparent.nav-open .nav-pill{background:#1e1e23;backdrop-filter:none;-webkit-backdrop-filter:none}
  .nav-pill a{color:rgba(255,255,255,.85);font-size:17px;padding:13px 14px;border-radius:10px}
  .nav-pill a.active{background:rgba(255,255,255,.1);color:#fff}
  .nav-cta-mobile{display:block;text-align:center;margin-top:6px;padding:14px}

  .header-inner{padding:0 20px}
  .container{padding:0 20px}
  .hero{padding:50px 20px 80px}
  .hero h1{font-size:34px}
  .hero br{display:none}
  .hero-sub{font-size:17px}
  .hero-badges{gap:16px;flex-direction:column}
  .gallery-grid,.steps-grid,.testi-grid,.build-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:36px}
  .footer-bottom{flex-direction:column;gap:14px;align-items:flex-start}
  .footer-nav{display:none}                 /* nawigacja jest w menu hamburger */
  .footer-legal{gap:6px 16px}
  .section{padding:64px 0}
}

/* =====================================================================
   FOCUSED PAGE DESIGN (altany.html / pergole.html)
   ===================================================================== */
:root{--blue-btn:#6387F2}
.btn-blue{background:var(--blue-btn);color:#fff}
.btn-blue:hover{filter:brightness(1.05);transform:translateY(-1px)}

/* Transparent header overlaying the split hero */
.site-header.transparent{
  position:absolute;top:0;left:0;right:0;z-index:20;
  background:transparent;padding-top:26px;
}
/* subtle scrim so the nav stays legible over the hero image */
.site-header.transparent::before{
  content:'';position:absolute;inset:0;bottom:auto;height:150px;
  background:linear-gradient(180deg, rgba(15,15,18,.55), rgba(15,15,18,0));
  pointer-events:none;z-index:-1;
}
/* glassy nav pill – stands out over photo or dark bg */
.site-header.transparent .nav-pill{
  background:rgba(20,20,24,.35);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.14);
}
.site-header.transparent .nav-pill a{color:rgba(255,255,255,.85)}
.site-header.transparent .nav-pill a.active{background:rgba(255,255,255,.16);color:#fff}

/* ---------- Split hero ---------- */
.hero-split{
  position:relative;
  min-height:100vh;
  display:grid;
  grid-template-columns:48% 52%;
}
.hero-split-left{
  background:var(--dark);
  color:#fff;
  display:flex;
  align-items:center;
  padding:110px 56px 70px;
}
.hero-left-inner{
  width:100%;
  max-width:540px;
  margin-left:max(0px, calc((100vw - var(--maxw))/2));
  padding-right:20px;
}
.hero-split-right{
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.rating{
  display:flex;align-items:center;gap:10px;
  font-size:15px;color:rgba(255,255,255,.85);
  margin-bottom:26px;
}
.rating .rstars{color:var(--orange);letter-spacing:2px;font-size:15px}
.hero-split-left .eyebrow{margin-bottom:18px}
.hero-split-left h1{
  font-family:var(--heading);
  font-weight:700;
  font-size:52px;
  line-height:1.05;
  letter-spacing:-.02em;
  margin-bottom:22px;
}
.hero-sub-left{
  color:rgba(255,255,255,.65);
  font-size:18px;
  line-height:1.55;
  max-width:440px;
  margin-bottom:32px;
}
.hero-caption{
  color:rgba(255,255,255,.5);
  font-size:14px;
  margin-top:24px;
}

/* ---------- Realizacje cards with quote footer ---------- */
.real-grid{
  margin-top:56px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
}
.real-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.07);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(0,0,0,.04);
}
.real-card img{width:100%;height:210px;object-fit:cover}
.real-card .rc-body{padding:18px 20px 20px}
.real-card h3{font-family:var(--heading);font-weight:700;font-size:19px;margin-bottom:6px}
.real-card .loc{color:var(--muted);font-size:14.5px}
.real-card .rc-quote{
  border-top:1px solid rgba(0,0,0,.08);
  margin-top:16px;padding-top:14px;
  color:var(--muted);font-size:14.5px;font-style:italic;
}
.center-btn{display:flex;justify-content:center;margin-top:48px}
.left-btn{display:flex;justify-content:flex-start;margin-top:40px}

/* ---------- Timeline (Jak to działa) ---------- */
.timeline{position:relative;max-width:940px;margin:60px auto 0}
.timeline::before{
  content:'';position:absolute;left:50%;top:6px;bottom:6px;
  width:2px;background:var(--orange);transform:translateX(-50%);
}
.tl-item{position:relative;display:grid;grid-template-columns:1fr 1fr;margin-bottom:36px}
.tl-item:last-child{margin-bottom:0}
.tl-dot{
  position:absolute;left:50%;top:30px;width:13px;height:13px;
  border-radius:50%;background:var(--orange);transform:translateX(-50%);z-index:2;
}
.tl-card{
  background:#fff;border:1px solid rgba(0,0,0,.07);border-radius:16px;
  padding:26px 30px;box-shadow:0 10px 26px rgba(0,0,0,.04);
}
.tl-item:nth-child(odd) .tl-card{grid-column:1;margin-right:44px}
.tl-item:nth-child(even) .tl-card{grid-column:2;margin-left:44px}
.tl-num{color:var(--orange);font-family:var(--heading);font-weight:700;font-size:16px;margin-bottom:10px}
.tl-card h3{font-family:var(--heading);font-weight:700;font-size:22px;margin-bottom:12px}
.tl-card p{color:var(--muted);font-size:15.5px;line-height:1.6}

/* ---------- Why section ---------- */
.why{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center}
.why-left .eyebrow{margin-bottom:16px}
.why-left h2{
  font-family:var(--heading);font-weight:700;font-size:42px;
  line-height:1.1;letter-spacing:-.02em;margin-bottom:22px;
}
.why-left p{color:var(--muted);font-size:17px;line-height:1.6;max-width:400px}
.benefit{position:relative;padding-left:26px;margin-bottom:26px}
.benefit:last-of-type{margin-bottom:30px}
.benefit::before{
  content:'';position:absolute;left:0;top:7px;width:11px;height:11px;
  border-radius:50%;background:var(--orange);
}
.benefit strong{display:block;font-family:var(--heading);font-weight:700;font-size:18px;margin-bottom:6px}
.benefit span{color:var(--muted);font-size:15.5px;line-height:1.55}

/* ---------- Testimonials v2 (initials) ---------- */
.rating-center{
  display:flex;align-items:center;justify-content:center;gap:10px;
  margin-bottom:14px;font-size:15px;color:var(--ink);
}
.rating-center .rstars{color:var(--orange);letter-spacing:2px}
.testi2-grid{
  margin-top:56px;
  display:grid;grid-template-columns:1fr 1fr;
  gap:44px 64px;
}
.testi2 .stars{color:var(--orange);letter-spacing:2px;margin-bottom:16px}
.testi2 .quote{font-size:16.5px;line-height:1.6;color:#333;margin-bottom:22px}
.testi2 .author{display:flex;align-items:center;gap:14px}
.initials{
  width:46px;height:46px;border-radius:50%;flex:none;
  background:var(--orange);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--heading);font-weight:700;font-size:15px;
}
.testi2 .author strong{display:block;font-family:var(--heading);font-weight:700;font-size:16px}
.testi2 .author span{color:var(--muted);font-size:14px}

/* ---------- Focused pages responsive ---------- */
@media(max-width:960px){
  .hero-split{grid-template-columns:1fr;min-height:auto}
  .hero-split-left{padding:104px 28px 60px}
  .hero-left-inner{margin-left:0;max-width:600px}
  .hero-split-right{min-height:42vh}
  .real-grid{grid-template-columns:repeat(2,1fr)}
  .why{grid-template-columns:1fr;gap:36px}
  .testi2-grid{grid-template-columns:1fr;gap:36px}
  .timeline::before{left:18px}
  .tl-item{grid-template-columns:1fr}
  .tl-dot{left:18px}
  .tl-item:nth-child(odd) .tl-card,
  .tl-item:nth-child(even) .tl-card{grid-column:1;margin:0 0 0 44px}
  .hero-split-left h1{font-size:40px}
  .why-left h2{font-size:32px}
}
@media(max-width:720px){
  .real-grid{grid-template-columns:1fr}
  .hero-split-left h1{font-size:32px}
}
