:root {
    --bg: #f5faf8;
    --bg2: #edf7f3;
    --paper: #ffffff;
    --paper2: #f8fcfa;
    --emerald: #0b4f3a;
    --emerald2: #0f6b4e;
    --mint: #00c985;
    --cyan: #00a9c2;
    --purple: #7b2fbe;
    --amber: #ffb300;
    --ink: #10251f;
    --muted: #667873;
    --line: #dce9e3;
    --line2: #e9f2ee;
    --shadow: 0 25px 70px rgba(15, 56, 43, .10);
    --glow: 0 0 0 1px rgba(0, 201, 133, .16), 0 12px 35px rgba(0, 201, 133, .10);
    --radius: 24px;
    --max: 1440px;
    --header: 82px;
    --ease: 250ms cubic-bezier(.2, .8, .2, 1);

     --container: 1480px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px
}

body {
    font-family: Inter, sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 10% 5%, rgba(0, 201, 133, .08), transparent 28%), radial-gradient(circle at 90% 18%, rgba(0, 169, 194, .06), transparent 24%), linear-gradient(180deg, #f8fcfa 0%, #f0f8f4 100%);
    overflow-x: hidden;
    line-height: 1.6
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
textarea,
select {
    font: inherit
}

button {
    cursor: pointer;
    border: 0
}

 .container {
            width: min(
                calc(100% - 48px),
                var(--container)
            );
            margin-inline: auto;
        }

.section {
    padding-top: 50px;
    padding-bottom: 50px;
   
    position: relative
}

.glass {
  /*  background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(210, 229, 221, .9); */
   
}

.material-symbols-outlined {
    font-size: 22px;
    line-height: 1
}

/* HEADER */
header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
      top: 0;
            left: 0;
            width: 100%;
   /* padding: 10px 0;  */
    transition: var(--ease);
      background: #ffffff;
      box-shadow: var(--shadow); 
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px)
}

header.scrolled {
    padding: 1px 0;
    background: #ffffff;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line)
}

.nav {
   min-height: 82px;
  /*  padding: 2px 16px 2px 18px;
    border-radius: 8px; */
    justify-content: space-between;
    gap: 30px;
    display: flex;
    align-items: center;
  
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto
}
.mlogo{
    
    height: 75px;
}
.logo {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    position: relative;
    border: 1px solid rgba(0, 201, 133, .35);
    background: linear-gradient(145deg, #effff8, #e7fbf4);
    box-shadow: inset 0 0 22px rgba(0, 201, 133, .08), 0 7px 20px rgba(0, 201, 133, .08);
    overflow: hidden
}

.logo:before,
.logo:after {
    content: "";
    position: absolute;
    border: 2px solid var(--emerald);
    transform: rotate(45deg);
    width: 23px;
    height: 23px
}

.logo:after {
    width: 13px;
    height: 13px;
    border-color: var(--cyan)
}

.brand-text {
    line-height: 1.05
}

.brand-name {
    font: 700 .96rem "Space Grotesk", sans-serif;
    letter-spacing: .03em
}

.brand-sub {
    font-size: .6rem;
    color: #789089;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-top: 4px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto
}

.nav-link {
    padding: 11px 12px;
    border-radius: 12px;
    font-size: .88rem;
    font-weight: 700;
    color: #45615a;
    transition: var(--ease);
    position: relative
}

.nav-link:hover,
.nav-link.active {
    color: var(--emerald);
    background: #ebfaf4
}

.quote {
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--emerald), #146b4d);
    box-shadow: 0 12px 28px rgba(11, 79, 58, .18);
    font-weight: 800;
    transition: var(--ease)
}

.quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 34px rgba(11, 79, 58, .25)
}

.dropdown {
    position: relative
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 290px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--line);
    box-shadow: 0 25px 60px rgba(15, 56, 43, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--ease)
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    color: #48645c;
    font-size: .82rem;
    font-weight: 700
}

.dropdown-menu a:hover {
    background: #effaf6;
    color: var(--emerald)
}

.dropdown-menu small {
    display: block;
    color: #8a9a95;
    font-weight: 500;
    margin-top: 2px
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eff6f3;
    color: var(--emerald);
    border: 1px solid var(--line)
}


