:root {
  --hero-svg-top-opacity: 0.32;
  --hero-svg-grid-opacity: 0.33;
  --hero-svg-blue-opacity: 0.15;
  --hero-svg-silver-opacity: 0.16;
  --hero-svg-bg-color: #f3f7fa;
  --accent-main: #50af95;
  --accent-main-dark: #45a58b;
  --accent-main-light: #55bba0;
  --bg-lightest: #f3f7fa;
  --footer-bg: #0e121b;
  --footer-accent: #50af95;
  --footer-light: #7a8fa6;
  --footer-radius: 12px;
}

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/ubuntu-regular.woff2') format('woff2'),
       url('fonts/ubuntu-regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/ubuntu-medium.woff2') format('woff2'),
       url('fonts/ubuntu-medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/ubuntu-bold.woff2') format('woff2'),
       url('fonts/ubuntu-bold.ttf') format('truetype');
}

body {
  font-family: 'Ubuntu', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100%;
  font-family: 'Ubuntu', sans-serif;
}

body {
  background: var(--bg-lightest);
}

.header {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  min-height: 74px;
  border-bottom: 1.8px solid transparent;
  background: #f3f7fa;
  height: 80px;
  transition: background .22s, box-shadow .22s, height .2s, border-bottom .4s;
}

.header.scrolled {
  background: #f3f7fa;
  backdrop-filter: blur(50px);
  box-shadow: 0 6px 32px rgba(17, 180, 127, .09);
  height: 74px;
  border-bottom: .5px solid #73777a20;
}

.header-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 22px;
  box-sizing: border-box;
  background: #f3f7fa;
  border: 2px solid #ddecfa;
  border-radius: 17px;
  position: relative;
  overflow: hidden;
}

.card-pattern,
.header-pattern,
.pattern-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-logo-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .01em;
  background-color: #50af95;
  padding: 2px 8px;
  border-radius: 8px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 2px 14px rgba(80, 175, 149, 0.04);
  padding: 8.5px 10px;
  height: fit-content;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .01em;
  background-color: #ddecfa90;
}

.header-nav a {
  color: var(--accent-main-dark);
  text-decoration: none;
  margin: 0 2px;
  transition: background .14s, color .14s;
  display: flex;
  align-items: center;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  background: #e6f7f1;
  opacity: 0.8;
}

.header-nav .signup {
  margin-left: 10px;
  background: #11b47f;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(17, 180, 127, .10);
  border-radius: 9px;
  padding: 7px 24px;
  transition: background .14s, box-shadow .13s, color .13s;
}

.header-nav .signup:hover {
  background: #169e6c;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(17, 180, 127, .16);
}

@media (max-width: 1200px) {
  .header-inner {
    max-width: 100vw;
  }
}

@media (max-width: 680px) {
  .header-inner {
    padding: 0 8px;
  }
  .header-logo {
    font-size: 1.06rem;
  }
  .header-nav {
    padding: 2px 2px;
  }
  .header-nav a,
  .header-nav .signup {
    font-size: .97rem;
    padding: 6px 12px;
  }
}





.hero {
  position: relative;
  margin-top: 68px;
  width: 100vw;
    height: 70vh;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-height: 1034px) {
  .hero {
    height: 90vh
  };
}

.hero-svg-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-svg-bg-color);
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-center {
  position: relative;
  z-index: 2;
  width: 100vw;
  height: var(--hero-svg-main-height);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  border: 1px solid rgba(17, 180, 127, .15);
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 410px;
  padding: 58px 48px;
  background: #f8fafd;
  backdrop-filter: blur(8px);
  border-radius: 25px;
  box-shadow: 0 4px 28px rgba(180, 200, 230, .11);
  display: flex;
  justify-content: space-between; 
  gap: 0px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}


.hero-card.split{
  background: transparent;    
  position: relative;           
}

.hero-card.split::before,
.hero-card.split::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;                   
}
.hero-card.split::before{
  background: #f3f7fa;          
}


.hero-card.split::after{
  background: linear-gradient(130deg,
    #004d40  5%,
    #00796b 25%,
    #009688 50%,
    #4db6ac 75%,
    #b2dfdb 100%);
  clip-path: polygon(64% 0, 100% 0, 100% 100%, 52% 100%);
}


@media(max-width:680px){
  .hero-card.split::after{
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 35% 100%);
  }
}



