/* ===========================================================
   Smart Net s.r.o. – redesign
   Paleta odvozená z loga (zelená + modrá), Manrope + Source Sans 3
   =========================================================== */

:root{
  --green: #0FAA4E;
  --green-deep: #0B7D3B;
  --green-bright: #2ECC55;
  --green-light: #E5F6EA;
  --blue: #0EA0C4;
  --blue-deep: #0B7A93;
  --blue-light: #E3F3F8;
  --navy: #0B2E33;
  --ink: #16211C;
  --gray: #56675E;
  --line: #DEE7E1;
  --bg: #F5F8F6;
  --card: #FFFFFF;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}

body{
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4{
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

a{ color: var(--green); }
a:hover, a:focus{ color: var(--green-deep); }

.container{ max-width: 1140px; }

/* ---------- Nav ---------- */

.gtco-nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(14,42,47,0.02);
  padding: 0;
}

.gtco-nav .row{ display: flex; align-items: center; min-height: 72px; }

section[id]{ scroll-margin-top: 80px; }

#logo img{ width: 140px; height: auto; display: block; }

.menu-1.main-nav{ margin-left: auto; }

.menu-1.main-nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.menu-1.main-nav ul li{ display: flex; }

.menu-1.main-nav ul li a{
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 16px;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}

.menu-1.main-nav ul li a:hover{
  color: var(--green);
  border-bottom-color: var(--green);
}

.menu-1.main-nav ul li.btn-cta a{
  height: auto;
  margin-left: 8px;
  padding: 10px 22px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  border-bottom: none;
}

.menu-1.main-nav ul li.btn-cta a:hover{
  background: var(--green-deep);
  color: #fff;
}

/* ---------- Hero ---------- */

#gtco-hero.hero{
  position: relative;
  overflow: hidden;
  background: radial-gradient(900px 500px at 85% 10%, rgba(14,160,196,0.12) 0%, rgba(14,160,196,0) 60%), linear-gradient(180deg, #FFFFFF 0%, var(--green-light) 100%);
  padding: 96px 0 88px;
}

#gtco-hero .hero-rings{
  position: absolute;
  top: 0; right: 0;
  width: 620px;
  height: 620px;
  pointer-events: none;
}

#gtco-hero .hero-rings circle{ fill: none; }

#gtco-hero .hero-inner{
  position: relative;
  z-index: 1;
  max-width: 680px;
}

#gtco-hero .eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-light);
  border: 1px solid rgba(23,138,61,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

#gtco-hero h1{
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 18px;
}

#gtco-hero .hero-sub{
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray);
  margin: 0 0 32px;
  max-width: 560px;
}

.hero-cta{ display: flex; flex-wrap: wrap; gap: 14px; }