.container2 {
    width: min(var(--max), calc(100% - 10%));
    margin-left: auto;
    margin-right: auto
    
}

.title3 {
    font: 800 clamp(1.4rem, 2.8vw, 3rem)/1.02 "Space Grotesk", sans-serif;
    letter-spacing: -.055em;
    margin-bottom: 18px;
    
   
}



/* HERO */



    
.hero {
  
    display: grid;
    align-items: center;
    padding-top: 150px;
    overflow: hidden;

        position: relative;
      min-height: calc(100svh - var(--header));
      height: calc(100svh - var(--header));
      margin-top: var(--header);
      overflow: hidden;
     /** background: #082f24 **/
}

    
.hero22 {
  
    display: grid;
    align-items: center;
   
    overflow: hidden;

        position: relative;
      min-height: calc(100svh - var(--header));
      height: calc(100svh - var(--header));
    width: 97%;
      overflow: hidden;
     /** background: #082f24 **/
}

.hero22 h1 {
    font: 700 clamp(3.7rem, 7vw, 7.8rem)/.93 "Space Grotesk", sans-serif;
    letter-spacing: -.065em;
    margin: 25px 0 25px;
    max-width: 950px
}

    .hero-grid {
      position: absolute;
      inset: 0;
      z-index: 1;
      background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(to bottom, transparent, black 18%, black 80%, transparent);
      opacity: .22;
      pointer-events: none
    }

    .hero-slider {
      position: absolute;
      inset: 0
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transform: scale(1.04);
            transition: opacity 1.5s ease-in-out, transform 8s ease, visibility 1.5s ease-in-out
    }

    .hero-slide.active {
      opacity: 1;
      visibility: visible;
      transform: scale(1)
    }

    .hero-media,
    .hero-media img,
    .hero-media video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .hero-media:after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(3, 24, 18, .94) 0%, rgba(3, 24, 18, .74) 38%, rgba(3, 24, 18, .30) 68%, rgba(3, 24, 18, .46) 100%), linear-gradient(180deg, rgba(3, 24, 18, .1), rgba(3, 24, 18, .42))
    }

    .hero-slide:nth-child(1) .hero-media img {
      filter: saturate(.9) contrast(.8)
    }

    .hero-slide:nth-child(2) .hero-media video {
      filter: saturate(.6) contrast(.6)
    }

    .hero-slide:nth-child(3) .hero-media img {
      filter: saturate(.92)
    }

    .hero-slide:nth-child(4) .hero-media img {
      filter: saturate(.9)
    }

    .hero-slide-inner {
      position: relative;
      z-index: 3;
      height: 100%;
      display: flex;
      align-items: center 
    }

    .hero-copy {
      /* max-width: 820px; */
      color: #fff;
      padding: 40px 90px 40px 0
    }

    .hero-copy .badge {
      border-color: rgba(126, 255, 221, .28);
      background: rgba(126, 255, 221, .09);
      color: #c9fff0
    }

    .hero-copy h1 {
      font: 700 clamp(3.3rem, 6.4vw, 7.8rem)/.91 "Space Grotesk", sans-serif;
      letter-spacing: -.065em;
      margin: 22px 0 23px
    }

    .hero-copy h1 .gradient {
      color: transparent;
      background: linear-gradient(105deg, #fff, #aaffdf 55%, #77eaff);
      background-clip: text;
      -webkit-background-clip: text
    }

    .hero-copy .typing {
      display: block;
      color: #7fffe0;
      text-shadow: 0 0 22px rgba(0, 255, 170, .2)
    }

    .hero-copy p {
      max-width: 740px;
      color: #d3e6df;
      font-size: clamp(1rem, 1.35vw, 1.18rem);
      line-height: 1.8
    }

    .hero-copy .actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 28px
    }

    .hero-copy .btn.primary {
      background: linear-gradient(135deg, #00d996, #75f4d4);
      color: #082e22
    }

    .hero-copy .btn.secondary {
      border-color: rgba(255, 255, 255, .28);
      background: rgba(255, 255, 255, .08);
      color: #fff;
      backdrop-filter: blur(8px)
    }

    .hero-copy .btn.secondary:hover {
      border-color: rgba(255, 255, 255, .55);
      background: rgba(255, 255, 255, .13)
    }

    .slide-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      color: #a5ffee;
      font-size: .74rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .15em
    }

    .slide-kicker:before {
      content: "";
      width: 24px;
      height: 2px;
      background: #63eac6;
      box-shadow: 0 0 12px rgba(99, 234, 198, .6)
    }

    .hero-slide-number {
      position: absolute;
      top: 34px;
      right: 74px;
      z-index: 4;
      color: rgba(255, 255, 255, .42);
      font: 600 .78rem "Space Grotesk", sans-serif;
      letter-spacing: .16em
    }

    .hero-progress {
      position: absolute;
      left: 0;
      bottom: 0;
      height: 4px;
      width: 100%;
      z-index: 5;
      background: rgba(255, 255, 255, .12)
    }

    .hero-progress-bar {
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, #00c985, #00e5ff);
      box-shadow: 0 0 16px rgba(0, 255, 170, .45)
    }

    .hero-dots {
      position: absolute;
      z-index: 6;
      right: 32px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px
    }

    .hero-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .6);
      background: rgba(255, 255, 255, .18);
      padding: 0;
      transition: all .28s ease
    }

    .hero-dot.active {
      height: 34px;
      border-radius: 99px;
      background: #7fffe0;
      border-color: #7fffe0;
      box-shadow: 0 0 18px rgba(127, 255, 224, .38)
    }

    .hero-dot:focus-visible {
      outline: 2px solid #fff;
      outline-offset: 4px
    }

    .hero-swipe {
      position: absolute;
      right: 76px;
      bottom: 30px;
      z-index: 6;
      display: flex;
      align-items: center;
      gap: 9px;
      color: rgba(255, 255, 255, .68);
      font-size: .68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .13em
    }

    .hero-swipe .material-symbols-outlined {
      font-size: 18px
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 26px;
      max-width: 720px
    }

    .metric {
      padding: 14px 15px;
      border-radius: 14px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .13);
      backdrop-filter: blur(12px)
    }

    .metric strong {
      display: block;
      font: 700 1.25rem "Space Grotesk", sans-serif;
      color: #fff
    }

    .metric span {
      font-size: .7rem;
      color: #c2d9d2
    }