.price-ticker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 34px;
  line-height: 34px;
  font-size: .9rem;
  font-weight: 600;
  background: rgba(17, 180, 127, .15);
  color: var(--accent-main-dark);
  border-radius: 30px 30px 0 0;
  text-align: center;
}

.card-copy {
  text-align: left;
  flex: 1;
  max-width: 540px;
}

.card-ill {
  flex: 0 0 280px;
}

.card-ill img {
  width: 100%;
  filter: drop-shadow(0 8px 32px rgba(17, 180, 127, .35));
}

.card-copy h1 {
  margin: 36px 0 35px;
  font: 700 2.9rem/1.2 'Ubuntu', sans-serif;
  position: relative;
  display: inline-block;
  color: #1a273f;
  opacity: 0.95;
  border-radius: 6px;
  z-index: 2;
}

.card-copy p {
  margin: 0;
  font: 400 1.12rem/1.5 'Ubuntu', sans-serif;
  color: #556196;
}

.card-features {
  margin: 26px 0 32px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  column-gap: 24px;
  font-size: .8rem;
  opacity: 0.75;
  font-weight: 500;
  width: fit-content;
  list-style: none;
  padding: 3px 8px;
  color: #33405b;
}

.card-features li {
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
}

.card-features i {
  color: var(--accent-main);
  margin-right: 6px;
}

.cta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (min-width: 821px) {
  .card-ill {
    flex: 0 0 160px;
  }
}

.primary {
  position: relative;
  z-index: 1;
  padding: 12px 28px;
  font: 600 1.05rem/1 'Ubuntu', sans-serif;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  background: linear-gradient(90deg, var(--accent-main) 0%, var(--accent-main-light) 100%);
  background-clip: border-box;
  color: #fff;
  box-shadow: 0 2px 12px rgba(17, 180, 127, .25);
  transition: background .18s;
  text-decoration: none;
}

.primary:hover {
  background: linear-gradient(90deg, var(--accent-main-dark) 0%, var(--accent-main) 100%);
}

.secondary {
  text-decoration: none;
  padding: 12px 20px;
  background: transparent;
  color: var(--accent-main);
  border: 2px solid var(--accent-main);
  border-radius: 9px;
  font: 600 1.05rem/1 'Ubuntu', sans-serif;
  cursor: pointer;
  transition: background .3s, color .3s;
  border-left-width: 2.5px;
}

.secondary:hover {
  opacity: 0.8;
  background: #55bba020;
}

.hero-card .card-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.card-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 28px;
  line-height: 28px;
  font-size: .85rem;
  font-weight: 600;
  text-align: center;
  color: var(--accent-main-dark);
}

.card-bar.blank {
  top: 0;
}

.card-bar.price {
  bottom: 0;
  background: #ddecfa90;
}

@media (max-width: 820px) {
  .hero-card {
    flex-direction: column;
    padding: 46px 26px;
    gap: 28px;
  }
  .card-copy {
    text-align: center;
  }
  .card-ill {
    order: -1;
    flex: 0 0 140px;
  }
  .card-copy h1 {
    margin: 38px 0 18px;
    font-size: 1.8rem;
  }
  .card-features {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 0 14px;
    height: 56px;
  }
  .header.scrolled {
    height: 46px;
  }
  .price-ticker {
    font-size: .8rem;
  }
  .hero-card {
    padding: 24px 16px;
    border-radius: 22px;
  }
  .cta-row {
    flex-direction: column;
    gap: 12px;
  }
}

.downloads-v2 {
  background: #f3f7fa;
  color: #1d2942;
  padding: 76px 0 15px;
  display: flex;
  justify-content: center;
}

.dl-wrapper {
  max-width: 1080px;
  width: 100%;
  padding: 0 24px;
  text-align: center;
}

.dl-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.dl-header h2 {
  margin: 0;
  font: 700 2.05rem/1 'Ubuntu', sans-serif;
}

.dl-note {
  margin-top: 6px;
  font: .95rem/1.4 'Ubuntu', sans-serif;
  color: #6d7e78;
}