.btn-hero{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn-hero-primary{
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(23,138,61,0.55);
}
.btn-hero-primary:hover{ background: var(--green-deep); color: #fff; transform: translateY(-1px); }

.btn-hero-ghost{
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-hero-ghost:hover{ color: var(--green-deep); border-color: var(--green); text-decoration: none; }

/* ---------- Section shell ---------- */

.gtco-section{ padding: 88px 0; }
.gtco-section.alt{ background: #fff; }

.section-head{
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head .ico{
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 22px -8px rgba(15,170,78,0.5);
}
.section-head .ico svg{ width: 26px; height: 26px; }

.section-head h1{ font-size: 32px; margin: 0 0 14px; }

.section-head .sub, .section-head .sub p{
  color: var(--gray);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.section-head .subtle-text{ display: none; }

#gtco-about, #gtco-practice-areas, #gtco-contact{ padding: 88px 0; }
#gtco-about{ background: #fff; }

.about-grid{
  display: flex;
  align-items: center;
  gap: 56px;
}
.about-copy{ flex: 1 1 420px; }
.about-copy .ico{
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 0 20px;
  box-shadow: 0 10px 22px -8px rgba(15,170,78,0.5);
}
.about-copy .ico svg{ width: 26px; height: 26px; }
.about-copy h1{ font-size: 32px; margin: 0 0 14px; }
.about-copy .sub, .about-copy .sub p{
  color: var(--gray);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}
.about-illustration{ flex: 1 1 420px; }
.about-illustration svg{ width: 100%; height: auto; display: block; }

@media (max-width: 991px){
  .about-grid{ flex-direction: column-reverse; gap: 36px; }
  .about-copy{ text-align: center; flex: none; width: 100%; }
  .about-copy .ico{ margin: 0 auto 20px; }
  .about-illustration{ flex: none; width: 100%; max-width: 360px; }
}
#gtco-practice-areas{ background: var(--bg); }
#gtco-contact{ background: #fff; }

/* ---------- Photo banner ---------- */

#gtco-photo{
  position: relative;
  height: 420px;
  overflow: hidden;
}
#gtco-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#gtco-photo::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(11,46,51,0) 0%, rgba(11,46,51,0.75) 100%);
}
.photo-caption{
  position: absolute;
  left: 0; right: 0; bottom: 28px;
  z-index: 1;
  text-align: center;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 19px;
  padding: 0 24px;
}

@media (max-width: 767px){
  #gtco-photo{ height: 240px; }
  .photo-caption{ font-size: 15px; bottom: 18px; }
}

/* ---------- DPH benefit section ---------- */

#gtco-dph{
  background: var(--navy);
  padding: 80px 0;
  color: #fff;
}

#gtco-dph .section-head h1{ color: #fff; }
#gtco-dph .section-head .sub{ color: #B9CBC5; }
#gtco-dph .section-head .ico{ background: linear-gradient(135deg, var(--green-bright) 0%, var(--blue) 100%); color: #0B2E33; box-shadow: 0 10px 24px -6px rgba(46,204,85,0.4); }

.dph-compare{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.dph-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 26px;
}

.dph-card.is-us{
  background: linear-gradient(135deg, rgba(46,204,85,0.22) 0%, rgba(14,160,196,0.18) 100%);
  border-color: rgba(46,204,85,0.55);
}

.dph-card .tag{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #B9CBC5;
  margin-bottom: 10px;
}
.dph-card.is-us .tag{ color: #7FE3A0; }

.dph-card .amount{
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 34px;
  margin: 0 0 6px;
  font-variant-numeric: tabular-nums;
}

.dph-card .note{ font-size: 14px; color: #B9CBC5; margin: 0; line-height: 1.5; }

.dph-footnote{
  text-align: center;
  color: #8FA69E;
  font-size: 13px;
  max-width: 560px;
  margin: 24px auto 0;
  line-height: 1.6;
}

/* ---------- Services ---------- */

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gtco-practice-area-item{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
  height: 100%;
}

.gtco-practice-area-item .gtco-icon{
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px -6px rgba(14,160,196,0.5);
}
.gtco-practice-area-item:nth-child(3n-1) .gtco-icon,
.gtco-practice-area-item:nth-child(6) .gtco-icon{
  background: var(--green);
  box-shadow: 0 8px 18px -6px rgba(15,170,78,0.5);
}
.gtco-practice-area-item .gtco-icon svg{ width: 24px; height: 24px; }
.gtco-practice-area-item .gtco-icon img{ display: none; }

.gtco-practice-area-item h3{
  font-size: 18px;
  margin: 0 0 10px;
}

.gtco-practice-area-item p{
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Customer portal CTA ---------- */

#gtco-portal{ background: var(--bg); padding: 0 0 88px; }

.portal-panel{
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--green-light);
  border: 1px solid rgba(23,138,61,0.18);
  border-radius: 20px;
  padding: 36px 40px;
}

.portal-ico{
  flex: 0 0 auto;
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(15,170,78,0.45);
}
.portal-ico svg{ width: 28px; height: 28px; }

.portal-copy{ flex: 1 1 auto; }
.portal-copy h2{ font-size: 22px; margin: 0 0 6px; }
.portal-copy p{ color: var(--gray); font-size: 15px; line-height: 1.6; margin: 0; }

.portal-btn{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 10px 24px -8px rgba(23,138,61,0.55);
}
.portal-btn:hover{ background: var(--green-deep); color: #fff; }

@media (max-width: 767px){
  .portal-panel{
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 28px;
  }
  .portal-btn{ width: 100%; justify-content: center; }
}

/* ---------- Contact ---------- */

#gtco-contact .row{ display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start; }
#gtco-contact .col-md-6.col-md-push-6{
  flex: 1 1 420px; left: 0 !important;
}
#gtco-contact .col-md-4.col-md-pull-6{
  flex: 1 1 300px; left: 0 !important;
}

.contact-form .form-group{ margin-bottom: 16px; }

.contact-form .form-control{
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 16px;
  font-size: 15px;
  box-shadow: none;
}
.contact-form textarea.form-control{ height: auto; padding: 14px 16px; }
.contact-form .form-control:focus{
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23,138,61,0.15);
}

.contact-form .btn-primary{
  background: var(--green);
  border: none;
  border-radius: 10px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 15px;
}
.contact-form .btn-primary:hover{ background: var(--green-deep); }

.hp-field{ position: absolute; left: -9999px; top: -9999px; }

.form-required-note{ color: var(--gray); font-size: 12.5px; margin: -6px 0 16px; }

.section-head .ico.stav-uspech{ background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%); }
.section-head .ico.stav-chyba{ background: linear-gradient(135deg, #E8A93A 0%, #D9812A 100%); box-shadow: 0 10px 22px -8px rgba(216,129,42,0.5); }

.gtco-contact-info{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 28px;
  width: 100%;
}

.gtco-contact-info ul{ list-style: none; margin: 0; padding: 0; }

.gtco-contact-info li{
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
}
.gtco-contact-info li:last-child{ border-bottom: none; }
.gtco-contact-info li strong{ display: block; }

.gtco-contact-info li.email a{ color: var(--green); font-weight: 600; }

/* ---------- Footer ---------- */

#gtco-footer{
  background: var(--navy);
  color: #B9CBC5;
  padding: 40px 0;
}

#gtco-footer .footer-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

#gtco-footer .footer-left p{ margin: 0 0 6px; }
#gtco-footer .footer-left p:last-child{ margin-bottom: 0; }

#gtco-footer .copyright p{ margin: 0; }

#gtco-footer small, #gtco-footer small p{
  color: #B9CBC5 !important;
  font-size: 14px;
  line-height: 1.7;
}
#gtco-footer small strong{ color: #fff; }
#gtco-footer small a{ color: #7FE3A0; }
.footer-legal-link{ opacity: 0.75; font-size: 12.5px; }

#gtco-footer .footer-portal-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff !important;
  background: var(--green);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(23,138,61,0.6);
}
#gtco-footer .footer-portal-link:hover{
  background: #1FA347;
  color: #fff !important;
}