.hero-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
    gap: 48px;
    align-items: center
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border: 1px solid #ccecdf;
    border-radius: 99px;
    background: #eefaf5;
    color: #0b694b;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .72rem;
    font-weight: 800
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 14px rgba(0, 201, 133, .45)
}

.hero h1 {
    font: 700 clamp(3.7rem, 7vw, 7.8rem)/.93 "Space Grotesk", sans-serif;
    letter-spacing: -.065em;
    margin: 25px 0 25px;
    max-width: 950px
}

.gradient {
    color: transparent;
    background: linear-gradient(105deg, var(--emerald), #0d7c57 48%, var(--cyan));
    background-clip: text;
    -webkit-background-clip: text
}

.typing {
    display: block;
    color: var(--emerald)
}

.cursor {
    display: inline-block;
    width: 2px;
    height: .82em;
    background: var(--cyan);
    margin-left: 5px;
    vertical-align: -.04em;
    animation: blink 1s infinite
}

.hero p {
    max-width: 780px;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.85
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px
}

.btn {
    min-height: 54px;
    padding: 0 20px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 800;
    transition: var(--ease)
}

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--emerald), #13835c);
    box-shadow: 0 15px 35px rgba(11, 79, 58, .18)
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(11, 79, 58, .26)
}

.btn.secondary {
    border: 1px solid #c9ded5;
    background: rgba(255, 255, 255, .65);
    color: var(--emerald)
}

.btn.secondary:hover {
    transform: translateY(-3px);
    border-color: #96ceba;
    box-shadow: var(--glow)
}

.hero-card {
    padding: 28px;
    border-radius: 30px;
    position: relative;
    overflow: hidden
}

.hero-card:before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(0, 201, 133, .10);
    filter: blur(60px);
    top: 15%;
    left: 5%
}