.dl-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  border: 1.6px solid rgba(17, 180, 127, .30);
  border-radius: 26px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
  overflow: hidden;
  position: relative;
}

.dl-board::before,
.dl-board::after {
  content: '';
  position: absolute;
  background: rgba(17, 180, 127, .18);
}

.dl-board::before {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.dl-board::after {
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
}

.dl-cell {
  min-height: 135px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  transition: background .15s, transform .15s;
  position: relative;
}


.dl-cell i {
  font-size: 2.6rem;
  color: var(--accent-main-light);
}

.dl-info h3 {
  margin: 0 0 4px;
  font: 600 1rem/1 'Ubuntu', sans-serif;
  color: #1d2942;
}

.dl-meta {
  font-size: .95rem;
  color: #586b64;
  margin-left: -10px;
}

.dl-version {
  font-size: .88rem;
  color: var(--accent-main-dark);
}

.dl-btn {
  padding: 9px 18px;
  font: 600 .88rem/1 'Ubuntu', sans-serif;
  border-radius: 8px;
  background: transparent;
  border: 1.8px solid var(--accent-main);
  color: var(--accent-main);
  text-decoration: none;
  transition: background .3s, color .3s;
  position: absolute;
  right: 28px;
  bottom: 24px;
  align-self: end;
}

.dl-btn:hover {
  color: #fff;
}

.windows .dl-btn,
.macos .dl-btn,
.linux .dl-btn,
.source .dl-btn {
  border-color: var(--accent-main);
  color: var(--accent-main);
}

.windows .dl-btn:hover,
.macos .dl-btn:hover,
.linux .dl-btn:hover,
.source .dl-btn:hover {
  opacity: 0.8;
  background: #55bba020;
}

@media (max-width: 680px) {
  .dl-board {
    grid-template-columns: 1fr;
  }
  .dl-cell {
    grid-template-columns: 38px 1fr 90px;
    padding: 22px;
  }
  .dl-cell.windows,
  .dl-cell.macos,
  .dl-cell.linux,
  .dl-cell.source {
    margin: 8px 0;
  }
}

.downloads-link-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.downloads-simple-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font: 500 0.95rem/1 'Ubuntu', sans-serif;
  color: var(--accent-main-dark);
  margin-right: 10px;
  text-decoration: none;
  transition: color .16s;
}

.downloads-simple-link svg {
  margin-left: 2px;
  margin-bottom: 1px;
  transition: transform .13s;
}

.downloads-simple-link:hover {
  color: var(--accent-main);
}

.downloads-simple-link:hover svg {
  transform: translate(-1px, -2px) scale(1.08);
}

.section-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(17, 180, 127, .55) 50%, transparent 100%);
  margin: 0;
}


.feature-showcase {
  max-width: 1150px;
  margin: 35px auto 70px;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 40%);
  column-gap: 50px;
  align-items: flex-start;
}

.feature-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ui-heading {
  margin: 0 0 26px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--accent-main-dark);
}

.ui-frame {
  width: 100%;
  max-width: 580px;
  border: 2px solid rgba(17, 180, 127, .55);
  border-radius: 22px;
  margin-top: 25px;
  background: #ffffffcc;
  backdrop-filter: blur(8px);
  box-shadow: 12px 12px 14px rgba(0, 0, 0, .08);
  overflow: hidden;
}

.ui-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-title {
  margin: 0 0 42px;
  font: 700 1.9rem/1 'Ubuntu', sans-serif;
  color: #1d2942;
}

.feature-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tab {
  padding-right: 16px;
  border-right: 2.5px solid #fe0012;
}

.tab-head {
  margin: 0 0 6px;
  font: 600 1.15rem/1.3 'Ubuntu', sans-serif;
  color: #1d2942;
}

.tab-desc {
  margin: 0;
  font: .87rem/1.5 'Ubuntu', sans-serif;
  color: #47555d;
}