@media (max-width: 767px){
  #gtco-footer .footer-row{
    flex-direction: column;
    align-items: flex-start;
  }
}

.gototop{ display: none !important; }

/* ---------- Responsive ---------- */

@media (max-width: 991px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .dph-compare{ grid-template-columns: 1fr; }
  #gtco-hero .hero-rings{ width: 420px; height: 420px; }
}

@media (max-width: 767px){
  .gtco-nav .row{ min-height: auto; padding: 12px 0; }
  .gtco-nav .col-xs-10{ width: 100%; }
  .menu-1.main-nav ul{
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 8px;
  }
  .menu-1.main-nav ul li a{ height: auto; padding: 12px 4px; justify-content: flex-start; }
  .menu-1.main-nav ul li.btn-cta a{ margin: 10px 4px 0; justify-content: center; }

  #gtco-hero.hero{ padding: 56px 0 48px; text-align: left; }
  #gtco-hero h1{ font-size: 30px; }
  #gtco-hero .hero-sub{ font-size: 16px; }
  #gtco-hero .hero-rings{ display: none; }

  .gtco-section, #gtco-about, #gtco-practice-areas, #gtco-contact, #gtco-dph{ padding: 56px 0; }

  .services-grid{ grid-template-columns: 1fr; }

  #gtco-contact .row{ flex-direction: column; gap: 28px; }
}

/* ---------- Policy / legal content page ---------- */

.policy-content{
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.policy-content h2{
  font-size: 19px;
  margin: 34px 0 10px;
}
.policy-content h2:first-child{ margin-top: 0; }
.policy-content p{
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 4px;
}
.policy-content a{ color: var(--green); font-weight: 600; }