.hero-visual {
    position: relative;
    min-height: 520px;
    border-radius: 24px;
    border: 1px solid #d8ebe3;
    background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(238, 249, 244, .85));
    overflow: hidden;
    display: grid;
    place-items: center
}

.rings {
    position: relative;
    width: 360px;
    height: 360px
}

.ring {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(11, 79, 58, .16);
    border-radius: 50%;
    animation: spin 20s linear infinite
}

.ring:nth-child(1) {
    width: 100%;
    height: 100%
}

.ring:nth-child(2) {
    width: 80%;
    height: 80%;
    border-color: rgba(0, 169, 194, .2);
    animation-duration: 15s;
    animation-direction: reverse
}

.ring:nth-child(3) {
    width: 58%;
    height: 58%;
    border-color: rgba(123, 47, 190, .16);
    animation-duration: 11s
}

.core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 115px;
    height: 115px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    border: 1px solid rgba(0, 201, 133, .4);
    background: radial-gradient(circle, #e8fff7, #cff7e9 60%, #fff 75%);
    box-shadow: 0 0 55px rgba(0, 201, 133, .18), inset 0 0 28px rgba(0, 201, 133, .12);
    animation: float 4.5s ease-in-out infinite
}

.core strong {
    font: 700 .95rem "Space Grotesk", sans-serif
}

.orbital-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 16px rgba(0, 201, 133, .55)
}

.d1 {
    top: 10%;
    left: 22%
}

.d2 {
    bottom: 16%;
    right: 15%;
    background: var(--cyan);
    box-shadow: 0 0 16px rgba(0, 169, 194, .48)
}

.d3 {
    top: 55%;
    left: 5%;
    background: var(--amber);
    box-shadow: 0 0 16px rgba(255, 179, 0, .42)
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px
}

.metric {
    padding: 15px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line)
}

.metric strong {
    display: block;
    font: 700 1.35rem "Space Grotesk", sans-serif;
    color: var(--emerald)
}

.metric span {
    font-size: .72rem;
    color: #879992
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes float {
    50% {
        transform: translate(-50%, -50%) translateY(-10px)
    }
}

@keyframes blink {

    0%,
    45% {
        opacity: 1
    }

    46%,
    100% {
        opacity: 0
    }
}

/* HEADINGS */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--emerald2);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 14px
}

.eyebrow:before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--mint);
    border-radius: 4px
}

.section-title {
    font: 500 clamp(1.7rem, 2.8vw, 3rem)/1.02 "Space Grotesk", sans-serif;
    letter-spacing: -.055em;
    text-align: center;
}

.section-copy {
    color: var(--muted);
    max-width: 740px;
    line-height: 1.82
}

.heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 52px
}

/* SERVICES DROPDOWN */
.services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px
}

.service-item {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .75);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(15, 56, 43, .05);
    transition: var(--ease)
}

.service-item:hover {
    border-color: #b9dfd0;
    box-shadow: var(--glow)
}

.service-summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    cursor: pointer
}

.service-summary::-webkit-details-marker {
    display: none
}

.service-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--emerald);
    background: #edf9f4;
    border: 1px solid #d5eee4;
    flex: 0 0 auto
}

.service-name {
    font: 700 1.1rem "Space Grotesk", sans-serif
}

.service-summary p {
    color: #7d8e88;
    font-size: .8rem;
    margin-top: 3px
}

.service-chevron {
    margin-left: auto;
    color: #6f837b;
    transition: var(--ease)
}

details[open] .service-chevron {
    transform: rotate(180deg);
    color: var(--mint)
}

.service-content {
    padding: 0 22px 21px 88px;
    color: var(--muted);
    font-size: .88rem
}

.service-tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 13px
}

.tag {
    padding: 6px 9px;
    border-radius: 99px;
    background: #f1faf6;
    border: 1px solid #d9ede5;
    color: #347160;
    font-size: .69rem;
    font-weight: 700
}

/* PAST PROJECTS */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.project {
    min-height: 410px;
    padding: 24px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 15px 45px rgba(15, 56, 43, .07);
    transition: var(--ease)
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(15, 56, 43, .12);
    border-color: #bbdfd1
}