@media (max-width: 880px) {
  .feature-showcase {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .feature-left {
    order: 2;
  }
  .feature-right {
    order: 1;
    align-items: center;
  }
  .ui-heading {
    text-align: center;
  }
  .tab {
    border-right: 0;
    border-left: 2.5px solid #fe0012;
    padding-right: 0;
    padding-left: 16px;
  }
}

.security {
  position: relative;
  padding: 128px 0 140px;
  background: radial-gradient(circle at 50% -20%, #ffffff 0%, #e9f5f1 52%, var(--bg-lightest) 100%);
  overflow: hidden;
}

.security-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(380px, 46%) 1fr;
  column-gap: 68px;
  align-items: flex-start;
}

.security-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.security-title {
  font: 700 2.1rem/1.2 'Ubuntu', sans-serif;
  color: #1d2942;
  margin: 0 0 28px;
}

.security-title .dim {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--accent-main-dark);
  margin-bottom: 4px;
}

.security-lead {
  margin: 0 0 38px;
  font: 400 .95rem/1.55 'Ubuntu', sans-serif;
  color: #47555d;
}

.security-pillars {
  list-style: none;
  margin: 0 0 46px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.security-pillars li {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 18px;
  align-items: flex-start;
}

.security-pillars i {
  font-size: 1.6rem;
  color: var(--accent-main-light);
  filter: drop-shadow(0 2px 8px rgba(17, 180, 127, .35));
}

.security-pillars h3 {
  margin: 0 0 6px;
  font: 600 1.1rem/1.3 'Ubuntu', sans-serif;
  color: #1d2942;
}

.security-pillars p {
  margin: 0;
  font: .93rem/1.5 'Ubuntu', sans-serif;
  color: #586b64;
}

.certs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 32px;
  align-items: center;
}

.certs-row img {
  height: 35px;
  filter: grayscale(1) brightness(.06) sepia(.12) hue-rotate(-10deg) saturate(1.4);
  opacity: .35;
  transition: opacity .25s;
}

.certs-row img:hover {
  opacity: .9;
}

.security-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 44px;
  margin-top: 70px;
}

.security-anim {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 2.4px solid rgba(17, 180, 127, .22);
  backdrop-filter: blur(8px);
  background: radial-gradient(circle at 50% 120%, rgba(80, 175, 149, .14) 0%, rgba(80, 175, 149, .03) 80%, transparent 100%);
  box-shadow: 0 8px 36px rgba(0, 0, 0, .05), 0 6px 24px rgba(17, 180, 127, .06) inset;
  overflow: hidden;
  position: relative;
}

.security-anim-img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 990px) {
  .security-anim {
    width: 320px;
    height: 320px;
  }
  .security-inner {
    grid-template-columns: 1fr;
    row-gap: 60px;
  }
  .security-right {
    align-items: center;
  }
  .security-code {
    text-align: left;
  }
}

.security-code {
  max-width: 500px;
  width: fit-content;
  background: rgb(19, 37, 56);
  color: #dbeaff;
  font: 500 .77rem/1.55 'Fira Code', monospace;
  padding: 19px 24px;
  border-radius: 14px;
  border: 1.8px solid rgba(17, 180, 127, .28);
  box-shadow: 0 6px 28px rgba(0, 0, 0, .2);
  position: relative;
}

.security-code:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .015) 0%, rgba(255, 255, 255, .03) 100%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.security-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity .6s ease;
}

.faq-section {
  background: #f3f7fa;
  padding: 78px 0 85px;
  position: relative;
  overflow: visible;
}

.faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.faq-title {
  font: 700 2.05rem/1.19 'Ubuntu', sans-serif;
  color: #1d2942;
  margin-bottom: 54px;
}

.faq-title .dim {
  display: block;
  font-size: .91rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent-main-dark);
  margin-bottom: 5px;
  opacity: 0.74;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px 25px;
  grid-template-areas:
    "big1 small1"
    "big1 small2"
    "big6 small4"
    "big6 small5"
    "small7 small8"
    "wide wide";
}

.faq-card:nth-child(1) { grid-area: big1; }
.faq-card:nth-child(2) { grid-area: small1; }
.faq-card:nth-child(3) { grid-area: small2; }
.faq-card:nth-child(4) { grid-area: small4; }
.faq-card:nth-child(5) { grid-area: small5; }
.faq-card:nth-child(6) { grid-area: big6; }
.faq-card:nth-child(7) { grid-area: small7; }
.faq-card:nth-child(8) { grid-area: small8; }
.faq-card:nth-child(9) { grid-area: wide; }