.project-cover {
    height: 210px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #effaf5, #dcefe7)
}

.project-cover:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(11, 79, 58, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 169, 194, .06) 1px, transparent 1px);
    background-size: 28px 28px
}

.screen {
    position: absolute;
    left: 13%;
    right: 13%;
    top: 14%;
    bottom: 12%;
    border: 1px solid rgba(11, 79, 58, .16);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 35px rgba(11, 79, 58, .12);
    padding: 14px
}

.screen-top {
    display: flex;
    gap: 5px;
    margin-bottom: 12px
}

.screen-top i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cde6dc
}

.screen-lines {
    display: grid;
    gap: 8px
}

.screen-lines span {
    height: 9px;
    border-radius: 4px;
    background: linear-gradient(90deg, #bfe9da, #eef8f4)
}

.screen-lines span:nth-child(2) {
    width: 78%
}

.screen-lines span:nth-child(3) {
    width: 58%
}

.screen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 12px
}

.screen-grid div {
    height: 52px;
    border-radius: 8px;
    background: #f2fbf7;
    border: 1px solid #e1f0ea
}

.project h3 {
    font: 700 1.2rem "Space Grotesk", sans-serif;
    margin: 18px 0 7px
}

.project p {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.7
}

.project-meta {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 13px
}

.project-meta span {
    font-size: .67rem;
    font-weight: 800;
    color: #2e6f5d;
    background: #f0faf6;
    border: 1px solid #d9eee5;
    border-radius: 99px;
    padding: 6px 8px
}

/* ABOUT / VALUE */
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: stretch
}

.about-panel {
    padding: 38px;
    border-radius: var(--radius)
}

.about-panel h3 {
    margin-bottom: 18px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    letter-spacing: -.04em
}

.about-panel p {
    color: var(--muted);
    line-height: 1.8
}

.value-list {
    margin-top: 28px;
    display: grid;
    gap: 14px
}

.value-item {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .025)
}

.value-item-icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--cyan);
    border-radius: 11px;
    background: rgba(0, 229, 255, .06);
    border: 1px solid rgba(0, 229, 255, .13)
}

.value-item strong {
    display: block;
    margin-bottom: 3px;
    font-size: .93rem
}

.value-item span {
    color: #84938e;
    font-size: .78rem
}

.tech-panel {
    min-height: 100%;
    position: relative;
    padding: 28px;
    border-radius: var(--radius);
    overflow: hidden
}

.tech-panel::after {
    content: "";
    position: absolute;
    inset: 10% 15%;
    border-radius: 50%;
    filter: blur(55px);
    background: rgba(0, 255, 170, .08);
    pointer-events: none
}

.tech-head {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px
}

.tech-head span {
    color: var(--mint);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 800
}

.tech-visual {
    position: relative;
    min-height: 430px;
    border-radius: 22px;
    border: 1px solid rgba(0, 255, 170, .1);
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 255, 170, .08), transparent 35%),
        linear-gradient(rgba(0, 255, 170, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 170, .04) 1px, transparent 1px),
        rgba(255, 255, 255, .018);
    background-size: auto, 42px 42px, 42px 42px, auto;
    overflow: hidden
}

.tech-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 170, .35);
    background: radial-gradient(circle, rgba(0, 255, 170, .16), rgba(11, 79, 58, .08) 55%, transparent 75%);
    box-shadow: 0 0 60px rgba(0, 255, 170, .1), inset 0 0 30px rgba(0, 255, 170, .08);
    z-index: 2
}

.tech-core strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem
}

.tech-node {
    position: absolute;
    min-width: 110px;
    padding: 10px 12px;
    text-align: center;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, .09);
    background: rgba(0, 0, 0, .28);
    color: #c9d8d3;
    font-size: .72rem;
    font-weight: 700;
    backdrop-filter: blur(10px)
}

.tech-node::after {
    content: "";
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 255, 170, .4), transparent);
    transform-origin: left center
}