.faq-card {
  background: transparent;
  border-radius: 24px;
  border: 1.5px solid rgba(17, 180, 127, .12);
  box-shadow: 0 5px 36px rgba(17, 180, 127, .07), 0 2px 8px rgba(0, 0, 0, .04);
  padding: 30px 28px 30px 28px;
  position: relative;
  min-height: 150px;
  transition: box-shadow .19s, transform .19s;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 2;
}

.faq-q {
  font: 600 1.13rem/1.36 'Ubuntu', sans-serif;
  color: #16252b;
  margin: 0 0 3px;
  letter-spacing: .02em;
}

.faq-a {
  font: 400 1.01rem/1.62 'Ubuntu', sans-serif;
  color: #536367;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.faq-a ul {
  margin: 0 0 0 19px;
  padding: 0 0 0 .2em;
  font-size: .99em;
  color: #556196;
}

.faq-a li {
  margin-bottom: 3px;
}

.faq-a a {
  color: var(--accent-main);
  text-decoration: underline;
}

.faq-a a:hover {
  opacity: 0.85;
}

.faq-icon {
  position: absolute;
  right: 22px;
  bottom: 18px;
  font-size: 2.15rem;
  color: var(--accent-main-light);
  background: #ddecfa90;
  border-radius: 14px 50% 19px 50%/50% 19px 50% 14px;
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 11px rgba(80, 175, 149, 0.13);
  z-index: 1;
  pointer-events: none;
  opacity: 0.93;
  transition: filter .17s;
}

.faq-card:hover .faq-icon {
  filter: blur(0.2px) brightness(1.14);
}

@media (max-width: 600px) {
  .faq-card {
    padding: 28px 13px 40px 14px;
  }
  .faq-icon {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    font-size: 1.45rem;
  }
}

.faq-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.31;
  transition: opacity .7s;
}

.footer {
  position: relative;
  background: var(--footer-bg);
  padding: 80px 0 40px;
  overflow: hidden;
  color: #1d2942;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('path/to/subtle-pattern.svg');
  opacity: 0.06;
  pointer-events: none;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-main-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.footer-col p,
.footer-col ul,
.footer-col form {
  font-size: .95rem;
  line-height: 1.5;
  color: #9aa7af;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #9aa7af;
  text-decoration: none;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--accent-main);
}

.subscribe-form {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.subscribe-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid rgba(17, 180, 127, .3);
  border-radius: 8px;
  font-size: .95rem;
  outline: none;
}

.subscribe-form input:focus {
  border-color: var(--accent-main);
}

.subscribe-form .primary {
  padding: 10px 20px;
  background: linear-gradient(90deg, var(--accent-main) 0%, var(--accent-main-light) 100%);
  border: none;
  border-radius: 9px;
  font: 600 .95rem/1 'Ubuntu', sans-serif;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(17, 180, 127, .25);
  transition: background .18s;
}

.subscribe-form .primary:hover {
  background: linear-gradient(90deg, var(--accent-main-dark) 0%, var(--accent-main) 100%);
}

.social-icons a {
  font-size: 1.4rem;
  margin-right: 16px;
  color: var(--accent-main);
  transition: color .2s;
}

.social-icons a:hover {
  color: var(--accent-main-dark);
}

.footer-bottom {
  max-width: 1080px;
  margin: 40px auto 0;
  padding: 20px 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: #586b64;
  border-top: 1px solid rgba(17, 180, 127, .12);
  position: relative;
  z-index: 2;
}

.footer-bottom i {
  color: #e25555;
}

@media (max-width: 680px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

.input-wrap {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

input {
  flex: 1;
  padding: 8px;
  border: 1px solid #7a7373;
  border-radius: 5px;
  background-color: #495551;
  color: #fafaf9;
  margin-top: 10px;
}

button {
  padding: 8px 16px;
  border: none;
  background: var(--accent-main);
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

button:disabled {
  opacity: 0.6;
  cursor: default;
}

.error {
  color: #c0392b;
  margin-top: 4px;
  font-size: 0.8rem;
}

.success {
  color: #27ae60;
  margin-top: 4px;
  font-size: 0.8rem;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.icon-img {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}