.node-1 { top: 14%; left: 11% }
.node-1::after { width: 135px; top: 100%; left: 65%; transform: rotate(24deg) }
.node-2 { top: 11%; right: 10% }
.node-2::after { width: 120px; top: 100%; right: 65%; transform: rotate(155deg) }
.node-3 { bottom: 14%; left: 8% }
.node-3::after { width: 130px; bottom: 100%; left: 65%; transform: rotate(-28deg) }
.node-4 { bottom: 12%; right: 8% }
.node-4::after { width: 130px; bottom: 100%; right: 65%; transform: rotate(205deg) }

/* FREE TEMPLATES */
.template-banner {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    align-items: center;
    padding: 30px;
    border-radius: 26px;
    background: linear-gradient(135deg, #0b4f3a, #116a4d);
    color: #fff;
    box-shadow: 0 24px 60px rgba(11, 79, 58, .18);
    position: relative;
    overflow: hidden
}

.template-banner:after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -60px;
    top: -90px;
    border-radius: 50%;
    background: rgba(0, 255, 170, .12);
    filter: blur(25px)
}

.template-banner h3 {
    font: 700 2.2rem "Space Grotesk", sans-serif;
    letter-spacing: -.04em;
    margin-bottom: 10px
}

.template-banner p {
    color: #c7e7dc;
    max-width: 720px
}

.template-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    position: relative;
    z-index: 1
}

.template-btn {
    min-height: 48px;
    padding: 0 17px;
    border-radius: 12px;
    font-weight: 800
}

.template-btn.primary {
    background: var(--mint);
    color: #083729
}

.template-btn.secondary {
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    background: rgba(255, 255, 255, .07)
}

/* STATS */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.stat {
    padding: 28px 20px;
    text-align: center;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 40px rgba(15, 56, 43, .06)
}

.stat strong {
    display: block;
    font: 700 clamp(2.2rem, 4vw, 3.6rem) "Space Grotesk", sans-serif;
    color: var(--emerald);
    line-height: 1
}

.stat span {
    color: #7b8e87;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700
}

/* CONTACT */
.contact {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    overflow: hidden;
    border-radius: 30px;
    background: #eaf7f1;
    border: 1px solid #cfe7dc
}

.contact-info {
    padding: 44px;
    border-right: 1px solid #d5e9e0
}

.contact-info h3 {
    font: 700 clamp(2rem, 4vw, 3.7rem)/1 "Space Grotesk", sans-serif;
    letter-spacing: -.05em;
    margin-bottom: 16px
}

.contact-info p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px
}

.contact-list {
    display: grid;
    gap: 12px
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #47645c;
    font-size: .87rem
}

.contact-item-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #d8eae2;
    color: var(--emerald)
}

.contact-form-wrap {
    padding: 44px;
    background: rgba(255, 255, 255, .62)
}

.form {
    display: grid;
    gap: 15px
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.field {
    display: grid;
    gap: 7px
}

.field label {
    font-size: .77rem;
    font-weight: 700;
    color: #557168
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 13px 14px;
    outline: none;
    border: 1px solid #d5e6df;
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    transition: var(--ease)
}

.field textarea {
    min-height: 145px;
    resize: vertical
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: #8fcdb8;
    box-shadow: 0 0 0 3px rgba(0, 201, 133, .08), 0 10px 25px rgba(0, 201, 133, .06)
}

.send {
    min-height: 50px;
    justify-self: start;
    padding: 0 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--emerald), #0e7b57);
    color: #fff;
    font-weight: 800
}

.form-message {
    display: none;
    padding: 11px 13px;
    border-radius: 10px;
    background: #effbf6;
    border: 1px solid #cfeee1;
    color: #247256;
    font-size: .79rem
}

.form-message.show {
    display: block
}

/* FOOTER + WHATSAPP */
footer {
    padding: 32px 0 48px;
    border-top: 1px solid var(--line)
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.copy {
    color: #7d8e88;
    font-size: .75rem
}

.socials {
    display: flex;
    gap: 8px
}

.social {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    color: #557068;
    font-size: .7rem;
    font-weight: 800
}

.social:hover {
    color: var(--emerald);
    border-color: #afdcc9
}

.whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25D366;
    color: #fff;
    box-shadow: 0 14px 35px rgba(37, 211, 102, .35), 0 0 0 7px rgba(37, 211, 102, .08);
    transition: var(--ease)
}

.whatsapp:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 42px rgba(37, 211, 102, .4), 0 0 0 9px rgba(37, 211, 102, .1)
}

.whatsapp span {
    font-size: 30px
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1)
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.stagger>* {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s, transform .65s
}

.stagger.visible>* {
    opacity: 1;
    transform: none
}

.stagger.visible>*:nth-child(1) {
    transition-delay: .06s
}

.stagger.visible>*:nth-child(2) {
    transition-delay: .12s
}

.stagger.visible>*:nth-child(3) {
    transition-delay: .18s
}

.stagger.visible>*:nth-child(4) {
    transition-delay: .24s
}

.stagger.visible>*:nth-child(5) {
    transition-delay: .30s
}

.stagger.visible>*:nth-child(6) {
    transition-delay: .36s
}

@media(max-width:1100px) {
    .hero-wrap {
        grid-template-columns: 1fr
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .hero-card {
        max-width: 760px
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact {
        grid-template-columns: 1fr
    }

    .contact-info {
        border-right: 0;
        border-bottom: 1px solid #d5e9e0
    }

    .template-banner {
        grid-template-columns: 1fr
    }

    .template-actions {
        justify-content: flex-start
    }

    .stats {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:850px) {
   /* .container {
       /* width: min(var(--max), calc(100% - 30px)) 
    }  
*/

  
    .container2 {
        margin-top: 20px;
    }

    .menu-toggle {
        display: grid;
        place-items: center
    }

    .nav-links {
        position: fixed;
        left: 15px;
        right: 15px;
        top: 92px;
        padding: 12px;
        display: grid;
        gap: 4px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        background: rgba(255, 255, 255, .97);
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: 0 25px 60px rgba(15, 56, 43, .16);
        transition: var(--ease)
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: none
    }

    .nav-link {
        padding: 13px 14px
    }

    .dropdown-menu {
        position: static;
        min-width: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        background: #f7fbf9;
        margin: 5px 0;
        padding: 7px
    }

    .dropdown.open .dropdown-menu {
        display: block
    }

    .dropdown:hover .dropdown-menu {
        display: none
    }

    .dropdown.open:hover .dropdown-menu {
        display: block
    }

    .quote {
        width: 100%;
        margin-top: 7px
    }

    .hero {
        padding-top: 125px
    }

    .hero h1 {
        font-size: clamp(3.1rem, 13vw, 6rem)
    }

    .hero-visual {
        min-height: 430px
    }

    .heading-row {
        flex-direction: column;
        align-items: flex-start
    }

    .services-list {
        grid-template-columns: 1fr
    }

    .service-content {
        padding-left: 22px
    }

    .projects-grid {
        grid-template-columns: 1fr
    }

    .about-panel {
        padding: 30px
    }
}

@media(max-width:600px) {
    .brand-sub {
        display: none
    }

    .hero-metrics,
    .row {
        grid-template-columns: 1fr
    }

    .hero-actions {
        flex-direction: column
    }

    .btn {
        width: 100%
    }

    .section {
        padding: 82px 0
    }

    .contact-info,
    .contact-form-wrap {
        padding: 28px
    }

    .template-banner {
        padding: 24px
    }

    .template-actions {
        flex-direction: column
    }

    .template-btn {
        width: 100%
    }

    .stats {
        grid-template-columns: 1fr
    }

    .footer {
        flex-direction: column;
        align-items: flex-start
    }

    .whatsapp {
        width: 56px;
        height: 56px;
        right: 16px;
        bottom: 16px
    }

    .whatsapp span {
        font-size: 27px
    }

    .rings {
        transform: scale(.84)
    }

    .about-panel {
        padding: 23px
    }

    .tech-visual {
        min-height: 360px
    }

    .tech-node {
        min-width: auto;
        max-width: 105px;
        font-size: .64rem
    }

    .node-1 { left: 5% }
    .node-2 { right: 5% }
    .node-3 { left: 5% }
    .node-4 { right: 5% }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }
}